﻿/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Open Sans', sans-serif;
  background: #ffffff;
  color: #1a1a2e;
  overflow-x: hidden;
  line-height: 1.7;
  max-width: 100vw;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #D4A012;
  --gold-dark: #B8860B;
  --gold-light: #E8B828;
  --navy: #0C1A3A;
  --navy-light: #152347;
  --white: #ffffff;
  --off-white: #F8F7F4;
  --cream: #FBF9F3;
  --light-bg: #F2F0EB;
  --text-dark: #1a1a2e;
  --text-body: #4a4a5a;
  --text-muted: #7a7a8a;
  --border: #E8E6E1;
  --border-light: #F0EEE9;
}

/* ===== CLICKABLE CONTACT LINKS ===== */
a[href^="tel"], a[href^="mailto"] {
  text-decoration: underline;
  text-decoration-color: rgba(212,160,18,0.35);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.3s ease;
}
a[href^="tel"]:hover, a[href^="mailto"]:hover {
  text-decoration-color: var(--gold);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes slowZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; } 50% { opacity: 0.4; }
}
@keyframes metricPulse {
  0% { transform: scale(1); } 50% { transform: scale(1.08); } 100% { transform: scale(1); }
}
@keyframes badgeShine {
  0% { background-position: -200% center; } 100% { background-position: 200% center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-scale.active { opacity: 1; transform: scale(1); }

img[loading="lazy"] {
  background: linear-gradient(135deg, #f0eee9 25%, #f8f7f4 50%, #f0eee9 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}
img.loaded { animation: none; background: none; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.scrolled, .navbar.solid {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
  box-shadow: 0 1px 30px rgba(0,0,0,0.06);
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img { height: 48px; width: 48px; border-radius: 8px; object-fit: cover; }
.nav-logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem; font-weight: 700; color: var(--white);
  transition: color 0.4s;
}
.navbar.scrolled .nav-logo-text, .navbar.solid .nav-logo-text { color: var(--navy); }
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  position: relative; transition: color 0.3s;
}
.navbar.scrolled .nav-links a, .navbar.solid .nav-links a { color: var(--text-body); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  padding: 10px 28px; border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white); font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  border-radius: 4px; transition: all 0.3s ease;
}
.navbar.scrolled .nav-cta, .navbar.solid .nav-cta { border-color: var(--gold); color: var(--gold); }
.nav-cta:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.navbar.scrolled .nav-cta:hover, .navbar.solid .nav-cta:hover { color: var(--white); }
.mobile-toggle { display: none; cursor: pointer; }
.mobile-toggle span {
  display: block; width: 28px; height: 2px; background: var(--white);
  margin: 6px 0; transition: all 0.3s;
}
.navbar.scrolled .mobile-toggle span, .navbar.solid .mobile-toggle span { background: var(--navy); }

/* Mobile nav overlay */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(12,26,58,0.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.3rem; font-weight: 600; color: var(--white);
  text-transform: uppercase; letter-spacing: 2px; transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute; top: 24px; right: 30px;
  font-size: 2rem; color: var(--white); cursor: pointer;
  background: none; border: none; font-weight: 300;
}

/* ===== PAGE HEADER (for inner pages) ===== */
.page-header {
  background: var(--navy); padding: 160px 60px 80px;
  text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,160,18,0.08) 0%, transparent 70%);
}
.page-header .section-label { color: var(--gold-light); }
.page-header-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700;
  color: var(--white); margin-bottom: 16px; position: relative;
}
.page-header-sub {
  color: rgba(255,255,255,0.65); font-size: 1.05rem;
  max-width: 600px; margin: 0 auto; line-height: 1.8; position: relative;
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.35);
  transform: scale(1.05);
  animation: slowZoom 25s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,26,58,0.5) 0%, rgba(12,26,58,0.65) 50%, rgba(12,26,58,0.9) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 880px; padding: 0 30px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 22px; border: 1px solid rgba(212,160,18,0.4);
  border-radius: 50px; margin-bottom: 30px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold-light);
  animation: fadeInUp 0.8s ease forwards;
  background: rgba(212,160,18,0.08);
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-light); animation: pulse-dot 2s infinite;
}
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.15; color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s forwards; opacity: 0;
}
.hero h1 .gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.08rem; color: rgba(255,255,255,0.75); max-width: 640px;
  margin: 0 auto 40px; line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.4s forwards; opacity: 0;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s forwards; opacity: 0;
}
.btn-primary {
  display: inline-block;
  padding: 16px 40px; background: var(--gold); color: var(--white);
  font-weight: 700; font-size: 0.88rem; letter-spacing: 1px;
  text-transform: uppercase; border: none; border-radius: 4px;
  cursor: pointer; transition: all 0.35s ease;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%); transition: transform 0.5s;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,160,18,0.35); }
