﻿/* ============================================================
   GENEEDXX NIGERIA LIMITED â€” Premium Corporate Design System v3
   Deep Green + Navy + Gold Accent Â· Plus Jakarta Sans + Inter
   ============================================================ */

/* â”€â”€ Design Tokens â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  /* Brand Colors */
  --primary: #0B5D3B;
  --primary-dark: #07442C;
  --primary-darker: #052E1E;
  --primary-light: #148A5B;
  --primary-soft: rgba(11, 93, 59, 0.07);
  --primary-soft-2: rgba(11, 93, 59, 0.13);

  --navy: #082B45;
  --navy-dark: #061F32;
  --navy-soft: rgba(8, 43, 69, 0.07);

  --gold: #D4A437;
  --gold-light: #E9C766;
  --gold-dark: #BF8E27;
  --gold-soft: rgba(212, 164, 55, 0.10);

  /* Neutrals */
  --bg: #F4F7F5;
  --bg-alt: #EDF6F1;
  --bg-blue: #EFF5F8;
  --bg-warm: #FCFDFB;
  --white: #FFFFFF;
  --text: #15241C;
  --text-secondary: #4A5D52;
  --muted: #637168;
  --light-muted: #8E9C93;
  --border: #DDE6E0;
  --border-light: #E9EDEA;

  /* Dark surfaces */
  --dark: #061F32;
  --dark-2: #082B45;
  --dark-3: #0A3555;

  /* Semantic */
  --success: #0B5D3B;
  --danger: #C0392B;
  --warning: #D4A437;
  --info: #082B45;

  /* Elevation */
  --shadow-xs: 0 1px 3px rgba(6, 31, 50, 0.04);
  --shadow-sm: 0 2px 8px rgba(6, 31, 50, 0.06);
  --shadow: 0 4px 16px rgba(6, 31, 50, 0.08);
  --shadow-md: 0 8px 32px rgba(6, 31, 50, 0.10);
  --shadow-lg: 0 16px 48px rgba(6, 31, 50, 0.14);
  --shadow-xl: 0 24px 64px rgba(6, 31, 50, 0.18);

  /* Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 150ms;
  --duration: 250ms;
  --duration-slow: 400ms;
  --transition: all var(--duration) var(--ease);
}

/* â”€â”€ Reset & Base â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  overflow-x: clip;
  line-height: 1.7;
  background: var(--bg-warm);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration) var(--ease);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

::selection {
  background: var(--primary);
  color: var(--white);
}

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--primary);
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  z-index: 10000;
  font-weight: 600;
  font-size: 0.875rem;
}
.skip-link:focus {
  top: var(--space-md);
  color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* â”€â”€ Typography â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p { margin-bottom: 1em; }

.text-primary-custom { color: var(--primary) !important; }
.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.text-muted-custom { color: var(--muted) !important; }

/* â”€â”€ Top Bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.top-bar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 0;
  font-size: 0.8rem;
  letter-spacing: 0.2px;
  line-height: 1;
}
.top-bar a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--duration) var(--ease);
}
.top-bar a:hover { color: var(--gold-light); }
.top-bar i { color: var(--gold); margin-right: 4px; font-size: 0.72rem; }
.top-bar .social-top {
  margin-left: 8px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.68rem;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.6);
}
.top-bar .social-top:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-1px);
}

/* â”€â”€ Navbar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.navbar {
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
  z-index: 1000;
}
.navbar.navbar-scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.98);
}
.navbar .container {
  min-height: 64px;
  display: flex;
  align-items: center;
}

/* Brand */
.navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar .navbar-brand img {
  max-height: 48px;
  width: auto;
}
.navbar .brand-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.03em;
  line-height: 1;
}
.navbar .brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 3px;
}

/* Nav links */
.navbar .navbar-nav {
  gap: 2px;
  align-items: center;
}
.navbar .nav-link {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-secondary) !important;
  padding: 8px 12px !important;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
  white-space: nowrap;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--primary) !important;
  background: var(--primary-soft);
}

