/* ============================================================
   BASE & RESET
============================================================ */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #e5e7eb;
  background: #0b1220;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================================
   GLOBAL LAYOUT STRUCTURE
============================================================ */
.section {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

.divider {
  height: 90px;
  background: linear-gradient(to bottom, transparent, rgba(15,23,42,0.8), transparent);
  margin: 1.2rem 0 0;
}

/* ============================================================
   NAVBAR
============================================================ */
header.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148,163,184,0.25);
  animation: fadeDown 0.7s ease forwards;
  transition: all 0.35s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.nav-left {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.logo-img {
  height: 54px;
  width: auto;
  transition: transform 0.45s ease;
}

.navbar.shrink .logo-img {
  transform: scale(0.94);
}

.tagline {
  font-size: 0.72rem;
  color: #9ca3af;
  letter-spacing: 0.02em;
  line-height: 1.35;
  margin-left: 6px;
  margin-top: 4px;
  opacity: 0;
  transform: translateY(8px);
  animation: taglineFade 0.8s ease forwards 0.5s;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-link {
  position: relative;
  padding-bottom: 0.2rem;
  letter-spacing: 0.3px;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #22c55e;
  transform: translateX(-50%);
  transition: width 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.nav-link:hover {
  color: #34d399;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: #22c55e;
  font-weight: 600;
}

.navbar.shrink {
  padding: 0.35rem 0 !important;
  background: rgba(15, 23, 42, 0.85);
  border-bottom-color: rgba(148,163,184,0.15);
  backdrop-filter: blur(18px);
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #22c55e;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.25s ease;
}

.nav-cta:hover {
  background: #22c55e;
  color: #022c22;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(34,197,94,0.45);
}

@keyframes taglineFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  position: relative;
  overflow: visible;
  padding: 5.5rem 0 6rem;
  background: radial-gradient(circle at top left, #0ea5e9 0, #020617 45%, #020617 100%);
}

.hero-bg-glow {
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(circle at 10% 0%, rgba(56,189,248,0.25), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(34,197,94,0.22), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
  z-index: -1;
  transform: translateY(0);
  transition: transform 0.2s ease-out;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: 2.65rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-title span {
  color: #22c55e;
}

.hero-subtitle {
  font-size: 1rem;
  color: #cbd5f5;
  max-width: 34rem;
  margin-bottom: 1.6rem;
  line-height: 1.65;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hero-note {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-top: 1rem;
}

/* ============================================================
   HERO SLIDER
============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 360px;
  border-radius: 1.6rem;
  overflow: hidden;
  background: #020617;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.9);
  opacity: 0;
  transform: translateY(40px);
  animation: heroRise 0.9s ease forwards 0.55s;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.6rem;
}

.overlay {
  position: absolute;
  bottom: 10%;
  left: 8%;
  max-width: 70%;
  color: #ffffff;
  z-index: 3;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.55);
}

.overlay h1 {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
}

.slider-arrows {
  position: absolute;
  bottom: 4%;
  right: 4%;
  display: flex;
  gap: 0.6rem;
  z-index: 4;
}

.arrow-btn {
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  padding: 0.6rem 0.9rem;
  font-size: 1.4rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.arrow-btn:hover {
  background: rgba(0, 0, 0, 0.65);
}

.slider-controls {
  position: absolute;
  bottom: 4%;
  left: 8%;
  display: flex;
  gap: 0.5rem;
  z-index: 4;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
}

.dot.active {
  background: #ffffff;
}

/* ============================================================
   SECTION HEADERS
============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.section-kicker {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.section-subtitle {
  font-size: 0.92rem;
  color: #9ca3af;
  max-width: 34rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   SERVICES GRID
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
  margin-top: 1.7rem;
}

.service-card {
  background: rgba(15,23,42,0.96);
  border-radius: 1.2rem;
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(51,65,85,0.9);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.6);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateY(40px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 26px 50px rgba(15,23,42,0.9);
  border-color: #22c55e;
}

/* ============================================================
   ICON STYLE (Option D: image + glow + border)
============================================================ */
.service-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  margin-bottom: 0.8rem;

  border-radius: 14px;
  border: 1px solid rgba(34,197,94,0.45);
  filter: drop-shadow(0 6px 14px rgba(34,197,94,0.45));
}

/* ============================================================
   SERVICE TEXT
============================================================ */
.service-title {
  font-size: 1.05rem;
  font-weight: 600;
}

.service-text {
  font-size: 0.88rem;
  color: #9ca3af;
  line-height: 1.55;
}

/* ============================================================
   REUSABLE UI COMPONENTS
============================================================ */
.btn-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #022c22;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 14px 30px rgba(22, 163, 74, 0.35);
  transition: all 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 40px rgba(22,163,74,0.5);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid rgba(255,255,255,0.35);
  color: #f8fafc;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-2px);
}

.badge {
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15,23,42,0.6);
}

.panel {
  background: radial-gradient(circle at top, rgba(15,23,42,0.9), #020617 55%, #020617 100%);
  border-radius: 1.6rem;
  border: 1px solid rgba(148,163,184,0.35);
  box-shadow: 0 28px 70px rgba(15,23,42,0.7);
  padding: 2.8rem 2.2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.body-lock {
  overflow: hidden;
}

/* ============================================================
   MODAL OVERLAY
============================================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 23, 0.75);
  backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  z-index: 9999;
}

.modal-overlay.active {
  display: flex;
}

/* ============================================================
   MODAL BOX
============================================================ */
.modal-content {
  background: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  position: relative;
}

.modal-title {
  font-size: 1.6rem;
  color: #f8fafc;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* ============================================================
   CLOSE BUTTON
============================================================ */
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: #f1f5f9;
}

/* ============================================================
   TABS
============================================================ */
.report-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.report-tab {
  padding: 0.6rem 1.2rem;
  background: rgba(148, 163, 184, 0.15);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 8px;
  color: #e2e8f0;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.95rem;
}

.report-tab.active {
  background: #22c55e;
  color: #022c22;
  border-color: #22c55e;
}

/* ============================================================
   PANELS + FADE ANIMATION
============================================================ */
.report-panel {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.report-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   REPORT CARD
============================================================ */
.report-card {
  background: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 14px;
  padding: 1.8rem;
  color: #e2e8f0;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.report-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  color: #f8fafc;
}

.report-period {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 1.2rem;
}

.report-section {
  margin-bottom: 1.4rem;
}

.report-section h4 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: #cbd5e1;
}

.report-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.report-section li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* ============================================================
   RESPONSIVE (MODAL)
============================================================ */
@media (max-width: 600px) {
  .modal-content {
    padding: 1.4rem;
  }

  .report-tabs {
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .report-tab {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

/* ============================================================
   MOBILE MENU — PREMIUM VERSION
============================================================ */
/* HAMBURGER BUTTON */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 1rem;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 26px;
  height: 2px;
  background: #e5e7eb;
  border-radius: 2px;
  transition: all 0.35s ease;
}

/* Hamburger → X animation */
.mobile-menu-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* OVERLAY */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* MOBILE MENU DRAWER */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 72vw;
  max-width: 320px;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  background: rgba(15,23,42,0.97);
  backdrop-filter: blur(12px);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-left: 1px solid rgba(148,163,184,0.25);
  z-index: 999;
  transform: translateX(100%);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}

.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}

/* CLOSE BUTTON */
.mobile-menu-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  font-size: 1.8rem;
  color: #e5e7eb;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.mobile-menu-close:hover {
  opacity: 0.7;
}

/* NAV LINKS INSIDE MENU */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 100%;
}

.mobile-nav-links a {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.05rem;
  color: #f1f5f9;
  letter-spacing: 0.3px;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(148,163,184,0.15);
  transition: color 0.25s ease;
}

.mobile-nav-links a:hover {
  color: #22c55e;
}

/* RESPONSIVE BEHAVIOR (MOBILE MENU) */
@media (max-width: 900px) {
  .mobile-menu-btn {
    display: flex;
  }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS (GLOBAL)
============================================================ */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-slider {
    max-width: 100%;
    height: 260px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-slider {
    height: 220px;
  }

  .overlay {
    max-width: 85%;
    left: 6%;
    bottom: 8%;
  }
}

/* ============================================================
   UTILITIES
============================================================ */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }


/* ===========================
   ABOUT SECTION — BALANCED VERSION
   =========================== */

#about {
  position: relative;
  overflow: hidden;
}

/* Ultra‑subtle geometric grid (no glow) */
#about::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  width: 140%;
  height: 160%;
  transform: translateX(-50%);

  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;

  pointer-events: none;
  z-index: 0;
}

/* Keep content above background */
#about .section-header {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

/* Title + premium divider */
#about .section-title {
  position: relative;
  padding-bottom: 0.6rem;
}

