/* ===== GOVINDA SAFETY NETS - MAIN STYLESHEET ===== */
/* Color Palette: Navy Blue (#1a2f5a) + Gold (#c9a227) */

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

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #1a2f5a;
  --navy-dark: #0f1c38;
  --navy-mid: #243b6e;
  --navy-light: #2e4a87;
  --gold: #c9a227;
  --gold-light: #e8c44a;
  --gold-dark: #a07d1a;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --light-gray: #eef0f5;
  --text-dark: #1a1a2e;
  --text-mid: #444466;
  --text-light: #7777aa;
  --shadow-sm: 0 2px 12px rgba(26,47,90,0.10);
  --shadow-md: 0 8px 32px rgba(26,47,90,0.16);
  --shadow-lg: 0 20px 60px rgba(26,47,90,0.22);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy-dark);
  color: var(--gold-light);
  font-size: 0.82rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(201,162,39,0.3);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a {
  color: var(--gold-light);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.topbar a:hover { color: var(--white); }
.topbar-left, .topbar-right { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

/* ===== HEADER / NAVBAR ===== */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
nav.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 64px;
  width: auto;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}
.nav-brand-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.2;
  font-weight: 700;
}
.nav-brand-text span {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
  transform: translateX(-50%);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 60%; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::before {
  content: '▾';
  margin-left: 4px;
  font-size: 0.75rem;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-top: 3px solid var(--gold);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  color: var(--text-dark);
  font-size: 0.8rem;
  padding: 8px 10px;
  border-radius: 6px;
  display: block;
  transition: var(--transition);
  font-weight: 400;
}
.dropdown-menu a:hover { background: var(--light-gray); color: var(--navy); }
.dropdown-menu a::after { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
  background: transparent;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--navy-dark);
  border-top: 2px solid var(--gold);
  padding: 12px 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.mobile-nav.open { max-height: 600px; }
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  padding: 10px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold); background: rgba(201,162,39,0.08); padding-left: 32px; }
.mobile-nav .mobile-sub { font-size: 0.8rem; padding-left: 40px; color: rgba(255,255,255,0.6); }
.mobile-nav .mobile-sub:hover { color: var(--gold-light); }

/* ===== CONTAINER ===== */
.container { width: min(1200px, 95vw); margin: 0 auto; }

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero_banner.png') center/cover no-repeat;
  filter: brightness(0.35);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,20,45,0.92) 0%, rgba(26,47,90,0.7) 50%, rgba(10,20,45,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,0.18);
  border: 1px solid rgba(201,162,39,0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown 0.7s ease;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero h1 span { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 18px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-desc {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 56px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.5s both;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.hero-video-preview {
  position: absolute;
  right: 5%;
  bottom: 60px;
  width: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
  animation: fadeInRight 1s ease 0.6s both;
}
.hero-video-preview video { width: 100%; display: block; }
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:translateX(0); } }

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(201,162,39,0.15);
  animation: float 8s infinite ease-in-out;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-30px) scale(1.1); opacity: 0.6; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: 'Outfit', sans-serif;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  box-shadow: 0 6px 24px rgba(201,162,39,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201,162,39,0.55);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-sm { padding: 10px 20px; font-size: 0.83rem; }
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(37,211,102,0.5); }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: rgba(201,162,39,0.12);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(201,162,39,0.25);
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.25;
}
.section-header h2 span { color: var(--gold-dark); }
.section-header p {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 14px auto 0;
}
.divider .line { width: 60px; height: 2px; background: var(--light-gray); }
.divider .dot { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; }

/* ===== SECTION COMMON ===== */
section { padding: 80px 0; }
.bg-light { background: var(--off-white); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-dark { background: var(--navy-dark); color: var(--white); }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(26,47,90,0.08);
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-card.featured {
  border: 2px solid var(--gold);
}
.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 2;
}
.service-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-img .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,45,0.6) 0%, transparent 50%);
}
.service-card-icon {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.service-card-body { padding: 22px; }
.service-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}
.service-card-body p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.service-card-link:hover { color: var(--gold-dark); gap: 10px; }

/* ===== PLACEHOLDER SERVICE IMG ===== */
.service-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  gap: 8px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--gold);
}
.service-img-placeholder span { font-size: 0.75rem; color: rgba(255,255,255,0.6); font-family: 'Outfit'; }

/* ===== WHY CHOOSE US ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  transform: translateY(-5px);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.feature-card p { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ===== VIDEO SECTION ===== */
.video-section { background: var(--off-white); }
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(26,47,90,0.08);
}
.video-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.video-card video { width: 100%; display: block; max-height: 220px; object-fit: cover; }
.video-card-info { padding: 16px 18px; }
.video-card-info h4 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.video-card-info p { font-size: 0.8rem; color: var(--text-mid); }

/* ===== LOCATIONS SECTION ===== */
.locations-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.location-group h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.location-group h3::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--gold);
  border-radius: 2px;
  display: inline-block;
}
.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--light-gray);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 50px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.location-tag:hover {
  background: var(--navy);
  color: var(--gold-light);
  border-color: var(--gold);
}
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--gold);
  margin-top: 28px;
}
.map-embed iframe { width: 100%; height: 300px; display: block; border: none; }