/* Toggler */
.navbar .navbar-toggler {
  border: none;
  padding: 6px 8px;
  outline: none;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
.navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(11, 93, 59, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile menu drawer */
@media (max-width: 991.98px) {
  html, body {
    overflow-x: clip;
  }
  .navbar .navbar-toggler {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
  }
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85vw;
    height: 100dvh;
    background: var(--white);
    z-index: 2000;
    padding: 0;
    transform: translateX(-100%);
    transition: transform var(--duration-slow) var(--ease);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: var(--shadow-xl);
  }
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    transform: translateX(0);
  }
  .navbar-collapse .mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--border-light);
    background: var(--bg);
  }
  .navbar-collapse .mobile-drawer-header .drawer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }
  .navbar-collapse .mobile-drawer-header .brand-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary-dark);
  }
  .navbar-collapse .drawer-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
    font-size: 1.1rem;
    transition: var(--transition);
  }
  .navbar-collapse .drawer-close:hover {
    background: var(--primary-soft);
    color: var(--primary);
  }
  .navbar-collapse .navbar-nav {
    padding: var(--space-md);
    flex-direction: column;
    gap: 2px;
  }
  .navbar-collapse .nav-link {
    padding: 12px var(--space-md) !important;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .navbar-collapse .nav-link.active {
    background: var(--primary);
    color: var(--white) !important;
  }
  .mobile-drawer-contact {
    padding: var(--space-lg);
    border-top: 1px solid var(--border-light);
    margin-top: auto;
  }
  .mobile-drawer-contact .drawer-contact-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--light-muted);
    margin-bottom: var(--space-sm);
    padding: 0 var(--space-md);
  }
  .mobile-drawer-contact a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px var(--space-md);
    font-size: 0.88rem;
    color: var(--text-secondary);
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-drawer-contact a i {
    color: var(--primary);
    width: 20px;
    text-align: center;
  }
  .mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-slow) var(--ease);
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }
  .navbar .navbar-nav { padding: 0; }
  .navbar-scroll-cta { margin-top: 8px; width: fit-content; }
  .navbar-scroll-cta .btn {
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
}

@media (min-width: 992px) {
  .mobile-drawer-overlay { display: none; }
}

/* â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn { border-radius: var(--radius-sm); font-weight: 600; font-family: var(--font-body); transition: var(--transition); }

.btn-primary-custom {
  background: var(--primary);
  border: none;
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 4px 12px rgba(11, 93, 59, 0.22);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.4;
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 93, 59, 0.32);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-primary-custom {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-primary-custom:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 93, 59, 0.22);
}

.btn-gold {
  background: var(--gold);
  border: none;
  color: var(--dark);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 164, 55, 0.28);
}

.btn-dark-custom {
  background: var(--navy);
  border: none;
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-dark-custom:hover {
  background: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(8, 43, 69, 0.28);
}

.btn-lg {
  padding: 14px 36px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

/* â”€â”€ Scroll Reveal â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
html.js [data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}
html.js [data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
html.js [data-aos="fade-left"] {
  transform: translateX(20px);
}
html.js [data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}
html.js [data-aos="fade-right"] {
  transform: translateX(-20px);
}
html.js [data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}
html.js [data-aos="zoom-in"] {
  transform: scale(0.95);
}
html.js [data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

/* â”€â”€ Section System â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-padding { padding: clamp(60px, 8vw, 100px) 0; }
.section-padding-sm { padding: clamp(40px, 6vw, 72px) 0; }
.bg-light-custom { background: var(--bg); }
.bg-white { background: var(--white) !important; }

.section-head { margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.text-center .eyebrow { margin-left: auto; margin-right: auto; }
.section-head.text-center .section-divider { margin-left: auto; margin-right: auto; }
.section-head.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-soft);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  border: 1px solid rgba(11, 93, 59, 0.10);
}
.eyebrow::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* Section title */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--space-md);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.section-subtitle {
  color: var(--muted);
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  max-width: 640px;
  line-height: 1.75;
  margin: 0;
}

/* Section divider */
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  margin: 0 0 var(--space-lg);
}
.section-divider.center {
  margin-left: auto;
  margin-right: auto;
}