#about .section-title::after {
  content: "";
  width: 48px;
  height: 2px;
  background: #22C55E;
  display: block;
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

/* Subtitle refinement */
#about .section-subtitle {
  margin-top: 1rem;
  line-height: 1.7;
  color: #d1d5db;
}

/* Bullet list refinement */
.about-points {
  margin-top: 1.4rem;
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.7;
  list-style: none;
  padding: 0;
}

.about-points li {
  margin-bottom: 0.4rem;
}

/* ============================================================
   CONTACT — FULLY MATCHED TO GLOBAL LAYOUT SYSTEM
============================================================ */

#contact {
  padding: 4rem 0;               /* same as .section */
  background: #0b1220;           /* same as body + other sections */
  position: relative;
  z-index: 1;
}

/* Use the global section-header system */
#contact .section-header {
  text-align: center;
  margin-bottom: 2.2rem;         /* identical to other sections */
}

/* Use global kicker */
#contact .section-kicker {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.4rem;
}

/* Use global title */
#contact .section-title {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

/* Use global subtitle */
#contact .section-subtitle {
  font-size: 0.92rem;
  color: #9ca3af;
  max-width: 34rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* CTA button — consistent with your primary button system */
#contact .contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #022c22;
  font-weight: 600;
  border-radius: 999px;
  font-size: 0.92rem;
  box-shadow: 0 14px 30px rgba(22, 163, 74, 0.35);
  transition: all 0.25s ease;
  margin-top: 1.2rem;
}

