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

:root {
  --dark:       #221f1f;
  --blue:       #0a8fcf;
  --blue2:      #0878b0;
  --white:      #ffffff;
  --offwhite:   #f4f8fc;
  --border:     #dce8f0;
  --muted:      #5a6d7e;
  --light-blue: #e8f5fc;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: #fff;
  padding-top: 88px;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: var(--dark);
  height: 88px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
  transition: background 0.35s, box-shadow 0.35s, height 0.35s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  height: 100%; display: flex; align-items: center;
}
.nav-brand {
  display: flex; align-items: center; flex-shrink: 0;
}
.nav-brand img {
  height: 88px;
  width: auto;
  display: block;
  /* No background, no padding - transparent logo */
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  object-fit: contain;
  transition: filter 0.3s;
}
.navbar.scrolled .nav-brand img {
  filter: none;
}

.nav-links { display: flex; list-style: none; gap: 2px; margin-left: auto; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block; color: rgba(255,255,255,0.82);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 500;
  padding: 8px 16px; border-radius: 6px;
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.navbar.scrolled .nav-links > li > a { color: var(--dark); }
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--blue) !important;
  background: rgba(10,143,207,0.1);
}
.has-dropdown { position: relative; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  padding-top: 10px; z-index: 10000; min-width: 260px;
}
.dropdown-inner {
  background: var(--dark); border: 1px solid rgba(10,143,207,0.35);
  border-radius: 10px; padding: 8px; list-style: none;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.navbar.scrolled .dropdown-inner {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown-inner li a {
  display: block; color: rgba(255,255,255,0.75);
  font-size: 0.85rem; padding: 10px 16px; border-radius: 7px;
  transition: background 0.15s, color 0.15s;
}
.navbar.scrolled .dropdown-inner li a { color: var(--muted); }
.dropdown-inner li a:hover { background: rgba(10,143,207,0.15); color: var(--blue) !important; }
.enquire-btn {
  background: var(--blue); color: #fff !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem; font-weight: 600;
  border: none; padding: 11px 24px; border-radius: 7px;
  cursor: pointer; white-space: nowrap; margin-left: 18px;
  transition: background 0.2s, transform 0.15s; flex-shrink: 0;
  display: inline-block;
}
.enquire-btn:hover { background: var(--blue2); transform: translateY(-1px); }

/* ── HAMBURGER ── */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; flex-direction: column; gap: 5px; margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px; transition: all 0.3s;
}
.navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; top: 88px; left: 0; right: 0;
  background: var(--dark); z-index: 9998;
  padding: 16px 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-height: calc(100vh - 88px); overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li a,
.mob-services-label {
  display: block; color: rgba(255,255,255,0.82);
  font-size: 1rem; font-weight: 500;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
}
.mobile-sub {
  padding: 8px 0 8px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: none;
}
.mobile-sub.open { display: block; }
.mobile-sub a {
  display: block; color: rgba(255,255,255,0.6);
  font-size: 0.9rem; padding: 8px 0;
  border-bottom: none !important;
}
.mob-enquire {
  display: block;
  background: var(--blue); color: #fff !important;
  text-align: center; padding: 14px !important;
  border-radius: 8px; margin-top: 16px;
  font-weight: 600 !important; border-bottom: none !important;
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, #221f1f 0%, #1d3045 100%);
  padding: 64px 0 60px; border-bottom: 3px solid var(--blue);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 45%; height: 100%;
  background: radial-gradient(ellipse at right, rgba(10,143,207,0.18) 0%, transparent 70%);
}
.page-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; color: #fff;
}
.page-hero p { color: rgba(255,255,255,0.55); font-size: 1rem; margin-top: 8px; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ── SECTION LABELS ── */
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 8px; display: block;
}
.section-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 700;
  color: var(--dark); margin-bottom: 12px; line-height: 1.2;
}
.section-sub { font-size: 1rem; color: var(--muted); line-height: 1.75; max-width: 640px; }