/* â”€â”€ Hero Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-section {
  position: relative;
  min-height: clamp(600px, 85vh, 860px);
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 45%, #0B3D2B 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(11, 93, 59, 0.15), transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(8, 43, 69, 0.10), transparent 60%);
  pointer-events: none;
}
.hero-section .container {
  position: relative;
  z-index: 3;
  padding: clamp(48px, 8vw, 80px) 0;
}

/* Hero content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}
.hero-badge i { color: var(--gold); }

.hero-section h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.03em;
  max-width: 680px;
}
.hero-section h1 span { color: var(--gold); }

.hero-section .hero-lead {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: clamp(32px, 5vw, 48px);
}

/* Hero trust indicators */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  font-weight: 500;
}
.hero-trust-item i {
  color: var(--gold);
  font-size: 0.9rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 164, 55, 0.10);
  border-radius: var(--radius-sm);
}

/* Hero image area */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  max-width: 520px;
  width: 100%;
}
.hero-image-main img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.hero-image-main::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

/* Hero floating stats card */
.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: heroFloat 6s ease-in-out infinite;
}
.hero-float-card.card-left {
  bottom: 15%;
  left: -20px;
}
.hero-float-card.card-right {
  top: 10%;
  right: -10px;
  animation-delay: 2s;
}
.hero-float-card .float-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.hero-float-card .float-icon.green {
  background: var(--primary-soft);
  color: var(--primary);
}
.hero-float-card .float-icon.gold {
  background: var(--gold-soft);
  color: var(--gold-dark);
}
.hero-float-card .float-icon.navy {
  background: var(--navy-soft);
  color: var(--navy);
}
.hero-float-card strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 700;
  line-height: 1.2;
}
.hero-float-card span {
  font-size: 0.72rem;
  color: var(--muted);
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Hero wave divider */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 4;
}
.hero-wave svg { width: 100%; height: clamp(30px, 5vw, 50px); }

/* â”€â”€ Page Hero (Inner Pages) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-hero {
  position: relative;
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 45%, #0B3D2B 100%);
  padding: clamp(60px, 8vw, 90px) 0 clamp(48px, 6vw, 72px);
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 55% at 80% 10%, rgba(11, 93, 59, 0.15), transparent 60%),
    radial-gradient(ellipse 40% 55% at 10% 90%, rgba(8, 43, 69, 0.10), transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}
.page-hero .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.page-hero .eyebrow::before { background: var(--gold-light); }
.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--space-lg);
}
.breadcrumb a { color: rgba(255, 255, 255, 0.7); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 0.55rem; color: rgba(255, 255, 255, 0.35); }

/* â”€â”€ Trust / Credibility Strip â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.trust-strip {
  background: var(--white);
  padding: clamp(36px, 5vw, 48px) 0;
  border-bottom: 1px solid var(--border-light);
}
.trust-item {
  text-align: center;
  padding: var(--space-md);
}
.trust-item .trust-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.trust-item .trust-label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.trust-item .trust-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin: 0 auto;
}

/* â”€â”€ Feature / Icon Cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.icon-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 36px) clamp(20px, 3vw, 28px);
  text-align: center;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.icon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.icon-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.icon-card:hover::before {
  transform: scaleX(1);
}
.icon-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  border-radius: var(--radius);
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.icon-card:hover .icon {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.icon-card h5 {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  font-size: 1rem;
}
.icon-card p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.65;
}

/* â”€â”€ Service Cards (with images) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card .service-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.service-card .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-img img { transform: scale(1.05); }
.service-card .service-img .service-icon-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.service-card .service-body {
  padding: clamp(18px, 3vw, 24px);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.service-card h5 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 8px;
}
.service-card p {
  color: var(--muted);
  font-size: 0.88rem;
  flex-grow: 1;
  margin-bottom: var(--space-md);
  line-height: 1.65;
}
.service-card .service-link {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-card .service-link i {
  transition: transform var(--duration) var(--ease);
}
.service-card .service-link:hover {
  color: var(--primary-dark);
}
.service-card .service-link:hover i {
  transform: translateX(4px);
}

/* â”€â”€ Media Cards (Products / Projects / Trainings) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.media-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.media-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.media-card .media-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.media-card .media-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.media-card:hover .media-img img { transform: scale(1.05); }
.media-card .media-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6, 31, 50, 0.4));
  opacity: 0;
  transition: var(--transition);
}
.media-card:hover .media-img::after { opacity: 1; }
.media-card .card-body {
  padding: clamp(18px, 3vw, 24px);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.media-card h5 {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  font-size: 1.02rem;
}
.media-card p {
  color: var(--muted);
  font-size: 0.88rem;
  flex-grow: 1;
  margin-bottom: var(--space-md);
  line-height: 1.65;
}
.media-card .card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  color: var(--light-muted);
  font-size: 0.8rem;
}
.media-card .card-meta i { color: var(--primary); }

/* Badge */
.badge-primary-custom {
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.72rem;
  border-radius: var(--radius-full);
  padding: 4px 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.3px;
}

