/* ============================================================
   NAVJEEVAN NASHA MUKTI KENDRA — style.css
   ============================================================ */

/* ── ROOT VARIABLES ─────────────────────────────────────── */
:root {
  --primary-blue:       #0B3C6D;
  --primary-blue-dark:  #072d52;
  --primary-blue-light: #1a5fa8;
  --background-light:   #F4F7FB;
  --white:              #FFFFFF;
  --accent-red:         #D62828;
  --success-green:      #2E7D32;
  --highlight-orange:   #F59E0B;
  --text-dark:          #1F2937;
  --text-light:         #6B7280;
  --border-color:       #E5EAF2;
  --shadow-sm:          0 2px 8px rgba(11, 60, 109, 0.08);
  --shadow-md:          0 6px 24px rgba(11, 60, 109, 0.12);
  --shadow-lg:          0 16px 48px rgba(11, 60, 109, 0.18);
  --radius:             12px;
  --radius-lg:          20px;
  --transition:         all 0.3s ease;
  --font-display:       'Lora', serif;
  --font-body:          'Poppins', sans-serif;
}

/* ── BASE ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--primary-blue);
  line-height: 1.2;
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; }

/* ── TOPBAR ─────────────────────────────────────────────── */
.topbar {
  background: var(--primary-blue-dark);
  padding: 7px 0;
  font-size: 0.82rem;
}
.topbar-link {
  color: rgba(255,255,255,0.82);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}
.topbar-link:hover { color: var(--highlight-orange); }
.topbar-link.whatsapp-link:hover { color: #25D366; }
.topbar-badge {
  background: rgba(255,255,255,0.12);
  color: var(--highlight-orange);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ── NAVBAR ─────────────────────────────────────────────── */
.main-navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  /* padding: 10px 0; */
  transition: var(--transition);
  z-index: 1000;
}
.main-navbar.scrolled {
  padding: 6px 0;
  box-shadow: var(--shadow-md);
}

.nav-logo {
  width:84px;
  /* height: 54px; */
  object-fit: contain;
  border-radius: 8px;
  transition: var(--transition);
}
.main-navbar.scrolled .nav-logo { width: 44px; height: 44px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-blue);
}
.brand-sub {
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-navbar .nav-link {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: 8px;
  position: relative;
}
.main-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--primary-blue);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active { color: var(--primary-blue); }
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after { transform: scaleX(1); }

.btn-cta-nav {
  background: var(--accent-red);
  color: var(--white) !important;
  border-radius: 30px;
  padding: 9px 22px !important;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  box-shadow: 0 3px 12px rgba(214, 40, 40, 0.3);
}
.btn-cta-nav:hover {
  background: #b71c1c;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(214, 40, 40, 0.4);
  color: var(--white) !important;
}

/* Hamburger Icon */
.navbar-toggler {
  border: none;
  padding: 6px 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  outline: none;
  box-shadow: none !important;
}
.toggler-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-blue);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── SECTION UTILITIES ──────────────────────────────────── */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 12px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--accent-red);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--accent-red); }

.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

.divider-line {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-red), var(--highlight-orange));
  border-radius: 2px;
  margin: 16px 0 24px;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-primary-custom {
  background: var(--primary-blue);
  color: var(--white);
  border: 2px solid var(--primary-blue);
  border-radius: 30px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-custom:hover {
  background: var(--primary-blue-dark);
  border-color: var(--primary-blue-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent-custom {
  background: var(--accent-red);
  color: var(--white);
  border: 2px solid var(--accent-red);
  border-radius: 30px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(214,40,40,0.25);
}
.btn-accent-custom:hover {
  background: #b71c1c;
  border-color: #b71c1c;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(214,40,40,0.35);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 30px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary-blue);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── HERO SECTION ───────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-blue);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/img-with-bg-building.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(7,45,82,0.96) 0%,
    rgba(11,60,109,0.88) 50%,
    rgba(26,95,168,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 100px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--highlight-orange);
  backdrop-filter: blur(8px);
  margin-bottom: 20px;
  animation: fadeInDown 0.7s ease both;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--highlight-orange);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(1.2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-title .highlight { color: var(--highlight-orange); }
.hero-title .accent    { color: #93c5fd; }

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s 0.35s ease both;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeInUp 0.8s 0.5s ease both;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.15);
  animation: fadeInUp 0.8s 0.65s ease both;
}
.hero-stat-item {}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--highlight-orange);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero Image Card */
.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: fadeInRight 0.9s 0.3s ease both;
}
.hero-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,45,82,0.7) 0%, transparent 60%);
}
.hero-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-image-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--success-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero-image-badge-text strong {
  display: block;
  font-size: 1rem;
  color: var(--primary-blue);
  font-weight: 700;
}
.hero-image-badge-text small { color: var(--text-light); font-size: 0.78rem; }

