/* ════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: #1e293b; background: #fff; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ════════════════════════════════════════
   VARIABLES
════════════════════════════════════════ */
:root {
  --blue:       #2774AE;
  --blue-dark:  #2774AE;
  --orange:     #FF9C00;
  --navy:       #0d1b2a;
  --grey-light: #f7f8fa;
  --grey-mid:   #e3e3e3;
  --text:       #1e293b;
  --muted:      #64748b;
  --white:      #ffffff;
  --radius:     8px;
  --shadow:     0 2px 12px rgba(0,0,0,.07);
  --shadow-h:   0 6px 28px rgba(0,0,0,.12);
}

/* ════════════════════════════════════════
   UTILITIES
════════════════════════════════════════ */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label  { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; display: block; }
.section-title  { font-size: clamp(26px, 4vw, 42px); font-weight: 800; line-height: 1.15; color: var(--navy); margin-bottom: 18px; }
.section-body   { font-size: 15px; color: var(--muted); line-height: 1.75; }
.center         { text-align: center; }
.center-col     { max-width: 640px; margin-left: auto; margin-right: auto; }

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn             { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all .2s; border: none; font-family: inherit; }
.btn-primary     { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(39,116,174,.35); }
.btn-ghost       { background: transparent; color: var(--navy); border: 2px solid var(--grey-mid); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-white       { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.btn-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-white-solid { background: #fff; color: var(--blue); }
.btn-white-solid:hover { background: var(--grey-light); transform: translateY(-1px); }

/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-mid);
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon { width: 36px; height: 36px; background: var(--blue); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-logo-name { font-size: 14px; font-weight: 800; color: var(--navy); line-height: 1.1; }
.nav-logo-sub  { font-size: 10px; font-weight: 500; color: var(--muted); line-height: 1; }
.nav-logo-img  { height: 72px; width: auto; display: block; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text); transition: color .2s; position: relative; padding-bottom: 2px; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--blue); border-radius: 1px; transform: scaleX(0); transition: transform .2s; }
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--blue); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--text); transition: color .2s; white-space: nowrap; }
.nav-phone:hover { color: var(--blue); }
.nav-phone svg { width: 15px; height: 15px; color: var(--blue); flex-shrink: 0; }
.nav-cta { background: var(--blue) !important; color: #fff !important; padding: 10px 18px; border-radius: 7px; font-weight: 600 !important; white-space: nowrap; }
.nav-cta:hover { background: var(--blue-dark) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; position: fixed; top: 70px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--grey-mid); padding: 16px 24px 24px; z-index: 999; box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu a { display: block; padding: 13px 0; font-size: 16px; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--grey-mid); }
.mobile-menu a.active { color: var(--blue); }
.mobile-menu ul li:last-child a { border-bottom: none; }
.mobile-menu .btn-primary { display: block; text-align: center; margin-top: 16px; }

/* ════════════════════════════════════════
   HERO (home page only)
════════════════════════════════════════ */
#hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,27,42,.84) 0%, rgba(39,116,174,.52) 100%); }
.hero-content { position: relative; z-index: 1; padding: 130px 0 80px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); border-radius: 100px; padding: 6px 16px; margin-bottom: 24px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.88); }
.hero-badge-dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; }
.hero-title { font-size: clamp(36px, 6vw, 70px); font-weight: 800; line-height: 1.08; color: #fff; max-width: 780px; margin-bottom: 18px; }
.hero-title em { font-style: normal; color: #60a5fa; }
.hero-sub { font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,.78); max-width: 560px; line-height: 1.7; margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap; }
.hero-stat-num   { font-size: 28px; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,.6); font-weight: 500; margin-top: 3px; }

.trust-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.trust-badge { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); border-radius: 100px; padding: 8px 16px; font-size: 13px; font-weight: 600; color: #fff; backdrop-filter: blur(8px); }
.trust-badge svg { width: 14px; height: 14px; color: #4ade80; flex-shrink: 0; }

/* ════════════════════════════════════════
   PAGE BANNER (inner pages)
════════════════════════════════════════ */
.page-banner { position: relative; height: 340px; display: flex; align-items: center; overflow: hidden; margin-top: 70px; }
.page-banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-banner-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,27,42,.82) 0%, rgba(39,116,174,.5) 100%); }
.page-banner-content { position: relative; z-index: 1; }
.page-banner-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 10px; }
.page-banner h1 { font-size: clamp(30px, 5vw, 52px); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 12px; }
.page-banner p { font-size: 16px; color: rgba(255,255,255,.75); max-width: 520px; line-height: 1.6; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 13px; color: rgba(255,255,255,.55); }
.breadcrumb a { color: rgba(255,255,255,.55); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.85); }