/* ── HOME HERO ── */
.home-hero {
  background: linear-gradient(135deg, #221f1f 0%, #1a2e3f 60%, #0d3a52 100%);
  padding: 90px 0 110px;
  position: relative; overflow: hidden;
}
.home-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 80% at 85% 50%, rgba(10,143,207,0.22) 0%, transparent 65%),
              radial-gradient(ellipse 30% 40% at 10% 80%, rgba(10,143,207,0.1) 0%, transparent 60%);
}
.home-hero::after {
  content: ''; position: absolute; inset: 0; opacity: 0.035;
  background-image: linear-gradient(rgba(255,255,255,0.6) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.6) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-right-img-wrap {
  position: absolute; top: 0; right: 0;
  width: 45%; height: 100%; z-index: 1; overflow: hidden;
}
.hero-right-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #221f1f 0%, rgba(13,27,42,0.6) 40%, rgba(13,27,42,0.1) 100%);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(10,143,207,0.15); border: 1px solid rgba(10,143,207,0.4);
  color: #5dd3f8; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--blue); border-radius: 50%; display: inline-block; }
.hero-content { position: relative; z-index: 2; }
.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; color: #fff;
  line-height: 1.1; margin-bottom: 20px;
}
.hero-title span { color: var(--blue); }
.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.6);
  line-height: 1.8; max-width: 520px; margin-bottom: 36px;
}
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  display: inline-block; background: var(--blue); color: #fff;
  font-weight: 600; font-size: 0.95rem; padding: 13px 30px;
  border-radius: 8px; transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--blue2); transform: translateY(-2px); color: #fff; }
.btn-ghost {
  display: inline-block; background: transparent; color: rgba(255,255,255,0.8);
  font-weight: 500; font-size: 0.95rem; padding: 13px 30px;
  border-radius: 8px; border: 1.5px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: #fff; color: #fff; }

/* ── EXPERTISE GRID ── */
.expertise-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.expertise-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: 14px;
  padding: 36px 24px 28px; display: flex; flex-direction: column;
  align-items: center; gap: 16px; text-align: center;
  color: var(--dark); font-size: 0.92rem; font-weight: 600;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
  text-decoration: none;
}
.expertise-card:hover { box-shadow: 0 10px 32px rgba(10,143,207,0.15); border-color: var(--blue); transform: translateY(-5px); color: var(--blue); }
.expertise-card img { width: 88px; height: 88px; object-fit: contain; }

/* ── STATES ── */
.states-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; margin-bottom: 52px; }
.state-item {
  background: #fff; border: 1.5px solid var(--border); border-radius: 12px;
  padding: 24px 12px 18px; text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.state-item:hover { box-shadow: 0 6px 20px rgba(10,143,207,0.12); border-color: var(--blue); transform: translateY(-3px); }
.state-item img { height: 48px; width: auto; margin: 0 auto; display: block; object-fit: contain; }
.state-item p { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--dark); margin-top: 12px; }

/* ── STATS BAR ── */
.stats-bar { display: flex; background: var(--dark); border-radius: 16px; overflow: hidden; flex-wrap: wrap; }
.stat-item { flex: 1; padding: 32px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.07); min-width: 120px; }
.stat-item:last-child { border-right: none; }
.stat-item strong { display: block; font-family: 'Sora',sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--blue); }
.stat-item span { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 5px; display: block; }

/* ── SERVICE LAYOUT ── */
.service-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.service-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 0.95rem; color: var(--dark); line-height: 1.6;
  padding: 14px 18px; background: var(--offwhite);
  border-radius: 10px; border-left: 4px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.service-list li:hover { border-color: var(--blue); background: var(--light-blue); }
.service-list li::before { content: '→'; color: var(--blue); font-weight: 700; flex-shrink: 0; }