#contact .contact-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 40px rgba(22,163,74,0.5);
}

/* Micro reassurance note */
#contact .contact-note {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: #9ca3af;
  opacity: 0.9;
}

/* CONTACT FORM SECTION */
.contact-form {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.9rem;
  color: #cbd5e1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(148,163,184,0.25);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  color: #f1f5f9;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #22c55e;
  background: rgba(255,255,255,0.08);
}

.contact-form textarea {
  resize: vertical;
}

/* Fix for dropdown option visibility on dark themes */
.contact-form select {
  color: #f1f5f9;
  background: rgba(255,255,255,0.05);
}

.contact-form select option {
  color: #0b1220;          /* dark text */
  background: #ffffff;     /* light background */
}

/* Success State */
.form-success {
  text-align: center;
  padding: 2rem 1rem;
  animation: fadeIn 0.5s ease forwards;
}

.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #22c55e;
  color: #022c22;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
  box-shadow: 0 10px 30px rgba(34,197,94,0.4);
}

/* Loading State */
.btn-loading {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
}

.btn-loading::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

/* Animations */
@keyframes spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Field-level validation */
input.error, select.error, textarea.error {
  border-color: #ef4444 !important;
  background: rgba(239,68,68,0.08) !important;
}

.validation-msg {
  font-size: 0.8rem;
  color: #ef4444;
  margin-top: 0.25rem;
}

/* ============================================================
   CONTACT FORM — ANIMATIONS & STATES (SAFE INTEGRATION)
============================================================ */

/* Fade-out for form */
.contact-form.fade-out {
  opacity: 1;
  animation: contactFadeOut 0.3s ease forwards;
}

@keyframes contactFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-6px); }
}

/* Fade-in for success box */
#form-success.fade-in {
  opacity: 0;
  animation: contactFadeIn 0.4s ease forwards;
}

@keyframes contactFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Enhanced validation (does not conflict with existing) */
.contact-form .error {
  border-color: #ef4444 !important;
}

.contact-form .validation-msg {
  font-size: 0.82rem;
  color: #ef4444;
  margin-top: 0.25rem;
}

/* Button loading spinner (namespaced to avoid conflict) */
.contact-form .btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}

.contact-form .btn-loading::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  transform: translateY(-50%);
  animation: contactBtnSpin 0.7s linear infinite;
}

@keyframes contactBtnSpin {
  to { transform: translateY(-50%) rotate(360deg); }
}

/* ============================================================
   CONTACT PAGE — SPLIT INFO BLOCKS (Option C)
============================================================ */

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  margin-top: 1.6rem;
}

.contact-info-card {
  background: rgba(15,23,42,0.85);
  border: 1px solid rgba(148,163,184,0.25);
  border-radius: 14px;
  padding: 1.4rem 1.2rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  border-color: #22c55e;
}

.contact-info-icon {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.contact-info-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #e2e8f0;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.55;
}

.contact-info-card a {
  color: #38bdf8;
  transition: color 0.25s ease;
}

.contact-info-card a:hover {
  color: #22c55e;
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(34,197,94,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34,197,94,0.05);
  box-shadow: 0 6px 14px rgba(34,197,94,0.35);
  margin-bottom: 0.8rem;
}

.contact-icon-svg {
  width: 26px;
  height: 26px;
  fill: #22c55e;
  opacity: 0.9;
}

.contact-info-card p strong {
  color: #e2e8f0;
  font-weight: 600;
  margin-right: 4px;
}

.map-embed {
  margin-top: 2.5rem;
  width: 100%;
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,0.25);
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

.cta-subtext {
  max-width: 520px;
  margin: 0.6rem auto 1.6rem;
  color: #94a3b8;
  font-size: 1rem;
}

.cta-btn {
  padding: 0.9rem 2.2rem;
  font-size: 1.05rem;
}