.btn-outline {
  display: inline-block;
  padding: 16px 40px; background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35); color: var(--white);
  font-weight: 600; font-size: 0.88rem; letter-spacing: 1px;
  text-transform: uppercase; border-radius: 4px;
  cursor: pointer; transition: all 0.35s ease;
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }
.btn-outline-dark {
  display: inline-block;
  padding: 16px 40px; background: transparent;
  border: 1.5px solid var(--border); color: var(--navy);
  font-weight: 600; font-size: 0.88rem; letter-spacing: 1px;
  text-transform: uppercase; border-radius: 4px;
  cursor: pointer; transition: all 0.35s ease;
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ===== SECTION STYLES ===== */
section { padding: 110px 60px; position: relative; }
.section-header { text-align: center; margin-bottom: 70px; }
.section-label {
  display: inline-block; font-size: 0.73rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700;
  line-height: 1.2; margin-bottom: 18px; color: var(--navy);
}
.section-line {
  width: 70px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 22px; border-radius: 2px;
}
.section-subtitle {
  font-size: 1.02rem; color: var(--text-muted); max-width: 580px;
  margin: 0 auto; line-height: 1.8;
}

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto;
}
.about-image-wrapper { position: relative; border-radius: 12px; overflow: visible; }
.about-image-wrapper img {
  width: 100%; height: 500px; object-fit: cover;
  border-radius: 12px; transition: transform 0.6s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.about-image-wrapper:hover img { transform: scale(1.02); }
.about-image-accent {
  position: absolute; bottom: -16px; right: -16px;
  width: 180px; height: 180px; border: 3px solid var(--gold);
  border-radius: 12px; z-index: -1;
}
.about-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.1rem; margin-bottom: 22px; line-height: 1.3;
  color: var(--navy);
}
.about-content p {
  color: var(--text-body); margin-bottom: 18px;
  font-size: 0.95rem; line-height: 1.9;
}
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 36px;
}
.stat-box {
  text-align: center; padding: 24px 16px;
  background: var(--off-white); border: 1px solid var(--border-light);
  border-radius: 12px; transition: all 0.4s ease;
}
.stat-box:hover {
  background: var(--white); border-color: var(--gold);
  transform: translateY(-4px); box-shadow: 0 12px 30px rgba(212,160,18,0.1);
}
.stat-box:hover .stat-number { animation: metricPulse 0.6s ease; }
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem; font-weight: 700; color: var(--gold-dark);
  margin-bottom: 4px;
  min-width: 4ch; display: inline-block;
}
.stat-label {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--text-muted);
}

/* ===== VISION & MISSION ===== */
.vision-mission {
  background: var(--navy);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.vm-card { padding: 80px 60px; position: relative; transition: background 0.4s ease; }
.vm-card:first-child { border-right: 1px solid rgba(255,255,255,0.08); }
.vm-card:hover { background: rgba(255,255,255,0.03); }
.vm-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(212,160,18,0.12); display: flex;
  align-items: center; justify-content: center; margin-bottom: 26px;
}
.vm-icon svg { width: 26px; height: 26px; stroke: var(--gold-light); fill: none; stroke-width: 1.5; }
.vm-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.7rem; margin-bottom: 18px; color: var(--white);
}
.vm-card p { color: rgba(255,255,255,0.7); line-height: 1.9; font-size: 0.95rem; }
.vm-card ul { list-style: none; margin-top: 18px; }
.vm-card ul li {
  padding: 7px 0; color: rgba(255,255,255,0.7); font-size: 0.92rem;
  display: flex; align-items: flex-start; gap: 12px;
}
.vm-card ul li::before {
  content: ''; flex-shrink: 0; width: 6px; height: 6px;
  background: var(--gold-light); border-radius: 50%; margin-top: 8px;
}