/* â”€â”€ Stats Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.stats-section {
  position: relative;
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 50%, var(--primary-darker) 100%);
  padding: clamp(56px, 7vw, 80px) 0;
  color: var(--white);
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 50% 0%, rgba(11, 93, 59, 0.10), transparent 60%),
    radial-gradient(ellipse 40% 60% at 90% 100%, rgba(212, 164, 55, 0.06), transparent 55%);
  pointer-events: none;
}
.stats-section .container { position: relative; z-index: 2; }
.stats-section .stat-item {
  text-align: center;
  padding: var(--space-md);
}
.stats-section .stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--white);
}
.stats-section .stat-label {
  font-size: 0.82rem;
  opacity: 0.7;
  letter-spacing: 0.3px;
  font-weight: 500;
}

/* â”€â”€ Mission & Vision â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mission-vision-section {
  position: relative;
  overflow: hidden;
}
.mission-card, .vision-card {
  padding: clamp(32px, 5vw, 48px);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.mission-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
}
.vision-card {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
}
.mission-card::before, .vision-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.mission-card .mv-icon, .vision-card .mv-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(4px);
}
.mission-card h4, .vision-card h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: var(--space-md);
}
.mission-card p, .vision-card p {
  opacity: 0.85;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

/* â”€â”€ Gallery â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  height: 260px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .overlay {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(6, 31, 50, 0.85));
  padding: 20px;
  color: var(--white);
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .overlay { transform: translateY(0); opacity: 1; }
.gallery-item .overlay i { color: var(--gold); font-size: 0.85rem; margin-bottom: 4px; }

/* â”€â”€ Team â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 36px) clamp(20px, 3vw, 24px);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.team-card:hover::before { transform: scaleX(1); }
.team-card .photo {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-lg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--primary-soft);
  transition: var(--transition);
}
.team-card:hover .photo {
  border-color: var(--primary);
  transform: translateY(-3px);
}
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card h5 {
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 1rem;
}
.team-card .position {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.team-card p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0;
  line-height: 1.65;
}

/* â”€â”€ Value Items â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.value-item {
  text-align: center;
  padding: clamp(24px, 3vw, 32px) clamp(16px, 2vw, 22px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  height: 100%;
}
.value-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.value-item .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  border-radius: var(--radius);
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.value-item:hover .icon {
  background: var(--primary);
  color: var(--white);
}
.value-item h6 {
  font-weight: 700;
  color: var(--text);
  font-size: 0.92rem;
}

/* â”€â”€ Checklist â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list .check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text);
  font-size: 0.92rem;
}
.check-list .check-item i {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* â”€â”€ Contact â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 42px);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.contact-card .form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}
.contact-card .form-control {
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  font-size: 0.92rem;
  transition: var(--transition);
  background: var(--bg);
}
.contact-card .form-control:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--primary-soft);
}
.contact-card textarea.form-control { resize: vertical; min-height: 120px; }

.btn-submit {
  background: var(--primary);
  color: var(--white);
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  box-shadow: 0 4px 12px rgba(11, 93, 59, 0.22);
}
.btn-submit:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 93, 59, 0.32);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-info-item .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-info-item:hover .icon {
  background: var(--primary);
  color: var(--white);
}
.contact-info-item h6 {
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text);
  font-size: 0.88rem;
}
.contact-info-item p {
  color: var(--muted);
  margin: 0;
  font-size: 0.88rem;
}

/* â”€â”€ CTA Band â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-band {
  position: relative;
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 45%, #0B3D2B 100%);
  color: var(--white);
  padding: clamp(56px, 7vw, 80px) 0;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 85% 20%, rgba(11, 93, 59, 0.15), transparent 55%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(212, 164, 55, 0.06), transparent 50%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

/* â”€â”€ WhatsApp Float â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  z-index: 998;
  transition: var(--transition);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}
@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 0; }
}

/* Scroll to Top */
.scroll-top-btn {
  position: fixed;
  bottom: 88px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  cursor: pointer;
  display: none;
  z-index: 997;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.scroll-top-btn.show {
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-top-btn:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

/* â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: clamp(48px, 6vw, 64px) 0 0;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
  opacity: 0.35;
}
.site-footer h5 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
}
.site-footer h6 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}
.text-light-50 { color: rgba(255, 255, 255, 0.5); }
.footer-about-text {
  font-size: 0.88rem;
  line-height: 1.8;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a i { font-size: 0.55rem; color: var(--gold); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
  margin-bottom: 10px;
  font-size: 0.88rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-contact li i { color: var(--gold); margin-top: 4px; width: 14px; font-size: 0.82rem; }
.footer-contact a { color: rgba(255, 255, 255, 0.55); }
.footer-contact a:hover { color: var(--white); }

.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
  font-size: 0.78rem;
}
.footer-bottom p { color: rgba(255, 255, 255, 0.5); }

/* Footer brand / logo */
.footer-brand { margin-bottom: 4px; }
.footer-logo-link { display: inline-block; }
.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}
.footer-logo:hover { opacity: 0.85; }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
}