/* Responsive 2-column collapse */
.contact-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 768px) {
  .contact-two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Map styling */
.map-embed {
  margin-top: 2.5rem;
  width: 100%;
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,0.25);
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

/* CTA text */
.cta-subtext {
  max-width: 520px;
  margin: 0.6rem auto 1.6rem;
  color: #94a3b8;
  font-size: 1rem;
}

.cta-btn {
  padding: 0.9rem 2.2rem;
  font-size: 1.05rem;
}

/* ============================
   FOOTER — BASE LAYOUT
   ============================ */
footer {
  background: #0f172a;
  margin-top: 4rem;
  padding: 6rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

/* Soft top gradient divider */
footer::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom, rgba(148,163,184,0.12), transparent);
  pointer-events: none;
}

/* Optional noise texture overlay */
footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/noise.png"); /* adjust path if needed */
  opacity: 0.08;
  pointer-events: none;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.footer-inner {
  max-width: 1280px; /* matches your site’s layout width */
  margin: 0 auto;
  padding: 0 2rem;   /* horizontal breathing space */
}


/* ============================
   BRAND COLUMN
   ============================ */
.footer-brand {
  max-width: 260px;
}

.footer-logo {
  height: 54px;
  margin-bottom: 0.8rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 1.4rem;
}

/* ============================
   SOCIAL ICONS
   ============================ */
.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 28px;
  height: 28px;
  display: inline-block;
  border-radius: 8px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(148,163,184,0.25);
  backdrop-filter: blur(4px);
  transition: all 0.28s cubic-bezier(0.22, 1, 0.36, 1);

  mask-size: 60%;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-type: luminance;

  -webkit-mask-size: 60%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-type: luminance;
}

/* Icon masks */
.social-icon.linkedin {
  mask-image: url("../icons/linkedin.svg");
  -webkit-mask-image: url("../icons/linkedin.svg");
}

/* Social Media - Temporary Block =====================
.social-icon.facebook {
  mask-image: url("../icons/facebook.svg");
  -webkit-mask-image: url("../icons/facebook.svg");
}

.social-icon.youtube {
  mask-image: url("../icons/youtube.svg");
  -webkit-mask-image: url("../icons/youtube.svg");
}

.social-icon.twitter {
  mask-image: url("../icons/twitter.svg");
  -webkit-mask-image: url("../icons/twitter.svg");
}

======================================================== */>

/* Hover glow */
.social-icon:hover {
  background: #22c55e;
  border-color: #22c55e;
  transform: translateY(-3px) scale(1.06);
  box-shadow:
    0 0 10px rgba(34, 197, 94, 0.45),
    0 0 20px rgba(34, 197, 94, 0.30),
    0 6px 14px rgba(0, 0, 0, 0.35);
}

/* ============================
   QUICK LINKS + CONTACT
   ============================ */
.footer-column h4 {
  font-size: 1rem;
  color: #e2e8f0;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  display: inline-block; /* underline matches title width */
  padding-bottom: 0.6rem;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  left: 0;          /* left aligned */
  bottom: 0;
  width: 100%;      /* matches title width exactly */
  height: 3px;
  background: #22c55e;
  border-radius: 4px;
  box-shadow:
    0 0 10px rgba(34, 197, 94, 0.55),
    0 0 18px rgba(34, 197, 94, 0.35);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.6rem;
}

.footer-column ul li a {
  color: #cbd5e1;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.footer-column ul li a:hover {
  color: #38bdf8;
  letter-spacing: 0.2px;
}

/* Contact text */
.footer-contact p {
  color: #9ca3af;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

/* ============================
   COPYRIGHT
   ============================ */
.footer-bottom {
  text-align: center;
  margin-top: 2.8rem;
  color: #64748b;
  font-size: 0.85rem;
}

/* ============================
   MOBILE OPTIMIZATION
   ============================ */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 3rem;
  }
}

@media (max-width: 540px) {
  footer {
    padding: 3rem 0 2rem;
  }

  .footer-brand {
    text-align: center;
    margin: 0 auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-column {
    text-align: center;
  }

  .footer-column ul li {
    margin-bottom: 0.8rem;
  }

  .social-icon {
    width: 32px;
    height: 32px;
  }

  .footer-bottom {
    margin-top: 2.2rem;
  }
}

/* ============================================================
   LEADERSHIP SECTION — FULLY COMPATIBLE WITH EXISTING SYSTEM
============================================================ */

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  margin-top: 2.2rem;
}

.leader-card {
  background: rgba(15,23,42,0.85);
  border: 1px solid rgba(148,163,184,0.25);
  border-radius: 1.2rem;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 14px 34px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.leader-card:hover {
  transform: translateY(-6px);
  border-color: #22c55e;
}

.leader-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #f8fafc;
}

.leader-title {
  font-size: 0.95rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.leader-bio {
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.leader-quote {
  font-size: 0.9rem;
  font-style: italic;
  color: #94a3b8;
  border-left: 3px solid #22c55e;
  padding-left: 0.8rem;
  margin-top: 0.6rem;
}

/* Responsive collapse */
@media (max-width: 900px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}