/* ===== SERVICES ===== */
.services { background: var(--off-white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; max-width: 1200px; margin: 0 auto;
}
.service-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: 14px; padding: 44px 34px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px); border-color: rgba(212,160,18,0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}
.service-icon {
  width: 66px; height: 66px; margin-bottom: 26px;
  background: linear-gradient(135deg, rgba(212,160,18,0.08), rgba(212,160,18,0.15));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  transition: all 0.4s ease; margin-inline: auto;
}
.service-card:hover .service-icon { animation: float 3s ease-in-out infinite; }
.service-icon svg { width: 30px; height: 30px; stroke: var(--gold-dark); fill: none; stroke-width: 1.5; }
.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem; margin-bottom: 14px; line-height: 1.3;
  color: var(--navy); text-align: center;
}
.service-card p {
  color: var(--text-muted); font-size: 0.9rem; line-height: 1.8;
  margin-bottom: 22px; text-align: center;
}
.service-list { list-style: none; display: inline-block; text-align: left; }
.service-list li {
  padding: 5px 0; color: var(--text-body); font-size: 0.83rem;
  display: flex; align-items: flex-start; gap: 10px; text-align: left;
}
.service-list li::before {
  content: ''; flex-shrink: 0; width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%; margin-top: 7px;
}

/* ===== WHY US ===== */
.why-us { background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.why-card {
  text-align: center; padding: 40px 22px;
  background: var(--off-white); border: 1px solid var(--border-light);
  border-radius: 14px; transition: all 0.4s ease;
}
.why-card:hover {
  background: var(--white); border-color: var(--gold);
  transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}
.why-number {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem; font-weight: 700; color: var(--gold);
  opacity: 0.18; margin-bottom: 10px; line-height: 1;
}
.why-card h4 { font-size: 0.98rem; font-weight: 600; margin-bottom: 10px; color: var(--navy); }
.why-card p { color: var(--text-muted); font-size: 0.84rem; line-height: 1.7; }

/* ===== PROJECTS GALLERY (Oville-style) ===== */
.gallery { background: var(--off-white); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; max-width: 1300px; margin: 0 auto;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 12px;
  cursor: pointer; height: 300px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(0,0,0,0.15); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; bottom: 0; left: 0; width: 100%;
  min-height: 70px; padding: 30px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  pointer-events: none; z-index: 10;
}
.gallery-overlay h5 {
  color: white; font-family: "Poppins", sans-serif;
  font-size: 1.05rem; font-weight: 700; margin: 0;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  line-height: 1.3;
}

/* ===== PROJECTS ===== */
.projects { background: var(--white); }
.projects-list { max-width: 900px; margin: 0 auto; }
.project-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 0; border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.project-item:hover { padding-left: 12px; border-color: var(--gold); }
.project-item:hover .project-value { animation: metricPulse 0.5s ease; }
.project-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.12rem; font-weight: 500; color: var(--navy);
}
.project-value {
  color: var(--gold-dark); font-weight: 700; font-size: 1.08rem; white-space: nowrap;
}

/* ===== LEADERSHIP ===== */
.leadership { background: var(--off-white); }
.leader-card {
  display: grid; grid-template-columns: 380px 1fr;
  gap: 60px; max-width: 1100px; margin: 0 auto; align-items: center;
}
.leader-photo { position: relative; border-radius: 14px; overflow: hidden; }
.leader-photo img {
  width: 100%; height: 480px; object-fit: cover; border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.leader-photo-border {
  position: absolute; top: 14px; left: 14px; right: 14px; bottom: 14px;
  border: 2px solid rgba(212,160,18,0.35); border-radius: 14px;
  pointer-events: none;
}
.leader-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem; margin-bottom: 6px; color: var(--navy);
}
.leader-info .title {
  color: var(--gold-dark); font-weight: 500; margin-bottom: 22px; font-size: 0.92rem;
}
.leader-info p {
  color: var(--text-body); font-size: 0.92rem; line-height: 1.9; margin-bottom: 14px;
}
.leader-credentials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.credential-badge {
  padding: 8px 20px; background: rgba(212,160,18,0.08);
  border: 1px solid rgba(212,160,18,0.2); border-radius: 50px;
  font-size: 0.73rem; color: var(--gold-dark); font-weight: 600;
  letter-spacing: 0.5px; transition: all 0.35s ease;
  cursor: default; position: relative; overflow: hidden;
}
.credential-badge:hover {
  background: var(--gold); color: var(--white);
  border-color: var(--gold); transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212,160,18,0.3);
}
.credential-badge::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  background-size: 200% 100%;
  opacity: 0; transition: opacity 0.3s;
}
.credential-badge:hover::after { opacity: 1; animation: badgeShine 1.5s ease infinite; }

