@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Manrope:wght@400;500;600;700;800&display=swap');

/* =============================================
   DESIGN TOKENS — Clean & Trustworthy Palette
   ============================================= */
:root {
  --navy:        #0D2B55;
  --navy-mid:    #1A3D6B;
  --navy-light:  #234D84;
  --orange:      #E87722;
  --orange-dark: #C85F0A;
  --orange-pale: #FFF4EC;
  --sky:         #3B82F6;

  --white:       #FFFFFF;
  --off-white:   #F8FAFB;
  --border:      #E2E8F0;
  --border-mid:  #CBD5E1;

  --text-dark:   #0F172A;
  --text-mid:    #334155;
  --text-muted:  #64748B;
  --text-light:  #94A3B8;

  --font-head:   'Manrope', sans-serif;
  --font-body:   'Inter', sans-serif;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --trans:       all 0.28s var(--ease);

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.1), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 40px rgba(13,43,85,.14), 0 4px 16px rgba(13,43,85,.08);
  --shadow-xl:  0 20px 60px rgba(13,43,85,.18);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.18;
  color: var(--navy);
  letter-spacing: -0.025em;
}

a { color: var(--navy); text-decoration: none; transition: var(--trans); }
a:hover { color: var(--orange); }

img { display: block; max-width: 100%; }

ul { list-style: none; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2.5rem; }
}

/* =============================================
   BUTTONS — always visible on any background
   ============================================= */

/* PRIMARY — bold orange, works on light AND dark */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.875rem 2rem;
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: var(--trans);
  letter-spacing: 0.01em;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(232,119,34,.4);
}

/* OUTLINE — navy border, fills navy on hover, for light backgrounds */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--navy);
  padding: 0.875rem 2rem;
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: var(--trans);
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(13,43,85,.25);
}

/* WHITE — for dark/navy section backgrounds */
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,.12);
  color: var(--white);
  padding: 0.875rem 2rem;
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,.35);
  cursor: pointer;
  transition: var(--trans);
  text-decoration: none;
}
.btn-white:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.6);
  color: var(--white);
  transform: translateY(-2px);
}

/* Compact CTA in header navbar */
.btn-nav-call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.55rem 1.1rem;
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-nav-call:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
}
@media (max-width: 599px) {
  .btn-nav-call { display: none; }
  .brand-name { font-size: 1.05rem; }
}

/* =============================================
   UTILITY
   ============================================= */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  background: var(--orange-pale);
  color: var(--orange);
  border: 1px solid rgba(232,119,34,.2);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* =============================================
   HEADER — always consistent, no scroll changes
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--orange);
  flex-shrink: 0;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.brand-text { display: flex; flex-direction: column; white-space: nowrap; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.brand-sub {
  font-size: 0.7rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-top: 3px;
}

/* Desktop Nav */
.desktop-nav { display: none; }
@media (min-width: 1024px) { .desktop-nav { display: block; } }

.nav-links {
  display: flex;
  gap: 0.25rem;
}
.nav-links li a {
  display: block;
  padding: 0.5rem 0.875rem;
  color: var(--text-mid);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--r-sm);
  transition: var(--trans);
}
.nav-links li a:hover {
  color: var(--navy);
  background: var(--off-white);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
}
.header-phone i { color: var(--orange); font-size: 1.1rem; }
@media (min-width: 768px) { .header-phone { display: flex; } }

.mobile-toggle {
  background: none;
  border: none;
  color: var(--navy);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  transition: var(--trans);
}
.mobile-toggle:hover { background: var(--off-white); }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

/* =============================================
   MOBILE DRAWER
   ============================================= */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.drawer-overlay.active { opacity: 1; pointer-events: auto; }

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  height: 100vh;
  background: var(--navy);
  border-left: 1px solid rgba(255,255,255,0.1);
  z-index: 200;
  transition: right 0.32s var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-drawer.active { right: 0; }

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.drawer-header .brand-name {
  color: var(--white);
}
.close-drawer {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  transition: var(--trans);
}
.close-drawer:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.drawer-nav {
  padding: 1.5rem 1.25rem;
  flex: 1;
}
.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: var(--r-md);
  transition: var(--trans);
  margin-bottom: 0.5rem;
}
.drawer-nav a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
}
.drawer-nav a i { color: var(--orange); font-size: 1.2rem; }

.drawer-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.drawer-footer .btn-primary { width: 100%; justify-content: center; }

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(232,119,34,.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 10% 20%, rgba(59,130,246,.1) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: end;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}

.hero-content { padding-bottom: 4rem; }