/* ===== TESTIMONIALS ===== */
.testimonials-slider { overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 24px;
  animation: slide 30s linear infinite;
}
.testimonials-track:hover { animation-play-state: paused; }
.testimonial-card {
  min-width: 340px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  flex-shrink: 0;
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; }
.testimonial-card p { font-size: 0.88rem; color: rgba(255,255,255,0.8); line-height: 1.75; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-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-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.author-loc { font-size: 0.77rem; color: rgba(255,255,255,0.5); }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,162,39,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px 0;
}
.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 14px;
}
.cta-content h2 span { color: var(--gold); }
.cta-content p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo img { height: 56px; border-radius: 50%; border: 2px solid var(--gold); }
.footer-about p { font-size: 0.85rem; line-height: 1.8; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.social-btn:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before { content: '›'; color: var(--gold); font-size: 1rem; }
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.83rem;
}
.footer-contact-item .icon {
  width: 32px;
  height: 32px;
  background: rgba(201,162,39,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.9rem;
}
.footer-contact-item .details { color: rgba(255,255,255,0.7); }
.footer-contact-item .details strong { display: block; color: var(--white); font-size: 0.85rem; margin-bottom: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: var(--gold); }

/* ===== FLOATING WHATSAPP ===== */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  animation: pulse 2s infinite;
}
.float-whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
  transition: var(--transition);
}
.float-whatsapp a:hover { transform: scale(1.12); box-shadow: 0 12px 40px rgba(37,211,102,0.65); }
.float-call {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 999;
}
.float-call a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.float-call a:hover { background: var(--gold); color: var(--navy-dark); transform: scale(1.1); }
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,162,39,0.12) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 600px; }

/* ===== SERVICE INNER PAGE ===== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold);
}
.service-detail-img img { width: 100%; height: 380px; object-fit: cover; display: block; }
.service-detail-img video { width: 100%; max-height: 380px; object-fit: cover; display: block; }
.service-detail-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.service-detail-content h2 span { color: var(--gold-dark); }
.service-detail-content p { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; font-size: 0.95rem; }
.service-features-list { margin: 24px 0; }
.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
}
.service-features-list li::before {
  content: '✓';
  color: var(--gold-dark);
  font-weight: 700;
  flex-shrink: 0;
  background: rgba(201,162,39,0.1);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-stack {
  position: relative;
  height: 480px;
}
.about-img-main {
  width: 85%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: 24px;
  right: 0;
  background: var(--navy);
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-img-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.about-img-badge .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.about-content h2 span { color: var(--gold-dark); }
.about-content p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.about-stat { text-align: center; }
.about-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
}
.about-stat .lbl { font-size: 0.75rem; color: var(--text-mid); }
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 18px;
  border: 4px solid var(--gold);
}
.team-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card .role { font-size: 0.82rem; color: var(--gold-dark); font-weight: 600; margin-bottom: 10px; }
.team-card p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.7; }

/* ===== GALLERY PAGE ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img, .gallery-item video {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(10,20,45,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.gallery-overlay span { color: var(--gold); font-size: 0.78rem; }

/* Gallery filter */
.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--light-gray);
  background: var(--white);
  color: var(--text-mid);
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  color: var(--gold-light);
  border-color: var(--navy);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-form p { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,47,90,0.08);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 18px; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.contact-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateX(4px); }
.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-card-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.contact-card-info a, .contact-card-info p { font-size: 0.85rem; color: var(--text-mid); display: block; }
.contact-card-info a:hover { color: var(--gold-dark); }
.form-success {
  display: none;
  background: rgba(37,211,102,0.1);
  border: 1px solid #25D366;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #128C7E;
  font-size: 0.88rem;
  margin-top: 16px;
  align-items: center;
  gap: 10px;
}
.form-success.show { display: flex; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-video-preview { width: 260px; }
}
@media (max-width: 900px) {
  .service-detail { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .locations-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .hero-video-preview { display: none; }
  .topbar { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  section { padding: 56px 0; }
  .hero { min-height: 75vh; }
  .hero-stats { gap: 20px; }
  .about-img-stack { height: 300px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .hero-stat .num { font-size: 1.7rem; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ===== INNER SERVICE PAGE SPECIFIC ===== */
.service-breadcrumb-wrap { background: var(--off-white); border-bottom: 1px solid var(--light-gray); padding: 12px 0; }
.related-services { background: var(--off-white); }
.related-services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.related-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}
.related-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.related-card img, .related-card .related-placeholder {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}
.related-card-info { padding: 14px 16px; }
.related-card-info h4 { font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.related-card-info a { font-size: 0.78rem; color: var(--gold-dark); font-weight: 600; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.back-to-top.show { opacity: 1; pointer-events: all; }
.back-to-top button {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top button:hover { background: var(--gold); color: var(--navy-dark); }

/* Colorful Glow Text */
.glow-text {
  background: linear-gradient(90deg, #ff007a, #7a00ff, #00e1ff, #ff007a);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  text-decoration: none;
  animation: gradientFlow 4s linear infinite;
  position: relative;
  display: inline-block;
}
.glow-text::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: inherit;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  filter: blur(6px);
  opacity: 0.8;
}
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
