/* ============================================
   OMEGA CONSTRUCTION — MAIN STYLESHEET
   ============================================ */

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

/* === CSS VARIABLES === */
:root {
  --primary:        #1a3a5c;
  --primary-light:  #2a5298;
  --primary-dark:   #0f2340;
  --accent:         #f07c1e;
  --accent-dark:    #d4660c;
  --accent-light:   #fff0e0;
  --dark:           #0d1b2a;
  --text:           #1a202c;
  --text-mid:       #4a5568;
  --text-light:     #718096;
  --bg:             #f7f9fc;
  --white:          #ffffff;
  --border:         #e2e8f0;
  --shadow-sm:      0 1px 3px rgba(0,0,0,.10);
  --shadow-md:      0 4px 12px rgba(0,0,0,.12);
  --shadow-lg:      0 8px 30px rgba(0,0,0,.16);
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-w: 1280px;
  --hh: 72px;
  --ease: all .25s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); line-height: 1.6; background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* === LAYOUT === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* === TYPOGRAPHY === */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2rem,5vw,3.25rem); }
h2 { font-size: clamp(1.75rem,3vw,2.5rem); }
h3 { font-size: clamp(1.2rem,2vw,1.5rem); }
h4 { font-size: 1.125rem; }
p  { color: var(--text-mid); }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r-sm);
  font-family: var(--font-head); font-weight: 600; font-size: .9375rem;
  transition: var(--ease); white-space: nowrap; cursor: pointer; border: 2px solid transparent;
}
.btn-primary  { background: var(--primary); color: #fff; }
.btn-primary:hover  { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-accent   { background: var(--accent); color: #fff; }
.btn-accent:hover   { background: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline  { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover  { background: #fff; color: var(--primary); }
.btn-outline-dark { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-dark:hover { background: var(--primary); color: #fff; }
.btn-lg { padding: 16px 34px; font-size: 1.0625rem; }

/* === SECTION COMPONENTS === */
.section-label {
  display: inline-block; background: var(--accent-light); color: var(--accent-dark);
  font-family: var(--font-head); font-weight: 700; font-size: .75rem;
  letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px;
  border-radius: 100px; margin-bottom: 12px;
}
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .section-sub { margin: 0 auto; max-width: 600px; font-size: 1.0625rem; }

/* ============================================================
   TOP BANNER
   ============================================================ */
.top-banner {
  background: var(--primary-dark); color: #fff;
  text-align: center; padding: 9px 24px;
  font-size: .875rem; font-family: var(--font-head); font-weight: 500;
}
.top-banner-inner { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.top-banner .tag { background: var(--accent); color: #fff; padding: 3px 10px; border-radius: 4px; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.top-banner a { color: var(--accent); font-weight: 700; text-decoration: underline; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--primary); box-shadow: 0 2px 12px rgba(0,0,0,.25); }
.header-inner { display: flex; align-items: center; height: var(--hh); gap: 24px; }

/* Logo */
.logo { flex-shrink: 0; display: flex; align-items: center; gap: 11px; }
.logo-icon {
  width: 42px; height: 42px; background: var(--accent); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem;
}
.logo-text { color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; line-height: 1.1; letter-spacing: -.3px; }
.logo-text span { display: block; font-size: .6rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 3px; }

/* Main nav */
.main-nav { flex: 1; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  color: rgba(255,255,255,.87); font-family: var(--font-head); font-weight: 600; font-size: .875rem;
  padding: 10px 13px; border-radius: var(--r-sm); display: flex; align-items: center; gap: 5px; transition: var(--ease);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a { background: rgba(255,255,255,.1); color: #fff; }
.main-nav .chevron { font-size: .6rem; transition: transform .2s; }
.main-nav > ul > li:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; background: #fff;
  border-radius: var(--r-md); box-shadow: var(--shadow-lg); min-width: 240px;
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s; z-index: 200;
}
.main-nav > ul > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px;
  border-radius: var(--r-sm); color: var(--text); font-size: .9rem; font-weight: 500; transition: var(--ease);
}
.dropdown li a:hover { background: var(--bg); color: var(--primary); }
.dd-icon {
  width: 32px; height: 32px; background: var(--bg); border-radius: 7px;
  display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: .875rem; flex-shrink: 0;
}

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; margin-left: auto; }
.phone-link { color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .9375rem; display: flex; align-items: center; gap: 7px; opacity: .9; transition: opacity .2s; }
.phone-link:hover { opacity: 1; }
.phone-link i { color: var(--accent); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--ease); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu { display: none; background: var(--primary-dark); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 13px 24px; color: rgba(255,255,255,.88); font-family: var(--font-head); font-weight: 600; font-size: .9375rem; border-bottom: 1px solid rgba(255,255,255,.06); transition: background .2s; }
.mobile-menu a:hover { background: rgba(255,255,255,.05); color: #fff; }
.mobile-sub-trigger { display: flex; justify-content: space-between; align-items: center; padding: 13px 24px; color: rgba(255,255,255,.88); font-family: var(--font-head); font-weight: 600; font-size: .9375rem; border-bottom: 1px solid rgba(255,255,255,.06); cursor: pointer; }
.mobile-sub-trigger i { font-size: .7rem; transition: transform .2s; }
.mobile-sub-trigger.open i { transform: rotate(180deg); }
.mobile-sub { display: none; background: rgba(0,0,0,.2); }
.mobile-sub.open { display: block; }
.mobile-sub a { padding-left: 40px; font-size: .875rem !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(155deg, #0d1b2a 0%, #1a3a5c 55%, #1f4e7a 100%);
  position: relative; overflow: hidden; padding: 88px 0 76px; color: #fff;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,.018) 60px, rgba(255,255,255,.018) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,.018) 60px, rgba(255,255,255,.018) 61px);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; right: -80px; top: -80px; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(240,124,30,.13) 0%, transparent 70%); pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(240,124,30,.18); border: 1px solid rgba(240,124,30,.4);
  color: #ffa55e; padding: 6px 14px; border-radius: 100px;
  font-size: .8125rem; font-weight: 600; font-family: var(--font-head); letter-spacing: .05em; margin-bottom: 20px;
}
.hero h1 { color: #fff; font-size: clamp(2.25rem,4.5vw,3.4rem); font-weight: 900; line-height: 1.1; margin-bottom: 18px; }
.hero h1 .hl { color: var(--accent); }
.hero-desc { color: rgba(255,255,255,.72); font-size: 1.1rem; margin-bottom: 34px; max-width: 500px; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.stat-item { border-left: 3px solid var(--accent); padding-left: 14px; }
.stat-num { font-family: var(--font-head); font-size: 1.875rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-lbl { font-size: .8rem; color: rgba(255,255,255,.58); margin-top: 4px; }

/* Hero visual card */
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,.07); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.13); border-radius: var(--r-lg); padding: 28px; color: #fff;
}
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-badge {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px; padding: 8px 12px; font-size: .8rem; font-weight: 600;
  font-family: var(--font-head); display: flex; align-items: center; gap: 7px;
}
.hero-badge i { color: var(--accent); }
.hero-card h3 { color: #fff; font-size: 1.125rem; margin-bottom: 8px; }
.hero-card p  { color: rgba(255,255,255,.62); font-size: .9375rem; }
.hero-float {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--accent); color: #fff; border-radius: 12px;
  padding: 14px 18px; box-shadow: var(--shadow-lg); text-align: center; min-width: 110px;
}
.hero-float .big   { font-family: var(--font-head); font-size: 1.75rem; font-weight: 800; line-height: 1; }
.hero-float .small { font-size: .72rem; opacity: .88; margin-top: 4px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { background: var(--dark); padding: 18px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .9375rem; }
.trust-item i { color: var(--accent); font-size: 1.2rem; }

/* ============================================================
   SERVICES ACCORDION
   ============================================================ */
.services-section { padding: 80px 0; background: var(--bg); }
.accordion-wrap { display: flex; flex-direction: column; gap: 8px; max-width: 900px; margin: 0 auto; }
.acc-item {
  background: #fff; border-radius: var(--r-md); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow .2s;
}
.acc-item:hover { box-shadow: var(--shadow-md); }
.acc-item.open { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(26,58,92,.12), var(--shadow-md); }
.acc-header { display: flex; align-items: center; gap: 16px; padding: 20px 26px; cursor: pointer; transition: background .2s; user-select: none; }
.acc-header:hover { background: var(--bg); }
.acc-icon {
  width: 46px; height: 46px; background: var(--accent-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: var(--accent);
  font-size: 1.2rem; flex-shrink: 0; transition: var(--ease);
}
.acc-item.open .acc-icon { background: var(--accent); color: #fff; }
.acc-title-wrap { flex: 1; }
.acc-title { font-family: var(--font-head); font-weight: 700; font-size: 1.0625rem; color: var(--text); }
.acc-meta  { font-size: .8rem; color: var(--text-light); margin-top: 3px; }
.acc-chevron { color: var(--text-light); font-size: .875rem; transition: transform .3s; }
.acc-item.open .acc-chevron { transform: rotate(180deg); color: var(--primary); }
.acc-body { display: none; padding: 0 26px 22px; border-top: 1px solid var(--border); }
.acc-item.open .acc-body { display: block; }
.acc-services { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 18px; }
.svc-mini {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 14px 16px; transition: var(--ease);
}
.svc-mini:hover { border-color: var(--accent); background: var(--accent-light); transform: translateY(-2px); }
.svc-mini h4 { font-size: .9375rem; margin-bottom: 4px; }
.svc-mini .price { color: var(--accent-dark); font-size: .8125rem; font-weight: 700; font-family: var(--font-head); }
.svc-mini .dur   { color: var(--text-light); font-size: .75rem; margin-top: 2px; }
.acc-cta { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }

/* ============================================================
   PROGRAM SECTION
   ============================================================ */
.program-section { padding: 80px 0; background: #fff; }
.program-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--r-lg); padding: 52px 56px; color: #fff;
  display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: center;
  position: relative; overflow: hidden;
}
.program-card::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; background: rgba(255,255,255,.05); border-radius: 50%;
}
.program-card::after {
  content: ''; position: absolute; bottom: -60px; right: 240px;
  width: 200px; height: 200px; background: rgba(255,255,255,.04); border-radius: 50%;
}
.prog-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(240,124,30,.25); border: 1px solid rgba(240,124,30,.4);
  color: #ffa55e; padding: 5px 14px; border-radius: 100px;
  font-size: .72rem; font-weight: 700; font-family: var(--font-head);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px;
}
.program-card h2   { color: #fff; font-size: 1.875rem; margin-bottom: 14px; }
.program-card p    { color: rgba(255,255,255,.72); font-size: 1.0625rem; line-height: 1.7; margin-bottom: 24px; }
.prog-features     { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.prog-feature      { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.9); font-size: .9375rem; }
.prog-feature i    { color: var(--accent); flex-shrink: 0; }
.prog-pricing {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-md); padding: 28px 24px; text-align: center; position: relative; z-index: 1;
}
.prog-pricing .from  { font-size: .8125rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.prog-pricing .price { font-family: var(--font-head); font-size: 2.75rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px; }
.prog-pricing .per   { color: rgba(255,255,255,.55); font-size: .875rem; margin-bottom: 22px; }
.prog-pricing .btn   { width: 100%; justify-content: center; margin-bottom: 10px; }
.prog-pricing .note  { font-size: .78rem; color: rgba(255,255,255,.4); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { padding: 80px 0; background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; margin-top: 48px; }
.why-card {
  background: #fff; border-radius: var(--r-md); padding: 34px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  display: flex; gap: 20px; transition: var(--ease);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-icon {
  width: 54px; height: 54px; background: var(--accent-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; color: var(--accent);
  font-size: 1.4rem; flex-shrink: 0;
}
.why-content h3 { font-size: 1.2rem; margin-bottom: 10px; }
.why-content p  { font-size: .9375rem; line-height: 1.65; margin-bottom: 14px; }
.learn-more {
  color: var(--primary); font-weight: 600; font-size: .9375rem;
  display: inline-flex; align-items: center; gap: 6px; transition: gap .2s, color .2s;
}
.learn-more:hover { gap: 10px; color: var(--accent); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 80px 0; background: #fff; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 46px; }
.testi-card {
  background: var(--bg); border-radius: var(--r-md); padding: 30px;
  border: 1px solid var(--border); position: relative;
}
.testi-card::before {
  content: '\201C'; position: absolute; top: 14px; right: 22px;
  font-size: 5rem; font-family: Georgia,serif; color: var(--accent); opacity: .18; line-height: 1;
}
.stars { color: #f59e0b; font-size: .875rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: .9375rem; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 14px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--primary);
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1.0625rem; flex-shrink: 0;
}
.author-name { font-weight: 700; font-family: var(--font-head); font-size: .9375rem; color: var(--text); }
.author-platform { font-size: .8rem; color: var(--text-light); margin-top: 2px; display: flex; align-items: center; gap: 4px; }
.reviews-summary { display: flex; gap: 24px; justify-content: center; margin-top: 38px; flex-wrap: wrap; }
.review-platform {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-md); padding: 16px 22px;
}
.review-platform .p-name   { font-weight: 700; font-family: var(--font-head); font-size: 1rem; }
.review-platform .p-rating { color: #f59e0b; font-weight: 800; font-size: 1.25rem; font-family: var(--font-head); }
.review-platform .p-count  { font-size: .8rem; color: var(--text-light); }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-section { padding: 72px 0; background: var(--bg); }
.areas-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 38px; }
.area-link {
  display: flex; align-items: center; gap: 10px; padding: 14px 16px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-sm);
  font-weight: 600; font-size: .9375rem; transition: var(--ease); color: var(--text);
}
.area-link:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.area-link i { color: var(--accent); font-size: .875rem; flex-shrink: 0; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  padding: 72px 0; background: var(--primary); text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px; background: radial-gradient(circle, rgba(240,124,30,.16) 0%, transparent 70%);
}
.cta-band h2 { color: #fff; margin-bottom: 14px; position: relative; }
.cta-band p  { color: rgba(255,255,255,.68); font-size: 1.1rem; margin-bottom: 32px; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark); color: #fff; }
.footer-top { padding: 60px 0 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; }
.footer-brand .logo-text { display: block; font-size: 1.3rem; margin-bottom: 14px; }
.footer-tagline { color: rgba(255,255,255,.5); font-size: .9375rem; line-height: 1.65; margin-bottom: 22px; }
.f-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 11px; color: rgba(255,255,255,.65); font-size: .9375rem; }
.f-contact-item i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.social-row { display: flex; gap: 9px; margin-top: 22px; }
.soc-link {
  width: 38px; height: 38px; background: rgba(255,255,255,.08); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-size: .9375rem; transition: var(--ease);
}
.soc-link:hover { background: var(--accent); color: #fff; }
.footer-col-title { font-family: var(--font-head); font-weight: 700; font-size: .8125rem; color: #fff; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.5); font-size: .9375rem; transition: color .2s; display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '›'; color: var(--accent); }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-copy  { color: rgba(255,255,255,.35); font-size: .8125rem; }
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.35); font-size: .8125rem; transition: color .2s; }
.footer-legal a:hover { color: #fff; }
.license-bar { border-top: 1px solid rgba(255,255,255,.06); padding: 14px 0; display: flex; gap: 28px; flex-wrap: wrap; }
.lic { font-size: .73rem; color: rgba(255,255,255,.28); display: flex; align-items: center; gap: 5px; }
.lic strong { color: rgba(255,255,255,.48); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(155deg, #0d1b2a 0%, #1a3a5c 100%);
  padding: 56px 0; color: #fff; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 40%;
  background: linear-gradient(90deg, transparent, rgba(240,124,30,.07)); pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 7px; margin-bottom: 14px; font-size: .875rem; }
.breadcrumb a { color: rgba(255,255,255,.55); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: rgba(255,255,255,.28); }
.breadcrumb .cur { color: var(--accent); font-weight: 600; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,.68); font-size: 1.0625rem; max-width: 600px; }
.page-hero-actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }

/* ============================================================
   SERVICE PAGE CONTENT
   ============================================================ */
.svc-page { padding: 76px 0; }
.svc-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 60px; }
.svc-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--ease);
}
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--primary); }
.svc-card-head { background: var(--primary); padding: 22px; color: #fff; }
.svc-card-head i { font-size: 1.875rem; opacity: .88; margin-bottom: 8px; }
.svc-card-head h3 { color: #fff; font-size: 1.0625rem; }
.svc-card-body { padding: 22px; }
.svc-items { display: flex; flex-direction: column; gap: 12px; }
.svc-item { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.svc-item:last-child { border-bottom: none; padding-bottom: 0; }
.svc-item-info h4 { font-size: .9375rem; margin-bottom: 3px; }
.svc-item-info .sub { font-size: .8rem; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
.svc-item-price { text-align: right; flex-shrink: 0; }
.svc-item-price .price { font-family: var(--font-head); font-weight: 700; color: var(--primary); font-size: .9375rem; white-space: nowrap; }
.svc-item-price .from  { font-size: .72rem; color: var(--text-light); display: block; }
.svc-card-foot { padding: 0 22px 22px; }

/* Process section */
.process-section { padding: 72px 0; background: var(--bg); }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 44px; }
.process-step { text-align: center; padding: 28px 16px; background: #fff; border-radius: var(--r-md); border: 1px solid var(--border); position: relative; }
.step-num { width: 48px; height: 48px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.125rem; margin: 0 auto 14px; }
.process-step h4 { margin-bottom: 8px; }
.process-step p  { font-size: .875rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-content { padding: 76px 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 76px; }
.story-grid.rev { direction: rtl; }
.story-grid.rev > * { direction: ltr; }
.story-vis {
  border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex; align-items: center; justify-content: center; position: relative; flex-direction: column; color: rgba(255,255,255,.35);
}
.story-vis i { font-size: 4.5rem; }
.story-vis-stat {
  position: absolute; bottom: 18px; left: 18px;
  background: var(--accent); color: #fff; border-radius: 10px; padding: 12px 18px; box-shadow: var(--shadow-md);
}
.story-vis-stat .big   { font-size: 1.875rem; font-weight: 800; font-family: var(--font-head); line-height: 1; }
.story-vis-stat .small { font-size: .72rem; opacity: .88; margin-top: 3px; }
.story-text h2 { margin-bottom: 18px; }
.story-text p  { font-size: 1.0625rem; line-height: 1.78; margin-bottom: 16px; }

.milestones { padding: 60px 0; background: var(--bg); }
.milestones-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 38px; }
.milestone-card { text-align: center; padding: 30px 18px; background: #fff; border-radius: var(--r-md); border: 1px solid var(--border); }
.milestone-num  { font-family: var(--font-head); font-size: 2.375rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.milestone-lbl  { font-weight: 700; font-size: .9375rem; font-family: var(--font-head); margin-bottom: 6px; }
.milestone-desc { font-size: .8375rem; color: var(--text-light); }

.team-section { padding: 72px 0; background: #fff; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 38px; }
.team-card { background: #fff; border-radius: var(--r-md); border: 1px solid var(--border); box-shadow: var(--shadow-sm); overflow: hidden; transition: var(--ease); }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-photo { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); height: 190px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.3); }
.team-photo i { font-size: 3rem; }
.team-info { padding: 20px 22px; }
.team-info h3 { font-size: 1.0625rem; margin-bottom: 3px; }
.team-info .role { color: var(--accent-dark); font-weight: 600; font-size: .8375rem; font-family: var(--font-head); margin-bottom: 10px; }
.team-info p { font-size: .875rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 76px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; }
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { margin-bottom: 28px; font-size: 1.0625rem; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 22px; }
.cd-icon { width: 46px; height: 46px; background: var(--accent-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 1.0625rem; flex-shrink: 0; }
.cd-label { font-weight: 700; font-family: var(--font-head); font-size: .8125rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 3px; }
.cd-value { font-size: 1.0625rem; font-weight: 500; color: var(--text); }
.contact-form-wrap { background: #fff; border-radius: var(--r-lg); padding: 38px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.contact-form-wrap h3 { margin-bottom: 22px; font-size: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: .875rem; color: var(--text); margin-bottom: 6px; font-family: var(--font-head); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 15px; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-size: .9375rem; color: var(--text); background: var(--bg); transition: border-color .2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(26,58,92,.1); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-submit .btn { width: 100%; justify-content: center; font-size: .9375rem; }
.form-success { display: none; background: #f0fdf4; border: 1px solid #86efac; border-radius: var(--r-sm); padding: 14px 16px; margin-top: 14px; color: #166534; font-weight: 600; align-items: center; gap: 9px; font-size: .9375rem; }
.emergency-note { background: #fff7ed; border: 1px solid #fed7aa; border-radius: var(--r-sm); padding: 14px 16px; margin-top: 24px; color: #92400e; font-size: .9rem; display: flex; align-items: flex-start; gap: 10px; }
.emergency-note i { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.anim { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.anim.visible { opacity: 1; transform: translateY(0); }
.anim.d1 { transition-delay: .1s; }
.anim.d2 { transition-delay: .2s; }
.anim.d3 { transition-delay: .3s; }
.anim.d4 { transition-delay: .4s; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .program-card { grid-template-columns: 1fr; padding: 40px 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .svc-cards-grid { grid-template-columns: 1fr 1fr; }
  .milestones-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 56px 0; }
  .hero-stats { gap: 22px; }
  .acc-services { grid-template-columns: 1fr 1fr !important; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2,1fr); }
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .story-grid.rev { direction: ltr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  :root { --hh: 64px; }
  .hero-actions, .cta-actions, .page-hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { align-items: center; }
  .acc-services { grid-template-columns: 1fr !important; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .milestones-grid { grid-template-columns: 1fr 1fr; }
  .svc-cards-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .reviews-summary { flex-direction: column; align-items: center; }
  .trust-inner { gap: 20px; }
}