@media (min-width: 1024px) {
  .hero-content { padding-bottom: 5rem; }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,119,34,.15);
  border: 1px solid rgba(232,119,34,.3);
  color: #FFAD5A;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero-content h1 span {
  color: var(--orange);
  position: relative;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,.6);
  font-size: 0.85rem;
  font-weight: 500;
}
.hero-trust-item i { color: var(--orange); font-size: 1rem; }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .hero-visual {
    display: none;
  }
}
.hero-img-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  width: 100%;
  max-width: 540px;
  box-shadow: var(--shadow-xl);
  margin-bottom: 2rem;
}
.hero-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-badge-wrap {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-stat {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  box-shadow: var(--shadow-lg);
  min-width: 170px;
}
.hero-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  flex-shrink: 0;
}
.hero-stat-text strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1;
}
.hero-stat-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .trust-strip-grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: var(--trans);
}
.trust-item:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
}
.trust-item-icon {
  width: 46px;
  height: 46px;
  background: var(--orange-pale);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  flex-shrink: 0;
}
.trust-item-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.trust-item-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =============================================
   ABOUT SECTION (homepage)
   ============================================= */
.about-section {
  padding: 6rem 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: var(--r-lg);
  width: 100%;
  object-fit: cover;
  height: 460px;
  box-shadow: var(--shadow-lg);
}
.about-experience-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 130px;
}
.about-experience-badge .num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.about-experience-badge .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  margin-top: 0.25rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-content {}
.about-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  margin-bottom: 1.25rem;
}
.about-content p {
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  font-size: 1.025rem;
  line-height: 1.8;
}
.about-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
  margin: 2rem 0;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
}
.check-item i { color: var(--orange); font-size: 1rem; flex-shrink: 0; }

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
  padding: 6rem 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.sc-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--orange);
  margin-bottom: 1.5rem;
  transition: var(--trans);
}
.service-card:hover .sc-icon {
  background: var(--orange);
  color: var(--white);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.75rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-head);
  transition: var(--trans);
}
.service-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.service-link i { transition: transform 0.25s ease; }
.service-card:hover .service-link { color: var(--orange); }
.service-card:hover .service-link i { transform: translateX(4px); }

/* =============================================
   WHY CHOOSE US (numbered steps)
   ============================================= */