/* ── TRUST BAR ──────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
  box-shadow: var(--shadow-sm);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.trust-item-icon {
  width: 40px;
  height: 40px;
  background: var(--background-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1rem;
  flex-shrink: 0;
}
.trust-item-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.2;
}
.trust-item-text small { font-size: 0.75rem; color: var(--text-light); }

/* ── ABOUT SECTION ──────────────────────────────────────── */
.about-section { background: var(--white); }

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  height: 460px;
  object-fit: cover;
}
.about-float-card {
  position: absolute;
  bottom: -24px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
  border-left: 4px solid var(--success-green);
}
.about-float-card-icon {
  font-size: 1.6rem;
  color: var(--success-green);
}
.about-float-card-text strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary-blue);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
}
.about-float-card-text small { color: var(--text-light); font-size: 0.78rem; }

.about-badge-card {
  position: absolute;
  top: -16px;
  left: -16px;
  background: var(--accent-red);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge-card .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge-card .label { font-size: 0.7rem; letter-spacing: 0.06em; opacity: 0.9; }

.feature-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.feature-check-icon {
  width: 26px;
  height: 26px;
  background: rgba(46,125,50,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success-green);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-check-text {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.5;
}

/* ── SERVICES SECTION ───────────────────────────────────── */
.services-section { background: var(--background-light); }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border-color);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11,60,109,0.15);
}

.service-card-icon-wrap {
  padding: 32px 28px 0;
}
.service-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: 0 6px 18px rgba(11,60,109,0.25);
}

.service-card-body { padding: 18px 28px 28px; }
.service-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-blue);
  font-family: var(--font-display);
  margin-bottom: 10px;
}
.service-card-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-red);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 16px;
}
.service-card-link:hover { gap: 10px; color: var(--accent-red); }

/* ── WHY US ─────────────────────────────────────────────── */
.why-section { background: var(--primary-blue); position: relative; overflow: hidden; }
.why-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  top: -200px; right: -200px;
  pointer-events: none;
}
.why-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  bottom: -150px; left: -100px;
  pointer-events: none;
}

.why-section .section-tag { color: var(--highlight-orange); }
.why-section .section-tag::before { background: var(--highlight-orange); }
.why-section .section-title { color: var(--white); }
.why-section .section-desc { color: rgba(255,255,255,0.7); max-width: 100%; }

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  height: 100%;
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}
.why-card-icon {
  width: 52px; height: 52px;
  background: rgba(245,158,11,0.15);
  border: 2px solid rgba(245,158,11,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--highlight-orange);
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.why-card h5 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--font-display);
}
.why-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.86rem;
  line-height: 1.6;
  margin: 0;
}

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-section { background: var(--background-light); }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  height: 100%;
  position: relative;
}
.testimonial-quote-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  opacity: 0.1;
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars {
  color: var(--highlight-orange);
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  display: block;
}
.testimonial-meta {
  font-size: 0.76rem;
  color: var(--text-light);
}

/* ── CTA SECTION ────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--accent-red) 0%, #9b1111 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -200px; right: -100px;
  pointer-events: none;
}

.cta-section h2 { color: var(--white); }
.cta-section p  { color: rgba(255,255,255,0.85); }

/* ── CONTACT PAGE ───────────────────────────────────────── */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  height: 100%;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-color);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--background-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 0.96rem;
  color: var(--text-dark);
  font-weight: 500;
}
.contact-info-value a {
  color: var(--primary-blue);
}
.contact-info-value a:hover { color: var(--accent-red); }

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}
.form-label-custom {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-control-custom {
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--background-light);
  transition: var(--transition);
  font-family: var(--font-body);
}
.form-control-custom:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(11,60,109,0.08);
}
.form-alert {
  display: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 0.88rem;
  margin-top: 12px;
}
.form-alert.success {
  background: rgba(46,125,50,0.1);
  border: 1px solid rgba(46,125,50,0.3);
  color: var(--success-green);
  display: block;
}
.form-alert.error {
  background: rgba(214,40,40,0.08);
  border: 1px solid rgba(214,40,40,0.2);
  color: var(--accent-red);
  display: block;
}