/* ===== CLIENTS ===== */
.clients { background: var(--white); overflow: hidden; padding: 80px 0; }
.clients .section-header { padding: 0 60px; }
.client-track {
  display: flex; gap: 60px;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.client-logo {
  height: 44px; opacity: 1; filter: none;
  transition: all 0.4s ease; flex-shrink: 0;
}
.client-logo:hover { opacity: 0.85; }

/* ===== GOOGLE REVIEWS ===== */
.reviews-section {
  background: var(--off-white); padding: 100px 0; overflow: hidden;
}
.reviews-section .section-header { padding: 0 60px; }
.reviews-header-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 10px;
}
.reviews-rating {
  font-size: 2.8rem; font-weight: 800; color: var(--gold-dark);
  font-family: 'Poppins', sans-serif;
}
.reviews-stars { display: flex; gap: 3px; }
.reviews-stars svg { width: 22px; height: 22px; fill: var(--gold); }
.reviews-count { color: var(--text-muted); font-size: 0.9rem; }
.google-logo {
  display: flex; align-items: center; gap: 8px;
  justify-content: center; margin-bottom: 48px;
}
.google-logo svg { height: 22px; }
.google-logo span { font-size: 0.88rem; color: var(--text-muted); }
.reviews-track-wrapper { position: relative; }
.reviews-track-wrapper::before, .reviews-track-wrapper::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px;
  z-index: 2; pointer-events: none;
}
.reviews-track-wrapper::before { left: 0; background: linear-gradient(90deg, var(--off-white), transparent); }
.reviews-track-wrapper::after { right: 0; background: linear-gradient(-90deg, var(--off-white), transparent); }
.reviews-track {
  display: flex; gap: 22px;
  animation: marquee 50s linear infinite;
  width: max-content;
}
.reviews-track:hover { animation-play-state: paused; }
.review-card {
  flex-shrink: 0; width: 370px; background: var(--white);
  border: 1px solid var(--border-light); border-radius: 16px;
  padding: 30px; transition: all 0.4s ease;
}
.review-card:hover {
  border-color: rgba(212,160,18,0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}
.review-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.05rem; color: var(--white);
}
.review-name { font-weight: 600; font-size: 0.93rem; color: var(--navy); }
.review-date { font-size: 0.76rem; color: var(--text-muted); }
.review-stars { display: flex; gap: 2px; margin-bottom: 14px; }
.review-stars svg { width: 15px; height: 15px; fill: var(--gold); }
.review-text {
  color: var(--text-body); font-size: 0.88rem; line-height: 1.8;
  font-style: italic;
}
.review-text::before {
  content: '\201C'; font-size: 1.8rem; color: var(--gold);
  opacity: 0.3; line-height: 0; vertical-align: -10px; margin-right: 4px;
}

/* ===== CONTACT ===== */
.contact { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; max-width: 1100px; margin: 0 auto;
}
.contact-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem; margin-bottom: 22px; color: var(--navy);
}
.contact-info > p {
  color: var(--text-body); margin-bottom: 30px;
  font-size: 0.95rem; line-height: 1.8;
}
.contact-details { list-style: none; }
.contact-details li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--border-light);
}
.contact-details a { transition: color 0.3s; }
.contact-details a:hover { color: var(--gold); }
.contact-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: rgba(212,160,18,0.08); display: flex;
  align-items: center; justify-content: center;
}
.contact-icon svg { width: 18px; height: 18px; stroke: var(--gold-dark); fill: none; stroke-width: 1.5; }
.contact-details .label {
  font-size: 0.73rem; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 3px;
}
.contact-details .value { font-weight: 500; font-size: 0.93rem; color: var(--navy); }
.contact-form {
  background: var(--off-white); border-radius: 16px;
  padding: 44px; border: 1px solid var(--border-light);
}
.contact-form h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem; margin-bottom: 30px; color: var(--navy);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.76rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-muted); margin-bottom: 7px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px; background: var(--white);
  border: 1px solid var(--border); border-radius: 8px;
  color: var(--text-dark); font-family: 'Open Sans', sans-serif;
  font-size: 0.92rem; outline: none; transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-submit {
  width: 100%; padding: 15px; background: var(--gold);
  color: var(--white); font-weight: 700; font-size: 0.88rem;
  letter-spacing: 1px; text-transform: uppercase;
  border: none; border-radius: 8px; cursor: pointer;
  transition: all 0.35s ease;
}
.form-submit:hover {
  background: var(--gold-dark); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,160,18,0.3);
}