.why-section {
  padding: 6rem 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .why-grid { grid-template-columns: 5fr 6fr; }
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.why-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-item-body h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.why-item-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.why-cta-box {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(232,119,34,.2) 0%, transparent 60%);
}
.why-cta-box h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
  position: relative;
}
.why-cta-box p {
  color: rgba(255,255,255,.65);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  position: relative;
}
.why-cta-box .phone-big {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 1.5rem;
  display: block;
  position: relative;
}
.why-cta-box .phone-big:hover { color: #FFAD5A; }

/* =============================================
   REVIEWS
   ============================================= */
.reviews-section {
  padding: 6rem 0;
  background: var(--off-white);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--trans);
}
.review-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.stars { color: #F59E0B; font-size: 1rem; letter-spacing: 1px; }
.google-badge {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.google-badge i { color: #4285F4; font-size: 1rem; }
.review-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer-info strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
}
.reviewer-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =============================================
   FAQ
   ============================================= */
.faq-section { padding: 6rem 0; }
.faq-wrap { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 0.75rem;
  background: var(--white);
  overflow: hidden;
  transition: var(--trans);
}
.faq-item.open {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,119,34,.08);
}
.faq-btn {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}
.faq-btn i {
  color: var(--orange);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-btn i { transform: rotate(180deg); }
.faq-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-content p {
  color: var(--text-mid);
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.75;
}
.faq-item.open .faq-content { max-height: 500px; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 4rem 0 6rem;
  background: transparent;
  position: relative;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 5rem 2rem;
  box-shadow: 0 25px 50px rgba(13,43,85, 0.25);
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 90% 50%, rgba(232,119,34,.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.25rem;
}
.cta-inner p {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  max-width: 600px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* =============================================
   PAGE HEADER (inner pages)
   ============================================= */
.page-header {
  background: var(--navy);
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 100% 50%, rgba(232,119,34,.12) 0%, transparent 60%),
    radial-gradient(circle at 10% -20%, rgba(255,255,255,0.06) 0%, transparent 70%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.page-header-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto;
}

.page-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.page-hero-actions a {
  width: 100%;
  justify-content: center;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}
.page-hero-actions .btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  border-radius: var(--r-md);
  font-weight: 600;
}
@media (min-width: 768px) {
  .page-hero-actions {
    flex-direction: row;
    align-items: center;
  }
  .page-hero-actions a {
    width: auto;
  }
}

/* Page Header with Hero Image */
.page-header.has-hero-image {
  text-align: left;
  padding: 6rem 0 5.5rem;
}
.page-header.has-hero-image .page-header-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.page-header.has-hero-image .page-header-desc {
  margin: 0;
  max-width: 600px;
}
@media (min-width: 992px) {
  .page-header.has-hero-image .page-header-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.hero-image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border: 4px solid rgba(255,255,255,0.1);
  transform: rotate(2deg);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hero-image-box:hover {
  transform: rotate(0deg) scale(1.02);
  border-color: var(--orange);
}
.hero-image-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}
@media (max-width: 767px) {
  .page-header {
    padding: 3.5rem 0 3rem;
  }
  .page-header.has-hero-image {
    padding: 3.5rem 0 3rem;
    text-align: center;
  }
  .page-header.has-hero-image .page-header-desc {
    margin: 0 auto;
  }
  .hero-image-box {
    transform: rotate(0deg);
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,.55);
}
.breadcrumb a { color: var(--orange); }
.breadcrumb a:hover { color: #FFAD5A; }
.breadcrumb i { font-size: 0.7rem; }

/* =============================================
   CONTENT LAYOUT (inner pages)
   ============================================= */
.content-section { padding: 5rem 0; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .content-grid { grid-template-columns: 2fr 1fr; gap: 4rem; }
}

.rich-text h2 {
  font-size: 1.65rem;
  margin: 2.5rem 0 1rem;
  color: var(--navy);
}
.rich-text h2:first-child { margin-top: 0; }
.rich-text h3 {
  font-size: 1.2rem;
  margin: 2rem 0 0.75rem;
  color: var(--navy);
}
.rich-text p {
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
}
.rich-text ul {
  margin-bottom: 1.5rem;
  padding-left: 0;
  list-style: none;
}
.rich-text ul li {
  padding: 0.35rem 0 0.35rem 1.75rem;
  position: relative;
  color: var(--text-mid);
  font-size: 1rem;
}
.rich-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.rich-text strong { color: var(--navy); font-weight: 700; }

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.sidebar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.875rem;
  border-bottom: 2px solid var(--border);
}
.sidebar-card ul { list-style: none; }
.sidebar-card ul li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-mid);
  font-size: 0.92rem;
}
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card ul li i { color: var(--orange); font-size: 1.1rem; margin-top: 1px; flex-shrink: 0; }

.emergency-card {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.emergency-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,119,34,.2) 0%, transparent 65%);
}
.emergency-card > * { position: relative; }
.emergency-card h3 { color: var(--white); margin-bottom: 0.5rem; }
.emergency-card p { color: rgba(255,255,255,.6); font-size: 0.85rem; margin-bottom: 1.25rem; }
.emergency-card .phone-link {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.emergency-card .phone-link:hover { color: #FFAD5A; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--navy);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 2rem;
}

.footer-col .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.footer-logo .logo-icon {
  color: var(--orange);
}
.footer-logo .brand-name { color: var(--white); }
.footer-logo .brand-sub { color: rgba(255,255,255,.45); }

.footer-col p {
  color: rgba(255,255,255,.5);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--trans);
}
.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.footer-links li { margin-bottom: 0.625rem; }
.footer-links a {
  color: rgba(255,255,255,.5);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--trans);
}
.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}
.footer-links a i { font-size: 0.7rem; }

.footer-contact-list { list-style: none; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,.5);
  font-size: 0.88rem;
  line-height: 1.5;
}
.footer-contact-list i {
  color: var(--orange);
  font-size: 1.1rem;
  margin-top: 1px;
  flex-shrink: 0;
}
.footer-contact-list a { color: rgba(255,255,255,.6); }
.footer-contact-list a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,.35);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,.35); }
.footer-legal a:hover { color: var(--orange); }

/* =============================================
   FLOATING CTA
   ============================================= */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--orange);
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(232,119,34,.5);
  z-index: 99;
  transition: var(--trans);
}
.floating-cta:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(232,119,34,.6);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.6s var(--ease) both;
}

/* =============================================
   RESPONSIVE HELPERS
   ============================================= */
@media (max-width: 767px) {
  .top-bar-left { display: none; }
  .hero-badge-wrap { display: none; }
  .about-experience-badge { 
    position: absolute; 
    bottom: -1rem; 
    left: 1rem; 
    right: auto; 
    margin-top: 0; 
  }
}
}

/* =============================================
   FORM STYLES
   ============================================= */
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-dark);
  outline: none;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