/* Footer bottom links (Privacy, Terms) */
.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* Footer tagline in bottom bar */
.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.35);
}

/* â”€â”€ Lightbox â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lightbox-overlay { animation: fadeIn 0.2s ease; }
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* â”€â”€ Alerts â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.alert {
  border-radius: var(--radius-sm);
  border: none;
  font-weight: 500;
  font-size: 0.9rem;
}
.alert-success {
  background: rgba(11, 93, 59, 0.07);
  color: var(--primary-dark);
  border-left: 3px solid var(--primary);
}
.alert-danger {
  background: rgba(192, 57, 43, 0.06);
  color: #8B1A1A;
  border-left: 3px solid var(--danger);
}

/* â”€â”€ Reveal / Misc â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reveal-img {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.reveal-img img {
  transition: transform 0.5s var(--ease);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.reveal-img:hover img { transform: scale(1.04); }

/* Empty states */
.empty-state {
  text-align: center;
  padding: clamp(48px, 6vw, 72px) var(--space-md);
}
.empty-state .empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--light-muted);
}
.empty-state h4 {
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-sm);
}
.empty-state p {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-xl);
  justify-content: center;
}
.filter-tab {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}
.filter-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.filter-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* FAQ accordion */
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: var(--primary);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question i {
  font-size: 0.75rem;
  color: var(--primary);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-answer-inner {
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* Page hero background image variant */
.page-hero-bg {
  position: relative;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(6, 31, 50, 0.88) 0%, rgba(8, 43, 69, 0.85) 50%, rgba(11, 93, 59, 0.82) 100%);
}

/* ============================================================
   Responsive — Gallery & Team Base Grids
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

/* ============================================================
   Responsive — Laptop (1024px – 1199px)
   ============================================================ */
@media (max-width: 1199.98px) {
  .hero-section h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
  .hero-image-main { max-width: 460px; }
  .hero-float-card.card-left { left: -10px; }
  .hero-float-card.card-right { right: -5px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .section-title { font-size: clamp(1.6rem, 3vw, 2.3rem); }
}

/* ============================================================
   Responsive — Tablet (768px – 991px)
   ============================================================ */
@media (max-width: 991.98px) {
  .section-padding { padding: clamp(48px, 6vw, 72px) 0; }
  .section-padding-sm { padding: clamp(36px, 5vw, 52px) 0; }
  .hero-section { min-height: auto; padding: 0; }
  .hero-section .container { padding: clamp(48px, 6vw, 72px) 0; }
  .hero-section h1 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
  .hero-image-wrapper { margin-top: var(--space-xl); }
  .hero-float-card { display: none; }
  .hero-trust { gap: 16px; }
  .hero-trust-item { font-size: 0.78rem; }
  .hero-trust-item i { width: 28px; height: 28px; font-size: 0.8rem; }
  .page-hero { padding: clamp(48px, 6vw, 68px) 0 clamp(36px, 5vw, 52px); }
  .page-hero h1, .page-hero__title { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
  .navbar .container { min-height: 60px; }
  .service-card .service-img { height: 180px; }
  .media-card .media-img { height: 190px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-section .stat-item { margin-bottom: var(--space-md); }
  .stats-section .stat-number { font-size: clamp(1.8rem, 4vw, 2.4rem); }
  .mission-card, .vision-card { margin-bottom: var(--space-md); }
  .value-card__number { font-size: 2rem; }
  .footer-bottom .col-md-5,
  .footer-bottom .col-md-4,
  .footer-bottom .col-md-3 { text-align: center !important; }
  .footer-bottom-links { justify-content: center; margin-top: 8px; }
  .cta-band { padding: clamp(44px, 6vw, 64px) 0; }
  .cta-band h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
  .contact-card { padding: clamp(24px, 3.5vw, 36px); }
  .detail-sidebar { position: static; margin-top: var(--space-xl); }
  .team-card__image { width: 110px; height: 110px; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
}

/* ============================================================
   Responsive — Phone (< 768px)
   ============================================================ */
@media (max-width: 767.98px) {
  .section-padding { padding: clamp(40px, 5vw, 56px) 0; }
  .section-padding-sm { padding: clamp(28px, 4vw, 40px) 0; }
  .container { padding-left: 16px; padding-right: 16px; }
  .hero-section { min-height: auto; }
  .hero-section .container { padding: clamp(40px, 6vw, 60px) 0; }
  .hero-section h1 { font-size: clamp(1.45rem, 5.5vw, 2rem); }
  .hero-section .hero-lead { font-size: 0.92rem; line-height: 1.7; }
  .hero-ctas { gap: var(--space-sm); flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; padding: 12px 20px; font-size: 0.88rem; }
  .hero-trust { flex-direction: column; gap: 10px; border-top: none; padding-top: 0; }
  .hero-trust-item { font-size: 0.82rem; }
  .hero-image-main { max-width: 100%; }
  .hero-wave svg { height: 24px; }
  .page-hero { padding: clamp(36px, 5vw, 52px) 0 clamp(28px, 4vw, 40px); }
  .page-hero h1, .page-hero__title { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .page-hero p, .page-hero__desc { font-size: 0.9rem; }
  .navbar .container { min-height: 56px; }
  .brand-text { font-size: 1.15rem; }
  .trust-item { padding: var(--space-sm) var(--space-xs); }
  .trust-item .trust-number { font-size: clamp(1.6rem, 5vw, 2rem); }
  .trust-item .trust-label { font-size: 0.75rem; }
  .trust-item .trust-divider { display: none; }
  .section-title { font-size: clamp(1.35rem, 4.5vw, 1.75rem); }
  .section-subtitle { font-size: 0.9rem; }
  .eyebrow { font-size: 0.68rem; padding: 5px 12px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .service-card .service-img { height: 160px; }
  .media-card .media-img { height: 170px; }
  .gallery-item { height: 160px; }
  .service-card h5, .media-card h5 { font-size: 0.95rem; }
  .service-card p, .media-card p { font-size: 0.84rem; }
  .stats-section { padding: clamp(40px, 5vw, 56px) 0; }
  .stats-section .stat-number { font-size: clamp(1.6rem, 5vw, 2rem); }
  .stats-section .stat-label { font-size: 0.75rem; }
  .mission-card, .vision-card { padding: clamp(24px, 4vw, 32px); }
  .mission-card h4, .vision-card h4 { font-size: clamp(1.1rem, 4vw, 1.3rem); }
  .contact-card { padding: clamp(18px, 4vw, 24px); }
  .contact-info-item { gap: 10px; margin-bottom: 16px; }
  .contact-info-item .icon { width: 40px; height: 40px; font-size: 0.95rem; }
  .cta-band { padding: clamp(40px, 5vw, 52px) 0; }
  .cta-band h2 { font-size: clamp(1.2rem, 4.5vw, 1.5rem); }
  .cta-band p { font-size: 0.88rem; }
  .cta-band .btn { width: 100%; justify-content: center; }
  .site-footer { padding-top: clamp(36px, 5vw, 48px); }
  .site-footer h6 { font-size: 0.68rem; margin-bottom: 14px; }
  .footer-about-text { font-size: 0.84rem; }
  .footer-links a { font-size: 0.84rem; padding: 4px 0; }
  .footer-contact li { font-size: 0.84rem; }
  .footer-social a { width: 34px; height: 34px; font-size: 0.82rem; }
  .footer-bottom { margin-top: 32px; padding: 14px 0; text-align: center; }
  .footer-bottom p { font-size: 0.72rem; }
  .footer-bottom-links { gap: 14px; }
  .footer-tagline { display: none; }
  .footer-logo { height: 34px; }
  .team-card { padding: clamp(20px, 4vw, 28px) clamp(16px, 3vw, 20px); }
  .team-card__image { width: 100px; height: 100px; margin-bottom: var(--space-md); }
  .team-card__name { font-size: 0.95rem; }
  .value-card { padding: clamp(20px, 3vw, 28px) clamp(14px, 2vw, 18px); }
  .value-card__number { font-size: 1.8rem; }
  .value-card__title { font-size: 0.88rem; }
  .whatsapp-float { width: 52px; height: 52px; font-size: 1.4rem; bottom: 16px; right: 16px; }
  .scroll-top-btn { bottom: 80px; right: 16px; width: 38px; height: 38px; font-size: 0.85rem; }
  .filter-tabs { gap: 6px; flex-wrap: wrap; }
  .filter-tab { padding: 6px 14px; font-size: 0.78rem; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  .detail-sidebar { position: static; margin-top: var(--space-lg); padding: clamp(18px, 3vw, 24px); }
  .check-item { font-size: 0.88rem; }
  .check-list { gap: 10px; }
}

/* ============================================================
   Responsive — Small Phone (< 480px)
   ============================================================ */
@media (max-width: 479.98px) {
  .hero-section h1 { font-size: clamp(1.3rem, 6vw, 1.7rem); }
  .hero-section .hero-lead { font-size: 0.88rem; }
  .hero-ctas .btn { padding: 10px 16px; font-size: 0.84rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-item { height: 140px; }
  .stats-section .stat-number { font-size: 1.5rem; }
  .page-hero h1, .page-hero__title { font-size: 1.25rem; }
  .section-title { font-size: 1.3rem; }
  .footer-logo { height: 30px; }
  .filter-tabs { gap: 4px; }
  .filter-tab { padding: 5px 10px; font-size: 0.72rem; border-width: 1px; }
  .hero-badge { font-size: 0.65rem; padding: 5px 12px; }
}


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  html.js [data-aos] { opacity: 1 !important; transform: none !important; }
}

/* â”€â”€ Focus Visible â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius-xs);
}
.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ============================================================
   PREMIUM ENHANCEMENTS
   Targeted upgrades for international-standard polish
   ============================================================ */

/* â”€â”€ 1. Hero â€” Animated Mesh Gradient + Grain Overlay â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}
.hero-section h1 {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

/* â”€â”€ 2. Premium Card â€” Gradient Border on Hover â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.service-card,
.media-card,
.icon-card {
  position: relative;
}
.service-card::after,
.media-card::after,
.icon-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.service-card:hover::after,
.media-card:hover::after,
.icon-card:hover::after {
  opacity: 1;
}

/* â”€â”€ 3. Curved Section Dividers â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-curve {
  position: relative;
}
.section-curve::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background: inherit;
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* â”€â”€ 4. Premium Button â€” Gradient Background + Ripple â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  position: relative;
  overflow: hidden;
}
.btn-gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* â”€â”€ 5. Stats Section â€” Animated Dot Pattern + Glassmorphism â”€â”€â”€â”€â”€â”€ */
.stats-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* â”€â”€ 6. Gallery â€” Sophisticated Overlay + Placeholder â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 31, 50, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease);
}
.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  color: var(--light-muted);
}

/* â”€â”€ 7. Smooth Page Transition â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body { animation: pageIn 0.5s var(--ease); }
@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* â”€â”€ 8. Team Card â€” Gradient Ring Photo â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.team-card__image {
  width: 140px;
  height: 140px;
  margin: 0 auto var(--space-lg);
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid transparent;
  background-image: linear-gradient(var(--white), var(--white)), linear-gradient(135deg, var(--primary), var(--gold));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: var(--transition);
}
.team-card:hover .team-card__image {
  transform: scale(1.05);
}
.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  color: var(--light-muted);
}
.team-card__name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 4px;
}
.team-card__role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.team-card__bio {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 12px;
}
.team-card__social {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.team-card__social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.team-card__social-link:hover {
  background: var(--primary);
  color: var(--white);
}

/* â”€â”€ 9. Testimonial Cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 36px);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-light);
  position: relative;
  transition: var(--transition);
  height: 100%;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  color: var(--primary-soft-2);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card .testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: var(--space-md);
}
.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card .testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-soft);
}
.testimonial-card .testimonial-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
}
.testimonial-card .testimonial-role {
  font-size: 0.78rem;
  color: var(--muted);
}

/* â”€â”€ 10. Partner Logo Strip â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.partner-logo {
  filter: grayscale(100%) opacity(0.5);
  transition: all 0.3s var(--ease);
  max-height: 48px;
  width: auto;
}
.partner-logo:hover {
  filter: grayscale(0%) opacity(1);
}

/* â”€â”€ 11. Value Cards (About Page) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.value-card {
  text-align: center;
  padding: clamp(28px, 4vw, 40px) clamp(20px, 3vw, 28px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
  transform-origin: left;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.value-card:hover::before {
  transform: scaleX(1);
}
.value-card__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-soft-2);
  line-height: 1;
  margin-bottom: var(--space-md);
}
.value-card:hover .value-card__number {
  color: var(--primary);
}
.value-card__title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 8px;
}
.value-card__text {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}

/* â”€â”€ 12. Partners Grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-lg);
  align-items: center;
  justify-items: center;
}

/* â”€â”€ 13. Enhanced Page Hero â€” Subtle Triangle Pattern â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.015' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* â”€â”€ 14. Service Detail â€” Sidebar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.detail-sidebar {
  background: var(--bg);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--border-light);
  position: sticky;
  top: 100px;
}
.detail-sidebar h4 {
  font-weight: 700;
  margin-bottom: var(--space-md);
}
.detail-sidebar .sidebar-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}
.detail-sidebar .sidebar-item:last-child {
  border-bottom: none;
}
.detail-sidebar .sidebar-item i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}
.detail-sidebar .sidebar-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.detail-sidebar .sidebar-item span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

/* â”€â”€ 15. Category Badge (Products) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.category-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.78rem;
  border-radius: var(--radius-full);
  padding: 5px 14px;
  letter-spacing: 0.3px;
}

/* â”€â”€ 16. Enhanced Footer â€” Radial Glow â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 80% 100%, rgba(11, 93, 59, 0.06), transparent 60%);
  pointer-events: none;
}

/* â”€â”€ 17. Loading Spinner â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* â”€â”€ Print â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media print {
  .top-bar, .navbar, .whatsapp-float, .scroll-top-btn, .cta-band, .site-footer { display: none !important; }
  body { font-size: 12pt; color: #000; }
}
