:root {
  --navy: #1B2A4A; --navy-dark: #131f38; --navy-mid: #243B5E;
  --orange: #F47920; --orange-dark: #d96a10;
  --white: #FFFFFF; --grey-bg: #F5F6FA;
  --text: #2D3748; --text-light: #64748B; --border: #E2E8F0;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

/* Navigation */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy); padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; height: 70px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-logo { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; color: var(--white); text-decoration: none; white-space: nowrap; }
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-links a { color: #C0D0E0; text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: 0.3px; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links .current-menu-item a, .nav-links .current_page_item a { color: var(--white); }
.nav-cta { background: var(--orange); color: var(--white) !important; padding: 10px 22px; border-radius: 4px; font-weight: 700 !important; font-size: 14px !important; display: inline-block; }
.nav-cta:hover { background: var(--orange-dark) !important; }
.nav-cta-item { list-style: none; }
.mobile-toggle { display: none; background: none; border: none; color: var(--white); font-size: 28px; cursor: pointer; padding: 4px; }

/* Page Hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 90px 40px 80px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--orange), #FFB07A, var(--orange));
}
.page-hero-inner { max-width: 800px; margin: 0 auto; }
.hero-eyebrow { display: inline-block; color: #FFB07A; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.page-hero h1 { font-family: 'Syne', sans-serif; font-size: 50px; font-weight: 800; color: var(--white); margin-bottom: 16px; line-height: 1.1; }
.page-hero h1 span, .hero-title span { color: var(--orange); }
.page-hero p { font-size: 18px; color: #B0C4DE; line-height: 1.7; max-width: 600px; margin: 0 auto; }

/* Homepage Hero */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 100px 40px 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(244,121,32,0.15); border: 1px solid rgba(244,121,32,0.3); color: #FFB07A; padding: 6px 14px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.hero-badge::before { content: '⚡'; }
.hero-title { font-family: 'Syne', sans-serif; font-size: 54px; font-weight: 800; color: var(--white); line-height: 1.08; margin-bottom: 22px; }
.hero-sub { font-size: 17px; color: #B0C4DE; line-height: 1.7; margin-bottom: 36px; }
.hero-sub strong { color: var(--white); }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-trust span { font-size: 13px; color: #7A9CC4; font-weight: 500; display: flex; align-items: center; gap: 6px; }
.hero-trust span::before { content: '✓'; color: var(--orange); font-weight: 700; }
.hero-img-wrap { position: relative; }
.hero-img-wrap img { width: 100%; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,0.4); display: block; }
.hero-img-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--orange); color: var(--white);
  padding: 16px 22px; border-radius: 8px;
  box-shadow: 0 10px 30px rgba(244,121,32,0.4);
}
.hero-img-badge .big { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; display: block; }
.hero-img-badge .small { font-size: 12px; font-weight: 500; opacity: 0.9; }

/* Trust Bar (homepage) */
.trust-bar { background: var(--orange); padding: 16px 40px; }
.trust-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 12px; }
.trust-item { color: var(--white); font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 8px; }