/* Map */
.map-container {
  max-width: 1100px; margin: 60px auto 0;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 1px solid var(--border-light);
}
.map-container iframe { width: 100%; height: 400px; border: none; display: block; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy); padding: 55px 60px 28px; color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer-about p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.8; margin-top: 16px; }
.footer-col h4 {
  font-family: 'Poppins', sans-serif; font-size: 0.88rem;
  font-weight: 600; color: var(--white); margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 1px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.5); font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo img { height: 38px; width: 38px; border-radius: 6px; object-fit: cover; }
.footer-logo-text {
  font-family: 'Poppins', sans-serif; font-size: 1.15rem;
  font-weight: 700; color: var(--white);
}
.footer-logo-text span { color: var(--gold-light); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,0.06); display: flex;
  align-items: center; justify-content: center;
  transition: all 0.3s; color: rgba(255,255,255,0.5);
}
.footer-social a:hover { background: var(--gold); color: var(--white); }
.footer-social a svg { width: 16px; height: 16px; fill: currentColor; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,0.4); font-size: 0.78rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--navy); padding: 80px 60px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(212,160,18,0.1) 0%, transparent 70%);
}
.cta-banner h2 {
  font-family: 'Poppins', sans-serif; font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700; color: var(--white); margin-bottom: 16px; position: relative;
}
.cta-banner p {
  color: rgba(255,255,255,0.65); font-size: 1.02rem;
  max-width: 550px; margin: 0 auto 32px; line-height: 1.8; position: relative;
}
.cta-banner .btn-primary { position: relative; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  section { padding: 80px 30px; }
  .navbar { padding: 16px 30px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .leader-card { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .vision-mission { grid-template-columns: 1fr; }
  .vm-card:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-header { padding: 140px 30px 60px; }
}
@media (max-width: 768px) {
  .navbar { padding: 14px 20px; overflow: hidden; }
  .navbar.scrolled, .navbar.solid { padding: 12px 20px; }
  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: flex; flex-direction: column; justify-content: center; z-index: 1001; }
  .hero-trust-strip { display: none !important; }
  .hero-badge { font-size: 0.65rem !important; padding: 8px 20px !important; margin-bottom: 12px !important; }
  .hero h1 { font-size: 1.75rem !important; line-height: 1.25 !important; margin-bottom: 12px !important; }
  .hero p { font-size: 0.85rem !important; line-height: 1.6 !important; margin-bottom: 24px !important; padding: 0 10px; }
  .hero-buttons { flex-wrap: wrap; justify-content: center; gap: 12px !important; }
  .hero-buttons .btn-primary, .hero-buttons .btn-outline { padding: 12px 28px !important; font-size: 0.8rem !important; }
  section { overflow-x: hidden; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  
  
  .hero h1 { font-size: 2rem; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .vm-card { padding: 50px 30px; }
  .page-header { padding: 120px 20px 50px; }

  /* Center all content on mobile */
  section { text-align: center; }
  .hero-content { text-align: center; }
  .about-content, .about-content h3, .about-content p { text-align: center; }
  .section-label { text-align: center; }
  .service-card, .why-card { text-align: center; }
  .cta-banner { padding: 60px 20px; }
  .vm-card { text-align: center; }
  .contact-info, .contact-details, .contact-item { text-align: center; }
  .contact-form-wrapper { text-align: left; }
  .leader-info { text-align: center; }
  .footer { text-align: center; }
  .footer-grid { text-align: center; }
  .footer-about, .footer-about p { text-align: center; }
  .footer-logo { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-col { text-align: center; }
  .footer-col ul { display: flex; flex-direction: column; align-items: center; }

  /* Leadership section stacks on mobile */
  .leadership-section { padding: 70px 20px !important; }
  .leader-grid { grid-template-columns: 1fr !important; gap: 30px !important; text-align: center; }
  .leader-grid img { max-width: 280px; margin: 0 auto; }
  .leader-grid h3, .leader-grid p { text-align: center; }
  .credentials-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
}