/* ── SERVICE SUBNAV ── */
.service-subnav {
  background: #fff; border-bottom: 2px solid var(--border);
  position: sticky; top: 88px; z-index: 100;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.service-subnav::-webkit-scrollbar { height: 4px; }
.service-subnav::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.service-subnav-inner {
  display: flex; max-width: 1200px; margin: 0 auto; padding: 0 40px;
  min-width: max-content;
}
.snav-item {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  padding: 16px 18px; border-bottom: 3px solid transparent;
  color: var(--muted); font-size: 0.72rem; font-weight: 600;
  text-align: center; white-space: nowrap; text-decoration: none; flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
}
.snav-item img { width: 30px; height: 30px; object-fit: contain; }
.snav-item:hover, .snav-item.active { color: var(--blue); border-color: var(--blue); }

/* ── INHOUSE SECTION ── */
.inhouse-section { background: var(--offwhite); padding: 72px 0; }
.inhouse-images { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.inhouse-images.two-col { grid-template-columns: 1fr 1fr; }
.inhouse-img-wrap { border-radius: 12px; overflow: hidden; border: 1.5px solid var(--border); background: #fff; }
.inhouse-img-wrap img { width: 100%; height: auto; max-height: 260px; object-fit: contain; background: #f8f8f8; display: block; }
.inhouse-img-wrap p { font-size: 0.82rem; font-weight: 600; color: var(--dark); padding: 12px 16px; border-top: 1px solid var(--border); }
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.ba-wrap { border-radius: 12px; overflow: hidden; border: 1.5px solid var(--border); }
.ba-label { background: var(--dark); color: #fff; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 10px 18px; }
.ba-wrap img { width: 100%; height: auto; max-height: 240px; object-fit: contain; background: #f8f8f8; display: block; }

/* ── INVESTORS ── */
.investors-section { background: var(--dark); padding: 70px 0; text-align: center; }
.investors-logos { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; margin-top: 36px; justify-content: center; }
.investor-logo-box {
  background: #fff; border-radius: 16px; padding: 40px 56px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,0.15); min-width: 200px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.investor-logo-box:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(10,143,207,0.35); }
.investor-logo-box img { height: 136px; width: auto; object-fit: contain; max-width: 200px; }

/* ── VERTICALS ── */
.verticals-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 36px; }
.vertical-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: 14px;
  padding: 28px 24px; display: flex; align-items: center; gap: 18px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  font-size: 0.9rem; font-weight: 600; color: var(--dark);
  text-decoration: none;
}
.vertical-card img { height: 42px; width: 42px; object-fit: contain; flex-shrink: 0; }
.vertical-card:hover { box-shadow: 0 8px 28px rgba(10,143,207,0.12); border-color: var(--blue); transform: translateY(-3px); }

/* ── GROWTH TABLE ── */
.growth-table { width: 100%; border-collapse: collapse; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.08); font-size: 0.88rem; }
.growth-table thead { background: var(--dark); }
.growth-table thead th { color: rgba(255,255,255,0.75); font-size: 0.75rem; letter-spacing: 0.07em; text-transform: uppercase; padding: 16px 20px; text-align: left; font-weight: 600; }
.growth-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
.growth-table tbody tr:hover { background: var(--light-blue); }
.growth-table tbody tr.note-row td { background: rgba(10,143,207,0.06); color: var(--blue); font-style: italic; font-size: 0.83rem; }
.growth-table td { padding: 15px 20px; color: var(--dark); }

/* ── SERVICES OVERVIEW ── */
.services-overview-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.sov-card {
  display: flex; gap: 24px; background: #fff; border: 1.5px solid var(--border);
  border-radius: 16px; padding: 32px 28px; text-decoration: none; color: var(--dark);
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s; align-items: flex-start;
}
.sov-card:hover { box-shadow: 0 10px 36px rgba(10,143,207,0.13); border-color: var(--blue); transform: translateY(-4px); }
.sov-card img { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; }
.sov-body h3 { font-family: 'Sora',sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.sov-body ul { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.sov-body ul li { font-size: 0.84rem; color: var(--muted); padding-left: 14px; position: relative; line-height: 1.5; }
.sov-body ul li::before { content: '→'; position: absolute; left: 0; color: var(--blue); font-size: 0.75rem; }
.sov-link { font-size: 0.85rem; font-weight: 600; color: var(--blue); border-bottom: 1.5px solid var(--blue); padding-bottom: 1px; }

/* ── TOUR ── */
.tour-divider { flex: 1; height: 2px; background: linear-gradient(90deg, var(--blue), transparent); }
.tour-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.tour-gallery a { border-radius: 12px; overflow: hidden; display: block; border: 1.5px solid var(--border); cursor: zoom-in; }
.tour-gallery img { width: 100%; height: 220px; object-fit: cover; object-position: center; transition: transform 0.35s; display: block; }
.tour-gallery a:hover img { transform: scale(1.05); }

/* ── LIGHTBOX ── */
.lightbox-overlay {
  display: none; position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,0.92); align-items: center;
  justify-content: center; padding: 20px;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lb-close { position: fixed; top: 20px; right: 24px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; z-index: 100000; }
.lb-prev, .lb-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); border: none; color: #fff; font-size: 1.8rem; cursor: pointer; padding: 14px 18px; border-radius: 8px; z-index: 100000; }
.lb-prev { left: 16px; } .lb-next { right: 16px; }

/* ── ABOUT ── */
.about-intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-highlight { background: linear-gradient(135deg, #221f1f, #1e3548); border-radius: 20px; padding: 48px 40px; color: #fff; }
.about-mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
.mini-stat { background: rgba(10,143,207,0.12); border: 1px solid rgba(10,143,207,0.25); border-radius: 10px; padding: 16px; }
.mini-stat strong { display: block; font-family: 'Sora',sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--blue); }
.mini-stat span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ── FLOATING ENQUIRE ── */
.enquire-float {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 500;
}
.enquire-float button {
  background: var(--blue); color: #fff; font-size: 0.78rem; font-weight: 700;
  border: none; cursor: pointer; padding: 14px 10px; border-radius: 8px 0 0 8px;
  letter-spacing: 0.1em; writing-mode: vertical-rl; text-orientation: mixed;
  transform: rotate(180deg); box-shadow: -4px 0 16px rgba(0,0,0,0.25);
  transition: background 0.2s;
}
.enquire-float button:hover { background: var(--blue2); }

/* ── MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 20000;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(5px);
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff; border-radius: 18px; padding: 48px 40px;
  width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto;
  position: relative; box-shadow: 0 28px 80px rgba(0,0,0,0.3);
}
.enquire-form { display: flex; flex-direction: column; gap: 13px; }
.enquire-form input,
.enquire-form select {
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 13px 16px; font-size: 0.9rem; color: var(--dark);
  outline: none; transition: border-color 0.2s; background: #fff;
  width: 100%; font-family: 'DM Sans', sans-serif;
}
.enquire-form input:focus, .enquire-form select:focus { border-color: var(--blue); }
.phone-row { display: grid; grid-template-columns: 110px 1fr; gap: 10px; }
.enquire-form .submit-btn {
  background: var(--blue); color: #fff; font-weight: 700;
  font-size: 0.95rem; border: none; padding: 14px;
  border-radius: 8px; cursor: pointer; margin-top: 4px;
  transition: background 0.2s;
}
.enquire-form .submit-btn:hover { background: var(--blue2); }
.modal-title { font-family: 'Sora',sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: 28px; }
.modal-close { position: absolute; top: 18px; right: 20px; font-size: 1.3rem; color: var(--muted); background: none; border: none; cursor: pointer; }

/* ── FOOTER ── */
.site-footer { background: var(--dark); padding: 56px 0 0; border-top: 3px solid var(--blue); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col address { font-style: normal; font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer-brand img {
  height: 88px; width: auto; margin-bottom: 18px;
  background: transparent !important;
  padding: 0 !important; border-radius: 0 !important;
  display: block;
}
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.75;}
.footer-col h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--blue); margin-bottom: 18px; font-weight: 700; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.55); font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { padding: 22px 0; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.28); }
.footer-link { color: var(--blue); }
.footer-link:hover { opacity: 0.75; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .service-subnav-inner { padding: 0 20px; }
  .snav-item { padding: 14px 14px; font-size: 0.68rem; }
}
@media (max-width: 900px) {
  .expertise-grid { grid-template-columns: repeat(2,1fr); }
  .states-grid { grid-template-columns: repeat(3,1fr); }
  .about-intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .verticals-grid { grid-template-columns: repeat(2,1fr); }
  .inhouse-images { grid-template-columns: repeat(2,1fr); }
  .tour-gallery { grid-template-columns: repeat(2,1fr); }
  .services-overview-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
  .hero-right-img-wrap { width: 100%; opacity: 0.2; }
  .service-layout { grid-template-columns: 1fr; gap: 40px; }
  .sov-card { flex-direction: row; align-items: flex-start; gap: 16px; }
  .sov-card img { width: 44px; height: 44px; }
}
@media (max-width: 768px) {
  body { padding-top: 88px; }
  .nav-links { display: none; }
  .enquire-btn { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 20px; }
  .container { padding: 0 16px !important; }
  .service-layout { grid-template-columns: 1fr; gap: 32px; }
  .page-hero h1 { font-size: 1.7rem; }
  .page-hero p { font-size: 0.9rem; }
  .expertise-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .states-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .stats-bar { flex-wrap: wrap; border-radius: 12px; }
  .stat-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 20px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
  .inhouse-images { grid-template-columns: 1fr; }
  .inhouse-images.two-col { grid-template-columns: 1fr; }
  .before-after { grid-template-columns: 1fr; }
  .verticals-grid { grid-template-columns: 1fr; }
  .investors-logos { flex-direction: column; align-items: stretch; }
  .investor-logo-box { padding: 28px 24px; min-width: unset; }
  .tour-gallery { grid-template-columns: 1fr; gap: 12px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .services-overview-grid { grid-template-columns: 1fr; }
  .sov-card { flex-direction: row; align-items: flex-start; gap: 12px; }
  .sov-card img { width: 36px; height: 36px; }
  .sov-body ul li { text-align: justify; }
  .about-highlight { padding: 32px 24px; }
  .enquire-float { display: none; }
  .modal { padding: 32px 24px; margin: 16px; }
  .service-subnav-inner { padding: 0 16px; }
  .snav-item { padding: 12px 12px; font-size: 0.65rem; }
  .snav-item img { width: 24px; height: 24px; }
}
@media (max-width: 480px) {
  .expertise-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .states-grid { grid-template-columns: repeat(2,1fr); }
  .hero-title { font-size: 2rem; }
  .nav-brand img { height: 64px; }
  .navbar { height: 72px; }
  body { padding-top: 72px; }
  .mobile-menu { top: 72px; max-height: calc(100vh - 72px); }
  .service-subnav { top: 72px; }
}
@media (max-width: 400px) {
  .expertise-grid { grid-template-columns: 1fr; }
}