/* Promise Bar (contact page) */
.promise-bar { background: var(--orange); padding: 16px 40px; }
.promise-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.promise-pill { color: var(--white); font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.promise-pill::before { content: '✓'; background: rgba(255,255,255,0.2); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; }

/* Section base */
section { padding: 90px 40px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag { display: inline-block; color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.section-sub { font-size: 17px; color: var(--text-light); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* Services Grid (homepage) */
.services-section { background: var(--grey-bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: 10px; padding: 36px 28px; text-align: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05); border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s; cursor: default;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(27,42,74,0.12); }
.service-icon { width: 64px; height: 64px; background: rgba(244,121,32,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 20px; }
.service-card h3 { font-family: 'Syne', sans-serif; font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }
.services-cta { text-align: center; margin-top: 48px; }

/* How It Works */
.hiw-section { background: var(--white); }
.hiw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.hiw-grid::before {
  content: '';
  position: absolute; top: 35px; left: 18%; width: 64%; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--navy)); z-index: 0;
}
.hiw-step { text-align: center; position: relative; z-index: 1; }
.hiw-num {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 8px 25px rgba(244,121,32,0.35);
}
.hiw-step h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.hiw-step p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* Why Choose Us */
.why-section { background: var(--navy); }
.section-tag.light { color: #FFB07A; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.why-card { text-align: center; }
.why-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.why-card h3 { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: #7A9CC4; line-height: 1.7; }

/* Areas */
.areas-section { background: var(--grey-bg); }
.areas-grid { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 40px; align-items: start; }
.areas-col h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--orange); }
.areas-list { list-style: none; }
.areas-list li { padding: 8px 0; font-size: 14px; color: var(--text-light); border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.areas-list li::before { content: '↗'; color: var(--orange); font-weight: 700; font-size: 13px; }
.areas-map { border-radius: 10px; overflow: hidden; box-shadow: 0 5px 25px rgba(0,0,0,0.1); }
.areas-map iframe { width: 100%; height: 340px; border: 0; display: block; }

/* Testimonials */
.testimonials-section { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--grey-bg); border-radius: 10px; padding: 32px 28px;
  border: 1px solid var(--border); position: relative;
}
.testimonial-card::before { content: '"'; font-family: 'Syne', sans-serif; font-size: 80px; color: rgba(244,121,32,0.12); position: absolute; top: 10px; left: 20px; line-height: 1; }
.stars { color: #FFB800; font-size: 16px; margin-bottom: 12px; }
.testimonial-card p { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--white); font-family: 'Syne', sans-serif; font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.author-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.author-area { font-size: 12px; color: var(--text-light); }

/* FAQ */
.faq-section { background: var(--grey-bg); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: 8px; margin-bottom: 12px; border: 1px solid var(--border); overflow: hidden; }
.faq-q { padding: 20px 24px; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 15px; user-select: none; }
.faq-q::after { content: '+'; font-size: 22px; color: var(--orange); transition: transform 0.3s; line-height: 1; }
.faq-q.open::after { transform: rotate(45deg); }
.faq-a { padding: 0 24px 20px; font-size: 14px; color: var(--text-light); line-height: 1.8; display: none; }
.faq-a.open { display: block; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #E06A15 100%);
  padding: 80px 40px; text-align: center;
}
.cta-banner h2 { font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800; color: var(--white); margin-bottom: 14px; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 36px; }
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn-primary { display: inline-block; background: var(--orange); color: var(--white); padding: 16px 36px; font-size: 16px; font-weight: 700; border-radius: 4px; text-decoration: none; text-transform: uppercase; letter-spacing: 0.5px; transition: background 0.2s, transform 0.2s; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-outline { display: inline-block; background: transparent; color: var(--white); padding: 16px 36px; font-size: 16px; font-weight: 700; border-radius: 4px; text-decoration: none; border: 2px solid rgba(255,255,255,0.3); transition: border-color 0.2s, background 0.2s; }
.btn-outline:hover { border-color: var(--orange); background: rgba(244,121,32,0.1); }
.btn-white { display: inline-block; background: var(--white); color: var(--orange); padding: 16px 36px; font-size: 16px; font-weight: 700; border-radius: 4px; text-decoration: none; }
.btn-dark { display: inline-block; background: rgba(0,0,0,0.2); color: var(--white); padding: 16px 36px; font-size: 16px; font-weight: 700; border-radius: 4px; text-decoration: none; border: 2px solid rgba(255,255,255,0.4); }
.btn-orange { display: inline-block; background: var(--orange); color: var(--white); padding: 16px 36px; font-size: 16px; font-weight: 700; border-radius: 4px; text-decoration: none; transition: background 0.2s; }
.btn-orange:hover { background: var(--orange-dark); }
.btn-outline-w { display: inline-block; background: transparent; color: var(--white); padding: 16px 36px; font-size: 16px; font-weight: 700; border-radius: 4px; text-decoration: none; border: 2px solid rgba(255,255,255,0.3); transition: border-color 0.2s; }
.btn-outline-w:hover { border-color: var(--orange); }
.btn-svc { display: inline-block; background: var(--orange); color: var(--white); padding: 14px 32px; font-size: 14px; font-weight: 700; border-radius: 4px; text-decoration: none; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 8px; transition: background 0.2s, transform 0.2s; }
.btn-svc:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-load { display: inline-block; background: var(--white); color: var(--navy); padding: 14px 36px; font-size: 15px; font-weight: 700; border-radius: 4px; text-decoration: none; border: 2px solid var(--border); transition: all 0.2s; }
.btn-load:hover { border-color: var(--orange); color: var(--orange); }

/* Contact Section (homepage) */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.contact-grid h2 { font-family: 'Syne', sans-serif; font-size: 30px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.contact-grid > div > p { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
input, select, textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text);
  background: var(--white); outline: none; appearance: none; transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(244,121,32,0.1); }
textarea { resize: vertical; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748B' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
.checkbox-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.checkbox-row input { width: auto; }
.submit-btn { width: 100%; background: var(--orange); color: var(--white); padding: 16px; font-size: 16px; font-weight: 700; border: none; border-radius: 8px; cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px; font-family: 'DM Sans', sans-serif; transition: background 0.2s, transform 0.2s; }
.submit-btn:hover { background: var(--orange-dark); transform: translateY(-1px); }
.contact-info-block { margin-bottom: 28px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.contact-icon { width: 48px; height: 48px; min-width: 48px; background: rgba(244,121,32,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.contact-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 2px; }
.contact-value { font-size: 16px; font-weight: 700; color: var(--navy); text-decoration: none; }
.contact-note { font-size: 12px; color: var(--text-light); margin-top: 2px; }
.map-embed { border-radius: 10px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }

/* Services Page */
.svc-section { padding: 90px 40px; }
.svc-section-grey { background: var(--grey-bg); }
.svc-section-white { background: var(--white); }
.svc-inner { max-width: 1200px; margin: 0 auto; }
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.svc-img-placeholder { width: 100%; aspect-ratio: 4/3; border-radius: 12px; background: linear-gradient(135deg, #e8edf5, #d0daea); display: flex; align-items: center; justify-content: center; font-size: 60px; box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.svc-content-tag { display: inline-block; color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.svc-content h2 { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; color: var(--navy); margin-bottom: 18px; line-height: 1.15; }
.svc-content p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 14px; }
.svc-bullets { list-style: none; padding: 0; margin: 20px 0; }
.svc-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); padding: 8px 0; border-bottom: 1px solid var(--border); }
.svc-bullets li:last-child { border-bottom: none; }
.bullet-check { width: 20px; height: 20px; min-width: 20px; background: rgba(244,121,32,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 11px; font-weight: 700; margin-top: 1px; }
.price-pill { display: inline-block; background: rgba(27,42,74,0.07); color: var(--navy); font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 100px; margin-left: 10px; vertical-align: middle; }
.hero-tags { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.hero-tag { background: rgba(255,255,255,0.08); color: #C0D4E8; font-size: 13px; font-weight: 500; padding: 7px 16px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.1); }

/* Anchor Bar */
.anchors-bar { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.08); padding: 0 40px; position: sticky; top: 70px; z-index: 999; }
.anchors-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 0; overflow-x: auto; }
.anchor-link { color: #7A9CC4; text-decoration: none; font-size: 13px; font-weight: 600; padding: 16px 18px; white-space: nowrap; border-bottom: 2px solid transparent; transition: all 0.2s; }
.anchor-link:hover { color: var(--white); border-bottom-color: var(--orange); }

/* Bottom CTA (services page) */
.bottom-cta { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%); padding: 90px 40px; text-align: center; }
.bottom-cta-inner { max-width: 700px; margin: 0 auto; }
.bottom-cta h2 { font-family: 'Syne', sans-serif; font-size: 42px; font-weight: 800; color: var(--white); margin-bottom: 14px; }
.bottom-cta p { font-size: 17px; color: #B0C4DE; margin-bottom: 36px; line-height: 1.7; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* About Page */
.story-section { padding: 90px 40px; background: var(--white); }
.story-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.story-tag { display: inline-block; color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.story-section h2 { font-family: 'Syne', sans-serif; font-size: 38px; font-weight: 800; color: var(--navy); margin-bottom: 22px; line-height: 1.15; }
.story-section p { font-size: 15px; color: var(--text-light); line-height: 1.85; margin-bottom: 18px; }
.story-img-placeholder { width: 100%; aspect-ratio: 4/3; border-radius: 12px; background: linear-gradient(135deg, #e8edf5, #d0daea); display: flex; align-items: center; justify-content: center; font-size: 70px; box-shadow: 0 25px 70px rgba(0,0,0,0.1); }
.story-img-wrap { position: relative; }
.story-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy); color: var(--white);
  padding: 18px 22px; border-radius: 10px; text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.story-badge .big { font-family: 'Syne', sans-serif; font-size: 30px; font-weight: 800; color: var(--orange); display: block; }
.story-badge .small { font-size: 12px; color: #7A9CC4; }

/* Stats sections (shared) */
.stats-section { background: var(--orange); padding: 60px 40px; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-item { text-align: center; position: relative; }
.stat-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,0.25); }
.stat-num { font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800; color: var(--white); display: block; line-height: 1; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.8); margin-top: 8px; font-weight: 500; }

/* Values Section */
.values-section { padding: 90px 40px; background: var(--grey-bg); }
.values-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.section-tag-sm { display: inline-block; color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.values-section h2 { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; color: var(--navy); margin-bottom: 36px; }
.value-item { display: flex; gap: 18px; margin-bottom: 30px; }
.value-icon { width: 48px; height: 48px; min-width: 48px; background: rgba(244,121,32,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.value-item h3 { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.value-item p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* Licensing Card */
.licensing-card { background: var(--white); border-radius: 12px; padding: 40px; box-shadow: 0 5px 30px rgba(0,0,0,0.07); border: 1px solid var(--border); }
.licensing-card h3 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.licensing-card > p { font-size: 13px; color: var(--text-light); margin-bottom: 24px; }
.license-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.license-item:last-child { border-bottom: none; }
.license-tick { width: 26px; height: 26px; min-width: 26px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 12px; font-weight: 800; margin-top: 1px; }
.license-item strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); }
.license-item span { font-size: 12px; color: var(--text-light); }

/* Team / Promises */
.team-section { padding: 90px 40px; background: var(--white); }
.team-inner { max-width: 1200px; margin: 0 auto; }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.promise-card { background: var(--grey-bg); border-radius: 10px; padding: 30px 24px; border-left: 4px solid var(--orange); transition: transform 0.2s; }
.promise-card:hover { transform: translateY(-3px); }
.promise-num { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; color: rgba(244,121,32,0.2); line-height: 1; margin-bottom: 8px; }
.promise-card h3 { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.promise-card p { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* About CTA */
.about-cta { background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid)); padding: 80px 40px; text-align: center; }
.about-cta h2 { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.about-cta p { font-size: 16px; color: #B0C4DE; margin-bottom: 32px; }

/* Gallery Page */
.filter-bar { background: var(--white); padding: 0 40px; border-bottom: 1px solid var(--border); }
.filter-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 4px; overflow-x: auto; padding: 10px 0; }
.filter-btn { background: transparent; border: 1px solid var(--border); color: var(--text-light); padding: 8px 18px; border-radius: 100px; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { background: var(--orange); border-color: var(--orange); color: var(--white); }
.gallery-section { padding: 60px 40px; }
.gallery-inner { max-width: 1200px; margin: 0 auto; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.gallery-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.07); border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s; }
.gallery-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.ba-container { position: relative; overflow: hidden; aspect-ratio: 4/3; background: #e8edf5; }
.ba-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.ba-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-label { position: absolute; top: 10px; left: 10px; padding: 5px 12px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.ba-label-before { background: rgba(27,42,74,0.9); color: var(--white); }
.ba-label-after { background: var(--orange); color: var(--white); }
.ba-divider { display: flex; align-items: center; gap: 0; background: var(--navy); }
.ba-divider-before { flex: 1; padding: 8px 14px; text-align: center; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.ba-divider-arrow { font-size: 16px; color: var(--orange); padding: 0 4px; }
.ba-divider-after { flex: 1; padding: 8px 14px; text-align: center; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); }
.card-meta { padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; }
.card-caption { font-size: 13px; font-weight: 600; color: var(--navy); }
.card-area { font-size: 12px; color: var(--text-light); margin-top: 2px; }
.card-badge { background: rgba(244,121,32,0.08); color: var(--orange); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; white-space: nowrap; }
.load-more-wrap { text-align: center; margin-top: 48px; }
.gallery-stats { background: var(--navy); padding: 40px; }
.gallery-stats-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.gs-item { text-align: center; color: var(--white); }
.gs-num { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; color: var(--orange); display: block; }
.gs-label { font-size: 13px; color: #7A9CC4; }
.gallery-cta { background: linear-gradient(135deg, var(--orange) 0%, #E06A15 100%); padding: 80px 40px; text-align: center; }
.gallery-cta h2 { font-family: 'Syne', sans-serif; font-size: 38px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.gallery-cta p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 32px; }

/* Contact Page */
.contact-block { padding: 60px 40px 80px; }
.contact-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: start; }
.form-card { background: var(--white); border-radius: 14px; padding: 44px; box-shadow: 0 5px 30px rgba(0,0,0,0.07); border: 1px solid var(--border); }
.form-tag { display: inline-block; color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.form-card h2 { font-family: 'Syne', sans-serif; font-size: 30px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.form-card > p { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }
.form-label { display: block; font-size: 12px; font-weight: 700; color: var(--navy); letter-spacing: 0.5px; margin-bottom: 6px; text-transform: uppercase; }
.privacy-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; font-size: 13px; color: var(--text-light); }
.privacy-row input { width: 16px; min-width: 16px; margin-top: 2px; }
.privacy-row a { color: var(--orange); }
.form-note { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 12px; color: var(--text-light); }
.form-note::before { content: '🔒'; font-size: 14px; }
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.call-card { background: var(--navy); border-radius: 14px; padding: 32px; text-align: center; box-shadow: 0 5px 30px rgba(27,42,74,0.2); }
.call-card p { font-size: 13px; color: #7A9CC4; margin-bottom: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.call-number { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800; color: var(--white); text-decoration: none; display: block; margin-bottom: 6px; transition: color 0.2s; }
.call-number:hover { color: var(--orange); }
.call-note { font-size: 13px; color: #7A9CC4; }
.call-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 18px 0; }
.whatsapp-btn { display: block; background: #25D366; color: var(--white); padding: 12px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 14px; }
.info-card { background: var(--white); border-radius: 14px; padding: 32px; box-shadow: 0 5px 30px rgba(0,0,0,0.06); border: 1px solid var(--border); }
.info-card h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 22px; }
.info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.info-item:last-child { margin-bottom: 0; }
.info-icon { width: 42px; height: 42px; min-width: 42px; background: rgba(244,121,32,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.info-label { font-size: 10px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.info-value { font-size: 15px; font-weight: 600; color: var(--navy); }
.info-value a { color: var(--orange); text-decoration: none; }
.info-value a:hover { text-decoration: underline; }
.info-note { font-size: 12px; color: var(--text-light); }
.hours-card { background: var(--white); border-radius: 14px; padding: 28px; box-shadow: 0 5px 30px rgba(0,0,0,0.06); border: 1px solid var(--border); }
.hours-card h3 { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text-light); font-weight: 500; }
.hours-row .time { font-weight: 600; color: var(--navy); }
.map-card { background: var(--white); border-radius: 14px; overflow: hidden; box-shadow: 0 5px 30px rgba(0,0,0,0.06); border: 1px solid var(--border); }
.map-card iframe { width: 100%; height: 240px; border: 0; display: block; }
.map-caption { padding: 14px 18px; font-size: 13px; color: var(--text-light); display: flex; align-items: center; gap: 6px; }

/* Trust Row (contact page) */
.trust-row { background: var(--white); padding: 40px; border-top: 1px solid var(--border); }
.trust-row-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-tile { text-align: center; padding: 20px; }
.trust-icon { font-size: 28px; display: block; margin-bottom: 10px; }
.trust-tile h4 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.trust-tile p { font-size: 12px; color: var(--text-light); line-height: 1.5; }

/* Footer */
footer { background: var(--navy-dark); padding: 60px 40px 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand-logo, .footer-brand .footer-brand-logo { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; color: var(--white); }
.footer-brand-logo span, .footer-brand .footer-brand-logo span { color: var(--orange); }
.footer-brand p, footer p.footer-desc { font-size: 13px; color: #7A9CC4; line-height: 1.7; margin: 12px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.07); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 13px; font-weight: 700; text-decoration: none; transition: background 0.2s; }
.social-btn:hover { background: var(--orange); }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 18px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #7A9CC4; text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-areas li { color: #7A9CC4; font-size: 13px; margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 0; text-align: center; font-size: 12px; color: #4A6080; }

/* Footer variants */
footer .footer-brand-logo { margin-bottom: 12px; }
.footer-col .footer-desc { font-size: 13px; color: #7A9CC4; line-height: 1.7; margin: 12px 0 20px; }

/* Responsive */
@media (max-width: 1024px) {
  .services-grid, .why-grid, .promise-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.mobile-open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy); padding: 20px; gap: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
  .hero { padding: 60px 20px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-title { font-size: 36px; }
  .hero-img-badge { bottom: 10px; left: 10px; }
  .page-hero { padding: 60px 20px; }
  .page-hero h1 { font-size: 32px; }
  .page-hero p { font-size: 15px; }
  section { padding: 60px 20px; }
  .section-title { font-size: 30px; }
  h2.section-title { font-size: 30px; }
  .services-grid, .hiw-grid, .why-grid, .areas-grid, .testimonials-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .hiw-grid::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar { padding: 14px 20px; }
  .trust-row-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:not(:last-child)::after { display: none; }
  .svc-section { padding: 60px 20px; }
  .svc-grid { grid-template-columns: 1fr; gap: 36px; }
  .svc-grid .reverse-img { order: -1; }
  .story-inner, .values-inner { grid-template-columns: 1fr; }
  .story-badge { right: 10px; bottom: 10px; }
  .promise-grid { grid-template-columns: 1fr; }
  .gallery-section { padding: 40px 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .filter-bar { padding: 0 20px; }
  .contact-block { padding: 40px 20px 60px; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
  .promise-bar { padding: 14px 20px; }
  .anchors-bar { padding: 0 20px; }
  .values-section, .story-section, .team-section { padding: 60px 20px; }
  footer { padding: 40px 20px 0; }
  .footer-grid { gap: 30px; }
  .btn-primary, .btn-outline, .btn-white, .btn-dark, .btn-orange, .btn-outline-w { padding: 14px 28px; font-size: 14px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .page-hero h1 { font-size: 26px; }
  .section-title { font-size: 24px; }
  .services-grid, .why-grid, .promise-grid { grid-template-columns: 1fr; }
  .trust-row-inner, .stats-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