/* ════════════════════════════════════════
   ABOUT TEASER (home)
════════════════════════════════════════ */
.about-teaser { padding: 60px 0; background: var(--grey-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { border-radius: 16px; overflow: hidden; min-height: 420px; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-badge { position: absolute; bottom: 16px; right: 16px; background: var(--blue); border-radius: 12px; padding: 18px 22px; color: #fff; box-shadow: 0 8px 24px rgba(39,116,174,.4); }
.about-badge-num   { font-size: 28px; font-weight: 800; line-height: 1; }
.about-badge-label { font-size: 11px; opacity: .85; margin-top: 3px; }
.about-text p { font-size: 15px; line-height: 1.8; color: #475569; margin-bottom: 20px; }
.about-values { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 28px; }
.about-value { background: #fff; border: 1px solid var(--grey-mid); border-radius: 100px; padding: 5px 14px; font-size: 12px; font-weight: 700; color: var(--blue); }
.about-team-row { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.about-avatars { display: flex; }
.about-avatars img { width: 38px; height: 38px; border-radius: 50%; border: 2px solid #fff; object-fit: cover; object-position: top; margin-left: -10px; }
.about-avatars img:first-child { margin-left: 0; }
.about-team-copy { font-size: 13px; color: var(--muted); line-height: 1.5; }
.about-team-copy strong { color: var(--text); }

/* ════════════════════════════════════════
   ABOUT PAGE — FULL
════════════════════════════════════════ */
.about-full { padding: 80px 0; }
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; margin-bottom: 80px; }
.about-story-img { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.about-story-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.values-section { padding: 72px 0; background: var(--grey-light); }
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 48px; }
.value-card { background: #2774AE; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: all .25s; }
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-h); border-color: transparent; }
.value-icon { width: 52px; height: 52px; background: rgba(255,255,255,.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.value-icon svg { width: 24px; height: 24px; color: #fff; }
.value-card h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.value-card p  { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.82); }

.team-section { padding: 80px 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.team-card { text-align: center; transition: all .25s; }
.team-card:hover .team-card-img { box-shadow: 0 8px 32px rgba(0,0,0,.18); transform: translateY(-3px); }
.team-card-img { width: 160px; height: 160px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; border: 4px solid #fff; box-shadow: 0 4px 20px rgba(0,0,0,.12); transition: all .25s; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-card-body { padding: 0 8px 8px; }
.team-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); }
.team-card p  { font-size: 12px; color: var(--muted); margin-top: 4px; }
.team-badge { display: inline-block; background: rgba(39,116,174,.1); color: var(--blue); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; margin-top: 6px; }

/* ════════════════════════════════════════
   SERVICES GRID
════════════════════════════════════════ */
.services-section { padding: 80px 0; }
.services-section.bg-grey { background: var(--grey-light); }
.services-intro { max-width: 620px; margin: 0 auto 52px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card { background: var(--grey-light); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--grey-mid); transition: all .25s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-h); border-color: transparent; }
.service-card-img { aspect-ratio: 16/10; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 22px; }
.service-icon { width: 38px; height: 38px; background: rgba(39,116,174,.1); border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.service-icon svg { width: 18px; height: 18px; color: var(--blue); }
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card p  { font-size: 13px; line-height: 1.65; color: var(--muted); margin-bottom: 18px; }
.service-link { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; color: var(--blue); transition: gap .2s; }
.service-link:hover { gap: 9px; }

/* Services page — larger cards */
.services-grid.large .service-card-body { padding: 28px; }
.services-grid.large .service-card h3 { font-size: 19px; margin-bottom: 10px; }
.services-grid.large .service-card p  { font-size: 14px; margin-bottom: 14px; }
.service-includes { list-style: none; margin-bottom: 20px; display: flex; flex-direction: column; gap: 6px; }
.service-includes li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.service-includes li::before { content: ''; width: 6px; height: 6px; background: var(--blue); border-radius: 50%; flex-shrink: 0; }

/* ════════════════════════════════════════
   GALLERY GRID
════════════════════════════════════════ */
.gallery-section { padding: 80px 0; }
.gallery-section.bg-grey { background: var(--grey-light); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 10px; }
.gallery-grid.preview { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; }
.g-item { border-radius: 10px; overflow: hidden; cursor: pointer; position: relative; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.g-item:hover img { transform: scale(1.06); }
.g-overlay { position: absolute; inset: 0; background: rgba(13,27,42,0); display: flex; align-items: center; justify-content: center; transition: background .3s; }
.g-item:hover .g-overlay { background: rgba(13,27,42,.28); }
.g-zoom { opacity: 0; width: 42px; height: 42px; background: rgba(255,255,255,.93); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: opacity .3s; }
.g-item:hover .g-zoom { opacity: 1; }
.g-zoom svg { width: 17px; height: 17px; color: var(--navy); }

/* Full gallery layout spans */
.gallery-grid.full .g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid.full .g-item:nth-child(6) { grid-column: span 2; }

/* ════════════════════════════════════════
   LIGHTBOX
════════════════════════════════════════ */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lb-inner { position: relative; max-width: 1100px; width: 100%; }
.lb-inner img { width: 100%; max-height: 86vh; object-fit: contain; border-radius: 8px; }
.lb-close { position: absolute; top: -46px; right: 0; width: 38px; height: 38px; background: rgba(255,255,255,.12); border: none; border-radius: 50%; color: #fff; font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lb-close:hover { background: rgba(255,255,255,.25); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; background: rgba(255,255,255,.12); border: none; border-radius: 50%; color: #fff; font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lb-nav:hover { background: rgba(255,255,255,.25); }
.lb-prev { left: -54px; }
.lb-next { right: -54px; }

/* ════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════ */
.hiw-section { padding: 100px 0; background: var(--navy); }
.hiw-header { text-align: center; max-width: 560px; margin: 0 auto 60px; }
.hiw-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.hiw-step { text-align: center; padding: 0 16px; }
.hiw-num { width: 68px; height: 68px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 20px; font-weight: 800; color: #fff; border: 3px solid rgba(255,255,255,.1); }
.hiw-step h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.hiw-step p  { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.55); }

/* ════════════════════════════════════════
   SERVICE AREAS
════════════════════════════════════════ */
.areas-section { padding: 80px 0; background: #0a2540; }
.areas-inner { text-align: center; }
.areas-section .section-label { color: rgba(255,255,255,.65); }
.areas-section .section-title { color: #fff; margin-bottom: 28px; }
.areas-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 820px; margin: 0 auto; }
.area-tag { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 100px; padding: 8px 18px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.9); }

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq-section { padding: 80px 0; }
.faq-section.bg-grey { background: var(--grey-light); }
.faq-intro { max-width: 560px; margin: 0 auto 52px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--grey-mid); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.faq-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 22px; background: var(--grey-light); border: none; cursor: pointer; text-align: left; font-size: 15px; font-weight: 700; color: #0a2540; font-family: inherit; transition: background .2s; }
.faq-btn:hover { background: #f1f5f9; }
.faq-icon { width: 26px; height: 26px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .3s, background .2s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue-dark); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-body-inner { padding: 0 22px 20px; font-size: 14px; line-height: 1.78; color: var(--muted); }
.faq-item.open .faq-body { max-height: 320px; }

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact-section { padding: 80px 0; }
.contact-section.bg-grey { background: var(--grey-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start; }
.contact-info h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.contact-info > p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 36px; }
.c-details { display: flex; flex-direction: column; gap: 18px; }
.c-detail { display: flex; align-items: center; gap: 14px; }
.c-detail-icon { width: 42px; height: 42px; background: var(--blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-detail-icon svg { width: 18px; height: 18px; color: #fff; }
.c-detail-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); font-weight: 600; }
.c-detail-value { font-size: 14px; font-weight: 600; color: var(--navy); }
.c-detail-value a { color: var(--navy); }
.c-detail-value a:hover { color: var(--blue); }

.form-wrap { background: #fff; border-radius: 16px; padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--grey-mid); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label { font-size: 12px; font-weight: 700; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 11px 13px; border: 1.5px solid var(--grey-mid); border-radius: 7px; font-size: 14px; color: var(--text); background: var(--grey-light); transition: border-color .2s; font-family: inherit; -webkit-appearance: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); background: #fff; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 14px; background: var(--blue); color: #fff; border: none; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all .2s; margin-top: 4px; font-family: inherit; }
.form-submit:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(39,116,174,.35); }

/* ════════════════════════════════════════
   CTA STRIP
════════════════════════════════════════ */
.cta-strip { padding: 80px 0; background: var(--navy); text-align: center; }
.cta-strip h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; color: #fff; margin-bottom: 14px; }
.cta-strip p { font-size: 16px; color: rgba(255,255,255,.6); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.65; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════
   GALLERY TEASER (home)
════════════════════════════════════════ */
.gallery-teaser { padding: 100px 0; background: var(--grey-light); }
.gallery-teaser-header { margin-bottom: 48px; }
.gallery-teaser-footer { text-align: center; margin-top: 36px; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer { background: var(--grey-light); border-top: 1px solid var(--grey-mid); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 56px; padding-bottom: 48px; }
.footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-icon { width: 36px; height: 36px; background: var(--blue); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-logo-name { font-size: 14px; font-weight: 800; color: var(--navy); line-height: 1.1; }
.footer-logo-sub  { font-size: 10px; color: var(--muted); line-height: 1; }
.footer-logo-img  { height: 38px; width: auto; display: block; margin-bottom: 14px; }
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.65; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-social { width: 36px; height: 36px; border-radius: 8px; background: #fff; border: 1px solid var(--grey-mid); display: flex; align-items: center; justify-content: center; transition: all .2s; }
.footer-social:hover { background: var(--blue); border-color: var(--blue); }
.footer-social:hover svg { color: #fff; }
.footer-social svg { width: 17px; height: 17px; color: var(--muted); transition: color .2s; }
.footer-col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #94a3b8; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--muted); transition: color .2s; }
.footer-links a:hover { color: var(--blue); }
.footer-contact-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact-row svg { width: 15px; height: 15px; color: var(--blue); margin-top: 1px; flex-shrink: 0; }
.footer-contact-row span { font-size: 13px; color: var(--muted); line-height: 1.5; }
.footer-bottom { border-top: 1px solid var(--grey-mid); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: #94a3b8; }

/* ════════════════════════════════════════
   NAV DROPDOWN
════════════════════════════════════════ */
.nav-links > li { display: flex; align-items: center; }
.nav-item { position: relative; list-style: none; }
.nav-item > a { display: flex; align-items: center; gap: 4px; }
.nav-chevron { width: 12px; height: 12px; transition: transform .2s; flex-shrink: 0; }
.nav-item:hover .nav-chevron { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff; border: 1px solid var(--grey-mid); border-radius: 10px;
  padding: 6px; min-width: 210px;
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  opacity: 0; visibility: hidden;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 200;
}
/* Invisible bridge fills the gap so mouse can travel into the dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -14px; left: -10px; right: -10px;
  height: 14px;
}
.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; font-size: 13px; font-weight: 500; color: var(--text);
  border-radius: 6px; transition: background .15s, color .15s; white-space: nowrap;
}
.nav-dropdown a:hover { background: var(--grey-light); color: var(--blue); }
.nav-dropdown a svg { width: 15px; height: 15px; color: var(--blue); flex-shrink: 0; }
.nav-dropdown a::after { display: none !important; }

/* ════════════════════════════════════════
   HERO ROTATION
════════════════════════════════════════ */
.hero-bg-slide { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; opacity: 0; transition: opacity 1.4s ease; }
.hero-bg-slide.active { opacity: 1; }

/* ════════════════════════════════════════
   SERVICE ICON GRID (homepage)
════════════════════════════════════════ */
.svc-icon-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 48px; }
.svc-icon-card { background: #fff; border: 1px solid var(--grey-mid); border-radius: var(--radius); padding: 28px 12px 22px; text-align: center; transition: all .22s; cursor: pointer; text-decoration: none; display: block; }
.svc-icon-card:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(39,116,174,.25); transform: translateY(-3px); }
.svc-icon-card:hover .svc-icon-wrap { background: var(--blue); }
.svc-icon-card:hover .svc-icon-wrap svg { color: #fff; }
.svc-icon-wrap { width: 64px; height: 64px; background: rgba(39,116,174,.08); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; transition: background .22s; }
.svc-icon-wrap svg { width: 30px; height: 30px; color: var(--blue); transition: color .22s; }
.svc-icon-card h3 { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.35; }

/* ════════════════════════════════════════
   HOW IT WORKS — CIRCULAR PHOTO
════════════════════════════════════════ */
.hiw-circles { display: flex; align-items: flex-start; justify-content: center; position: relative; margin-top: 60px; gap: 0; }
.hiw-circle-item { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; max-width: 300px; }
.hiw-circle-photo { position: relative; width: 200px; height: 200px; border-radius: 50%; overflow: hidden; border: 5px solid #fff; box-shadow: 0 6px 24px rgba(0,0,0,.18); flex-shrink: 0; }
.hiw-circle-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hiw-circle-num { position: absolute; bottom: 8px; right: 8px; width: 38px; height: 38px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: #fff; border: 2px solid rgba(255,255,255,.8); }
.hiw-circle-label { margin-top: 22px; padding: 0 10px; }
.hiw-circle-label h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.hiw-circle-label p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.65; }
.hiw-step-num { font-size: 1.2em; font-weight: 800; color: var(--blue); }
.hiw-connector { flex: 0 0 80px; border-top: 2px dashed rgba(255,255,255,.3); margin-top: 100px; }

/* ════════════════════════════════════════
   GOOGLE REVIEWS
════════════════════════════════════════ */
.reviews-section { padding: 80px 0; background: #fff; }
.reviews-track-wrap { position: relative; }
.reviews-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scroll-behavior: smooth; padding-bottom: 12px; scrollbar-width: none; cursor: grab; }
.reviews-track::-webkit-scrollbar { display: none; }
.review-card { flex: 0 0 320px; scroll-snap-align: start; background: #fff; border: 1px solid var(--grey-mid); border-radius: var(--radius); padding: 24px; }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 700; color: #fff; flex-shrink: 0; }
.review-info-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.review-info-date { font-size: 12px; color: var(--muted); margin-top: 2px; }
.review-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.review-stars svg { width: 15px; height: 15px; fill: #FF9C00; color: #FF9C00; }
.review-text { font-size: 13px; line-height: 1.75; color: var(--muted); }
.reviews-controls { display: flex; gap: 10px; justify-content: center; margin-top: 32px; }
.reviews-btn { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--grey-mid); background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.reviews-btn:hover { background: var(--blue); border-color: var(--blue); }
.reviews-btn:hover svg { color: #fff; }
.reviews-btn svg { width: 16px; height: 16px; color: var(--navy); }
.reviews-google-badge { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 20px; font-size: 13px; color: var(--muted); }
.reviews-google-badge svg { width: 18px; height: 18px; }

/* ════════════════════════════════════════
   TRUST STRIP
════════════════════════════════════════ */
.trust-strip { padding: 24px 0; background: #0a2540; border-bottom: 1px solid rgba(255,255,255,.1); width: 100%; }
.trust-strip-inner { display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: #fff; white-space: nowrap; }
.trust-item svg { width: 20px; height: 20px; color: #2774AE; flex-shrink: 0; }
.trust-item-divider { width: 1px; height: 22px; background: rgba(255,255,255,.2); }

/* ════════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════════ */
.why-section { padding: 80px 0; background: var(--grey-light); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.why-card { background: #0a2540; border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 32px 28px; transition: all .25s; }
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-h); border-color: rgba(255,255,255,.2); }
.why-icon { width: 52px; height: 52px; background: rgba(255,255,255,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.why-icon svg { width: 24px; height: 24px; color: rgba(255,255,255,.85); }
.why-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.why-card p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.62); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid   { grid-template-columns: repeat(3, 1fr); }
  .team-grid     { grid-template-columns: repeat(3, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .svc-icon-grid { grid-template-columns: repeat(3, 1fr); }
  .hiw-connector { flex: 0 0 40px; }
  .gallery-grid.full { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid.full .g-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-grid.full .g-item:nth-child(6) { grid-column: span 1; }
  .gallery-grid.preview { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: span 2; }
}
@media (max-width: 900px) {
  .nav-phone { display: none; }
}
@media (max-width: 768px) {
  .ghl-form-wrap { padding: 0 24px; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hiw-circles { flex-direction: column; align-items: center; gap: 36px; }
  .hiw-connector { display: none; }
  .svc-icon-grid { grid-template-columns: repeat(2, 1fr); }
  .page-banner { height: 260px; }
  .page-banner h1 { font-size: 28px; }
  .about-grid, .about-story { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { bottom: 16px; right: 16px; }
  .hiw-steps { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid > div:first-child { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid.full { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-grid.full .g-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-grid.preview { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .lb-prev { left: -8px; }
  .lb-next { right: -8px; }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .svc-icon-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card { flex: 0 0 280px; }
  .hero-buttons, .cta-buttons { flex-direction: column; align-items: flex-start; }
  .cta-buttons { align-items: center; }
  .hero-buttons .btn { justify-content: center; }
  .hero-stats { gap: 24px; }
  .gallery-grid.full, .gallery-grid.preview { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-grid.full .g-item:nth-child(1) { grid-column: span 1; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip-inner { gap: 16px; }
  .trust-item-divider { display: none; }
}

/* ════════════════════════════════════════
   VIDEO SECTION
════════════════════════════════════════ */
.video-section { padding: 72px 0; background: #f8fafc; }
.video-thumb-link { display: block; max-width: 800px; margin: 40px auto 0; text-decoration: none; }
.video-thumb { position: relative; background: #0a2540; border-radius: 16px; overflow: hidden; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; }
.video-play-btn { position: relative; z-index: 1; width: 80px; height: 80px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .2s, box-shadow .2s; }
.video-play-btn svg { width: 36px; height: 36px; color: #0a2540; margin-left: 4px; }
.video-thumb-link:hover .video-play-btn { transform: scale(1.08); box-shadow: 0 8px 32px rgba(0,0,0,.3); }
.video-thumb-caption { text-align: center; margin-top: 16px; font-size: 16px; font-weight: 600; color: var(--navy); }
.video-thumb-subcaption { text-align: center; margin-top: 8px; font-size: 14px; color: var(--muted); }

/* ════════════════════════════════════════
   CAREERS PAGE
════════════════════════════════════════ */
.careers-why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.careers-why-card { background: #2774AE; border-radius: var(--radius); padding: 32px 28px; }
.careers-why-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.careers-why-card p { font-size: 14px; color: rgba(255,255,255,.84); line-height: 1.6; margin: 0; }
.careers-form-wrap { max-width: 620px; margin: 0 auto; }
.careers-form { display: flex; flex-direction: column; gap: 20px; }
.careers-form-group { display: flex; flex-direction: column; gap: 6px; }
.careers-form-group label { font-size: 14px; font-weight: 600; color: var(--navy); }
.careers-form-group input,
.careers-form-group select,
.careers-form-group textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--grey-mid); border-radius: 10px; font-family: inherit; font-size: 15px; color: var(--navy); background: #fff; transition: border-color .2s; box-sizing: border-box; appearance: none; -webkit-appearance: none; }
.careers-form-group input:focus,
.careers-form-group select:focus,
.careers-form-group textarea:focus { outline: none; border-color: #2774AE; box-shadow: 0 0 0 3px rgba(39,116,174,.12); }
.careers-form-group textarea { resize: vertical; min-height: 130px; }
.careers-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.careers-submit { padding: 15px 36px; background: #2774AE; color: #fff; border: none; border-radius: 10px; font-family: inherit; font-size: 16px; font-weight: 700; cursor: pointer; transition: background .2s, transform .2s; }
.careers-submit:hover { background: #1d5e94; transform: translateY(-1px); }
@media (max-width: 768px) {
  .careers-why-grid { grid-template-columns: 1fr; }
  .careers-form-row { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   REVIEWS CAROUSEL ARROWS
════════════════════════════════════════ */
.reviews-carousel-wrap { position: relative; display: flex; align-items: center; gap: 12px; }
.reviews-arrow { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--grey-mid); background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; z-index: 2; }
.reviews-arrow:hover { background: #2774AE; border-color: #2774AE; }
.reviews-arrow:hover svg { color: #fff; }
.reviews-arrow svg { width: 18px; height: 18px; color: var(--navy); }
.reviews-track { flex: 1; min-width: 0; }
@media (max-width: 768px) {
  .reviews-arrow { display: none; }
}