/* Map */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

/* ── ABOUT PAGE ─────────────────────────────────────────── */
.page-hero {
  background: var(--primary-blue);
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/about.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
}
.page-breadcrumb a { color: rgba(255,255,255,0.75); }
.page-breadcrumb a:hover { color: var(--highlight-orange); }
.page-breadcrumb .sep { opacity: 0.4; }
.page-breadcrumb .current { color: var(--highlight-orange); }

/* Team Card */
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  margin: 0 auto 16px;
}
.team-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-blue);
  margin-bottom: 4px;
}
.team-role { font-size: 0.8rem; color: var(--text-light); }

/* ── GALLERY PAGE ───────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,60,109,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--white); font-size: 1.8rem; }

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.active { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--accent-red); }

/* ── VIDEO SECTION ──────────────────────────────────────── */
.video-section { background: var(--primary-blue-dark); }
.video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.video-wrap video {
  width: 100%;
  display: block;
  max-height: 420px;
  object-fit: cover;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--primary-blue-dark);
  color: rgba(255,255,255,0.75);
  position: relative;
}
.footer-wave {
  line-height: 0;
  margin-bottom: -2px;
}
.footer-wave svg { width: 100%; height: 50px; display: block; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  padding: 4px;
}
.footer-brand-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}
.footer-brand-sub {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
}
.footer-desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-display);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}

.footer-links {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.87rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--highlight-orange); padding-left: 4px; }
.footer-links a i { font-size: 0.7rem; }

.footer-contact-list {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.footer-contact-list i {
  color: var(--highlight-orange);
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
}
.footer-contact-list a { color: rgba(255,255,255,0.75); }
.footer-contact-list a:hover { color: var(--highlight-orange); }

.footer-emergency-btn {
  background: var(--accent-red);
  color: var(--white) !important;
  border-radius: 30px;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(214,40,40,0.3);
}
.footer-emergency-btn:hover {
  background: #b71c1c;
  transform: translateY(-2px);
  color: var(--white) !important;
}

.social-icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.social-icon-btn.whatsapp { background: rgba(37,211,102,0.15); color: #25D366; }
.social-icon-btn.whatsapp:hover { background: #25D366; color: var(--white); }
.social-icon-btn.phone { background: rgba(11,60,109,0.3); color: #93c5fd; }
.social-icon-btn.phone:hover { background: var(--primary-blue-light); color: var(--white); }
.social-icon-btn.email { background: rgba(245,158,11,0.15); color: var(--highlight-orange); }
.social-icon-btn.email:hover { background: var(--highlight-orange); color: var(--white); }

.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 14px 0;
  margin-top: 32px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
}

/* ── WHATSAPP FLOAT ─────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(37,211,102,0.6);
}
.whatsapp-tooltip {
  position: absolute;
  right: 64px;
  background: var(--text-dark);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── BACK TO TOP ────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px; height: 46px;
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-blue-light); }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── COUNTER ────────────────────────────────────────────── */
.counter-section { background: var(--white); }
.counter-box {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius-lg);
  background: var(--background-light);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}
.counter-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: var(--white); }
.counter-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
  display: block;
}
.counter-num .plus { color: var(--accent-red); }
.counter-label {
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.counter-icon {
  font-size: 1.8rem;
  color: var(--primary-blue);
  opacity: 0.15;
  display: block;
  margin-bottom: 10px;
}

/* ── UTILITIES ──────────────────────────────────────────── */
.bg-light-custom { background: var(--background-light); }
.text-primary-custom { color: var(--primary-blue) !important; }
.text-accent { color: var(--accent-red) !important; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-image-card { margin-top: 40px; }
  .about-float-card { right: 0; bottom: -20px; }
  .about-badge-card { left: 0; }
}
@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }
  .hero-content { padding: 80px 0 60px; }
  .hero-stats { gap: 20px; }
  .topbar .col-md-4 { display: none; }
  .hero-cta-group .btn-outline-custom { display: none; }
}
@media (max-width: 576px) {
  .contact-form-card { padding: 24px 18px; }
  .about-float-card { position: static; margin-top: 16px; }
  .about-badge-card { position: static; margin-bottom: 12px; }
}
