/* ==========================================================================
   ISSCLUB — INDIAN SOCIETY SPORTS CLUB
   Professional Light Theme — Colors matched to ISSCLUB Logo
   ========================================================================== */

/* ==========================================================================
   1. CSS VARIABLES & THEMING — MATCHED TO LOGO
   Logo colors: Navy Blue (text), Saffron Orange (flame/figures),
   Forest Green (India map), Gold (ornamental border), Deep Red (figure)
   ========================================================================== */
:root {
  /* PRIMARY — Dark Navy Blue (from "iSSCLUB" logo text) */
  --primary: #1B2A5B;
  --primary-light: #2C3E7A;
  --primary-dark: #111D42;

  /* SECONDARY — Saffron Orange (from flame & running figures) */
  --secondary: #E8652A;
  --secondary-light: #F07B44;
  --secondary-dark: #C94E18;

  /* ACCENT — Forest Green (from India map & green figure) */
  --accent: #2D7D32;
  --accent-light: #43A047;
  --accent-dark: #1B5E20;

  /* GOLD — (from ornamental border ring) */
  --gold: #C9A12D;
  --gold-light: #D4B44A;
  --gold-dark: #A88420;

  /* Deep Red (from red figure) */
  --red: #C62828;

  /* Neutrals */
  --text-dark: #1a2035;
  --text-body: #4a5568;
  --text-muted: #94a3b8;
  --white: #ffffff;

  --bg-white: #ffffff;
  --bg-light: #f7f8fc;
  --bg-lighter: #eef1f8;

  --border: #e0e4ef;
  --border-light: #f1f3f9;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows — tinted with navy */
  --shadow-sm: 0 1px 3px rgba(27,42,91,0.06);
  --shadow-md: 0 4px 14px rgba(27,42,91,0.08);
  --shadow-lg: 0 10px 28px rgba(27,42,91,0.1);
  --shadow-xl: 0 20px 45px rgba(27,42,91,0.12);
  --shadow-primary: 0 8px 22px rgba(27,42,91,0.22);
  --shadow-secondary: 0 8px 22px rgba(232,101,42,0.22);
  --shadow-gold: 0 8px 22px rgba(201,161,45,0.2);

  /* Transitions */
  --ease: 0.3s ease;
  --ease-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Border Radius */
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Layout */
  --container: 1280px;
  --header-h: 115px;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar — Navy + Gold */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--secondary); }
ul { list-style: none; }

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; color: var(--text-body); }

.text-center { text-align: center; }
.text-primary { color: var(--primary) !important; }
.text-warning { color: var(--secondary) !important; }
.text-info { color: var(--accent) !important; }
.text-danger { color: var(--red) !important; }
.text-success { color: var(--accent) !important; }

/* ==========================================================================
   4. LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.bg-light { background: var(--bg-light); }

/* Section Header */
.section-header { margin-bottom: 3rem; }
.section-header.left-align { text-align: left; }
.section-header .subtitle {
  display: inline-block;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.heading-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--secondary));
  border-radius: var(--radius-full);
  margin-top: 0.75rem;
}
.heading-line.mx-auto { margin-left: auto; margin-right: auto; }
.section-desc { max-width: 600px; margin: 1rem auto 0; color: var(--text-body); }

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease-bounce);
  position: relative;
  overflow: hidden;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-secondary);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ==========================================================================
   6. LOADING SCREEN
   ========================================================================== */
.loader-wrapper {
  position: fixed;
  inset: 0;
  background: var(--bg-white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-content { text-align: center; }
.loader-logo-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  animation: pulse-logo 1.5s ease-in-out infinite;
}
.loader {
  width: 44px;
  height: 44px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-right-color: var(--secondary);
  border-bottom-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

/* ==========================================================================
   7. HEADER / NAVBAR
   ========================================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: all var(--ease);
  background: rgba(17, 29, 66, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
}
.header .container { 
  height: 100%; 
  display: flex;
  align-items: center;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

/* Brand & Logo Lockup */
.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  transition: transform var(--ease);
}
.logo:hover {
  transform: translateY(-1px);
}

/* Big Logo Circle Container with Solid White Fill */
.logo-circle-wrapper {
  width: 96px;
  height: 96px;
  min-width: 96px;
  background-color: #ffffff;
  border-radius: 50%;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25), 0 0 14px rgba(201, 161, 45, 0.3);
  transition: all var(--ease);
  overflow: hidden;
}
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  background-color: #ffffff;
  display: block;
}

/* Logo Brand Text & Long Form Subtitle */
.logo-text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
}
.logo-brand {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--white);
  display: flex;
  align-items: baseline;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: color var(--ease);
}
.brand-iss {
  font-size: 1.2em;
  font-weight: 900;
  color: inherit;
  position: relative;
  display: inline-flex;
  align-items: baseline;
  letter-spacing: -0.5px;
}
.i-dot-wrap {
  position: relative;
  display: inline-block;
  color: inherit;
}
.i-orange-dot {
  position: absolute;
  top: -0.12em;
  left: 50%;
  transform: translateX(-50%);
  width: 0.3em;
  height: 0.3em;
  background-color: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(232, 101, 42, 0.9);
}
.brand-club {
  font-size: 0.92em;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: inherit;
  margin-left: 1px;
}
.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 3px;
  white-space: nowrap;
  transition: color var(--ease);
}

/* Scrolled Sticky Header */
.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--border-light);
  height: 76px;
}
.header.scrolled .logo-circle-wrapper {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-width: 2px;
}
.header.scrolled .logo-brand {
  font-size: 1.35rem;
  color: var(--primary);
  text-shadow: none;
}
.header.scrolled .logo-tagline {
  font-size: 0.62rem;
  color: var(--primary-light);
}
.header.scrolled .nav-link { 
  color: var(--primary); 
  font-weight: 600;
}
.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active { 
  color: var(--secondary); 
}
.header.scrolled .nav-link::after {
  background: var(--secondary);
}
.header.scrolled .cta-btn { display: inline-flex; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-link {
  color: rgba(255,255,255,0.95);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.12rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: all var(--ease);
  position: relative;
  letter-spacing: 0.2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0.85rem; right: 0.85rem;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--ease);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--gold-light); }
.nav-link.active { color: var(--white); font-weight: 700; }

.cta-btn {
  margin-left: 1.25rem;
  padding: 0.75rem 1.75rem !important;
  font-size: 1rem !important;
  font-weight: 700;
  background: var(--secondary) !important;
  border-color: var(--secondary) !important;
  box-shadow: 0 4px 14px rgba(232, 101, 42, 0.35);
  white-space: nowrap;
}
.cta-btn:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
.mobile-toggle .bar {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 3px;
  transition: all var(--ease);
}
.header.scrolled .mobile-toggle .bar { background: var(--text-dark); }
.mobile-toggle.active .bar { background: var(--primary) !important; }
.mobile-toggle.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.mobile-toggle.active .bar:nth-child(2) { opacity: 0; }
.mobile-toggle.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ==========================================================================
   8. HERO SECTION (Picture 1 Background + 2-Column Responsive Layout)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 29, 66, 0.88) 0%, rgba(27, 42, 91, 0.76) 50%, rgba(232, 101, 42, 0.62) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 1.5rem);
  padding-bottom: 2.5rem;
  width: 100%;
  max-width: 100% !important;
  padding-left: clamp(1.5rem, 4.5vw, 4.5rem);
  padding-right: clamp(1.5rem, 4.5vw, 4.5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Left Column Content */
.hero-left-content {
  color: var(--white);
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 161, 45, 0.2);
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
  animation: fadeInUp 0.6s ease both;
}

.hero-main-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.75rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  animation: fadeInUp 0.7s 0.1s ease both;
}

/* Hero Headline Rotator (5 Phrases in Same Size with Flashing Transition) */
.hero-rotator-wrapper {
  margin-bottom: 2.25rem;
  position: relative;
}
.hero-rotator {
  position: relative;
  min-height: 150px;
  display: flex;
  align-items: flex-start;
}
.rotating-phrase {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s ease;
  margin-bottom: 0;
  pointer-events: none;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.rotating-phrase.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: phraseFlashGlow 0.8s ease-out;
}
.rotating-phrase.exiting {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px) scale(0.98);
}
@keyframes phraseFlashGlow {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    filter: drop-shadow(0 0 20px rgba(232, 101, 42, 0.9));
  }
  40% {
    filter: drop-shadow(0 0 28px rgba(201, 161, 45, 0.95)) brightness(1.15);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
  }
}
.rotator-indicators {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  background: rgba(17, 29, 66, 0.5);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}
.rotator-dot {
  width: 24px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.35s var(--ease);
}
.rotator-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}
.rotator-dot.active {
  width: 44px;
  background: linear-gradient(90deg, var(--secondary), var(--gold));
  box-shadow: 0 0 10px rgba(232, 101, 42, 0.7);
}

/* Hero Fixed Text Points (Large Bullet Points) */
.hero-fixed-features {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2.25rem;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.fixed-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(17, 29, 66, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.35rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}
.fixed-feature-item:hover {
  transform: translateX(6px);
  border-left-color: var(--gold);
  background: rgba(17, 29, 66, 0.8);
}
.feature-bullet-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--gold));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(232, 101, 42, 0.4);
  margin-top: 2px;
}
.feature-text {
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.96);
  margin: 0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.3s ease both;
}

/* Right Column: Registration Form (Positioned to Right, Left-Aligned to 'Register for Free') */
.hero-right-form {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  animation: fadeInUp 0.8s 0.25s ease both;
}
.hero-enquiry-card {
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.85rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.5);
  border-top: 5px solid var(--secondary);
}
.enquiry-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.85rem;
}
.enquiry-header-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
}
.card-header-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 8px;
  background: rgba(232, 101, 42, 0.12);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.enquiry-header-left h3,
.enquiry-card-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0;
  white-space: nowrap;
}

.hero-form .hero-form-group {
  margin-bottom: 0.9rem;
}
.hero-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.hero-form-group label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}
.hero-form-group label i {
  color: var(--secondary);
  font-size: 0.75rem;
}
.hero-input,
.hero-select,
.hero-textarea {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-family: var(--font-body);
  background: var(--bg-white);
  color: var(--text-dark);
  transition: all var(--ease);
}
.hero-input:focus,
.hero-select:focus,
.hero-textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(232, 101, 42, 0.15);
}
.hero-textarea {
  resize: vertical;
  min-height: 54px;
}
.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(232, 101, 42, 0.12), rgba(201, 161, 45, 0.18));
  border: 1px solid var(--secondary-light);
  color: var(--secondary-dark);
  padding: 0.28rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-left: auto;
}

/* OTP Verification UI */
.otp-phone-row {
  display: flex;
  gap: 0.45rem;
  align-items: stretch;
}
.otp-phone-row .hero-input,
.otp-phone-row .form-input {
  flex: 1;
}
.btn-get-otp {
  padding: 0.55rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-heading);
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.btn-get-otp:hover {
  background: var(--secondary);
}
.btn-get-otp:disabled {
  background: var(--border);
  color: var(--text-muted);
  cursor: not-allowed;
}

.otp-verification-container {
  margin-top: 0.45rem;
  background: rgba(232, 101, 42, 0.06);
  border: 1px dashed var(--secondary);
  border-radius: var(--radius);
  padding: 0.6rem 0.75rem;
  animation: fadeIn 0.3s ease;
}
.otp-input-wrapper {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}
.otp-code-input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  letter-spacing: 3px;
  text-align: center;
  font-weight: 700;
  font-family: monospace;
  background: var(--bg-white);
  color: var(--text-dark);
}
.otp-code-input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(232, 101, 42, 0.15);
}
.btn-verify-otp {
  padding: 0.5rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn-verify-otp:hover {
  background: var(--accent-dark);
}
.otp-status-msg {
  font-size: 0.75rem;
  margin-top: 0.3rem;
  font-weight: 600;
}
.otp-status-msg.success { color: var(--accent); }
.otp-status-msg.error { color: var(--red); }
.otp-status-msg.info { color: var(--primary-light); }

.verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(45, 125, 50, 0.12);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  margin-left: 0.4rem;
}

.hero-submit-btn {
  width: 100%;
  padding: 0.85rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--white);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(232, 101, 42, 0.35);
  transition: all var(--ease-bounce);
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.hero-submit-btn:hover {
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232, 101, 42, 0.45);
}

.scroll-down-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-light);
  font-size: 1.25rem;
  z-index: 3;
  animation: bounce 2s infinite;
}

/* Floating decorative elements */
.floating-elements {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.float-item {
  position: absolute;
  color: rgba(201, 161, 45, 0.1);
  font-size: 3rem;
  animation: float-around 15s infinite ease-in-out;
}
.float-1 { top: 20%; right: 10%; animation-delay: 0s; }
.float-2 { top: 60%; right: 25%; animation-delay: -5s; font-size: 2.5rem; }
.float-3 { top: 35%; right: 5%; animation-delay: -10s; font-size: 4rem; }

/* ==========================================================================
   9. ABOUT SECTION
   ========================================================================== */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-img .img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.split-img:hover img { transform: scale(1.03); }
.experience-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--primary);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-primary);
  border: 2px solid var(--gold);
}
.experience-badge .years {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold-light);
}
.experience-badge .text {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 0.25rem;
}

.lead-text {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 1rem;
}

.icon-list { margin: 1.5rem 0 2rem; }
.icon-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.icon-list .icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(27,42,91,0.08);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--ease);
}
.icon-list li:hover .icon-box {
  background: var(--primary);
  color: var(--gold-light);
}
.icon-list h4 { margin-bottom: 0.25rem; font-size: 1rem; }
.icon-list p { margin-bottom: 0; font-size: 0.9rem; }

/* ==========================================================================
   10. DIRECTOR'S MESSAGE
   ========================================================================== */
.director-section { background: var(--bg-light); }
.director-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--gold);
}
.director-profile { text-align: center; }
.director-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--primary-light);
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-primary);
}
.director-info h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.director-info .title {
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.9rem;
}

.quote-icon {
  color: var(--gold);
  font-size: 2.5rem;
  opacity: 0.4;
  margin-bottom: 0.5rem;
}
.large-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 2rem;
  border-left: 4px solid var(--gold);
  padding-left: 1.25rem;
}

.commitments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.commitment-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  transition: all var(--ease);
  border: 1px solid var(--border);
}
.commitment-card i {
  color: var(--secondary);
  font-size: 1.1rem;
  min-width: 20px;
}
.commitment-card span { font-size: 0.9rem; font-weight: 500; color: var(--text-dark); }
.commitment-card:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
  transform: translateY(-2px);
}
.commitment-card:hover i,
.commitment-card:hover span { color: var(--white); }

/* ==========================================================================
   11. STATS SECTION — Navy gradient with gold accents
   ========================================================================== */
.stats-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: var(--white);
  padding: 4rem 0;
  position: relative;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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.03'%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");
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.stat-card { text-align: center; padding: 1.5rem 1rem; }
.stat-icon {
  font-size: 2.5rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
}

/* ==========================================================================
   12. PHILOSOPHY SECTION & PILLARS
   ========================================================================== */
.philosophy-intro-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border-left: 5px solid var(--gold);
  box-shadow: var(--shadow-md);
  margin-top: 1.5rem;
}
.philosophy-intro-card h4 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.philosophy-intro-card p {
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.7;
}

/* 5 Core Pillars Grid */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.pillar-grid .pillar-card:nth-child(4),
.pillar-grid .pillar-card:nth-child(5) {
  /* Spread 4th and 5th nicely */
}

.pillar-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transition: background var(--ease);
}
.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold);
}
.pillar-card:hover::before {
  background: linear-gradient(90deg, var(--gold), var(--secondary));
}

.pillar-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.pillar-icon-box {
  width: 58px;
  height: 58px;
  min-width: 58px;
  background: rgba(27, 42, 91, 0.07);
  color: var(--primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--ease);
}
.pillar-card:hover .pillar-icon-box {
  background: var(--primary);
  color: var(--gold-light);
  transform: scale(1.08);
}

.pillar-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(27, 42, 91, 0.12);
  line-height: 1;
}
.pillar-card:hover .pillar-number {
  color: var(--gold);
}

.pillar-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.85rem;
}
.pillar-card p {
  color: var(--text-body);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex: 1;
}

.pillar-tags {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
}
.pillar-tag-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 500;
}
.pillar-tag-item i {
  color: var(--accent);
  font-size: 0.8rem;
}

/* Value Proposition 6-Card Grid */
.value-prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.value-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.value-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(232, 101, 42, 0.1);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  transition: all var(--ease);
}
.value-card:hover .value-icon {
  background: var(--secondary);
  color: var(--white);
  transform: scale(1.1);
}
.value-card h4 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 0.6rem;
}
.value-card p {
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* 4-Step Process / Methodology Grid */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}
.step-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all var(--ease);
  text-align: center;
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-xl);
}
.step-badge {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--gold-light);
  box-shadow: 0 4px 12px rgba(27, 42, 91, 0.25);
}
.step-card:hover .step-badge {
  background: var(--secondary);
  border-color: var(--white);
}
.step-icon {
  font-size: 1.75rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.step-card h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.step-card p {
  color: var(--text-body);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .value-prop-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .pillar-grid { grid-template-columns: 1fr; }
  .value-prop-grid { grid-template-columns: 1fr; }
  .process-steps-grid { grid-template-columns: 1fr; }
}

.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}
.column h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* ==========================================================================
   13. VISION / MISSION / VALUES
   ========================================================================== */
.three-column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.vmv-card {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}
.vmv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--secondary));
  transform: scaleX(0);
  transition: transform var(--ease);
}
.vmv-card:hover::before { transform: scaleX(1); }
.vmv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.vmv-card .card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: rgba(27,42,91,0.08);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: all var(--ease);
}
.vmv-card:hover .card-icon {
  background: var(--primary);
  color: var(--gold-light);
  transform: scale(1.1);
}
.vmv-card h3 { font-size: 1.35rem; }

.vision-statement {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
}

.mission-list { text-align: left; }
.mission-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-body);
}
.mission-list i { color: var(--accent); font-size: 0.8rem; }

.values-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.value-tag {
  padding: 0.4rem 1rem;
  background: rgba(27,42,91,0.06);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(27,42,91,0.12);
  transition: all var(--ease);
}
.value-tag:hover {
  background: var(--primary);
  color: var(--gold-light);
  border-color: var(--primary);
}

/* ==========================================================================
   14. PROGRAMS SECTION
   ========================================================================== */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.program-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: all var(--ease);
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold);
}
.program-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.program-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.program-card:hover .program-img img { transform: scale(1.08); }
.program-icon {
  position: absolute;
  bottom: -22px;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-secondary);
  z-index: 2;
}
.program-content {
  padding: 1.75rem 1.5rem 1.5rem;
}
.program-content h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.program-content p { font-size: 0.9rem; margin-bottom: 1rem; }
.read-more {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--ease), color var(--ease);
}
.read-more:hover { gap: 0.75rem; color: var(--primary); }

/* ==========================================================================
   15. GALLERY
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,42,91,0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--ease);
  color: var(--white);
}
.gallery-item:hover .gallery-img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
  transform: translateY(15px);
  transition: transform var(--ease);
}
.gallery-item:hover .gallery-icon { transform: translateY(0); }
.gallery-text {
  font-size: 0.9rem;
  font-weight: 600;
  transform: translateY(15px);
  transition: transform var(--ease) 0.05s;
}
.gallery-item:hover .gallery-text { transform: translateY(0); }

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(17,29,66,0.92);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--ease);
  backdrop-filter: blur(8px);
}
#lightbox.active { opacity: 1; visibility: visible; }
#lightbox img {
  max-width: 85vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  transition: color var(--ease);
  line-height: 1;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  transition: color var(--ease);
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--gold); }

/* ==========================================================================
   16. TESTIMONIALS
   ========================================================================== */
.testimonial-slider-container {
  max-width: 700px;
  margin: 0 auto;
}
.testimonial-slider {
  position: relative;
  overflow: hidden;
}
.testimonial-slide {
  display: none;
  text-align: center;
  padding: 2rem;
  animation: fadeIn 0.5s ease;
}
.testimonial-slide.active { display: block; }
.quote-mark {
  color: var(--gold);
  font-size: 2.5rem;
  opacity: 0.3;
  margin-bottom: 0.5rem;
}
.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}
.author-info h4 { margin-bottom: 0.15rem; font-size: 1rem; }
.author-info span { color: var(--secondary); font-size: 0.85rem; font-weight: 500; }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.slider-arrow {
  width: 42px;
  height: 42px;
  border: 2px solid var(--border);
  border-radius: 50%;
  background: var(--bg-white);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--ease);
}
.slider-arrow:hover {
  background: var(--primary);
  color: var(--gold-light);
  border-color: var(--primary);
}
.slider-dots { display: flex; gap: 0.5rem; }
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--ease);
}
.dot.active {
  background: var(--secondary);
  transform: scale(1.3);
}

/* ==========================================================================
   17. PARTNERS
   ========================================================================== */
.partners-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 2.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--ease);
  min-width: 160px;
}
.partner-item i {
  font-size: 2.5rem;
  color: var(--primary);
  transition: all var(--ease);
}
.partner-item span { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.partner-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.partner-item:hover i { color: var(--secondary); transform: scale(1.15); }

/* ==========================================================================
   18. FAQ SECTION
   ========================================================================== */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--ease);
}
.faq-item.active { border-color: var(--gold); box-shadow: var(--shadow-md); }
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  transition: color var(--ease);
}
.faq-question:hover { color: var(--secondary); }
.faq-icon { transition: transform var(--ease), color var(--ease); font-size: 0.9rem; }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--secondary); }
.faq-item.active .faq-question { color: var(--primary); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
   19. CONTACT SECTION
   ========================================================================== */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.newsletter-box,
.contact-info-box {
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.newsletter-box h3,
.contact-info-box h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--ease);
}
.newsletter-form input:focus { border-color: var(--primary); }

.contact-details { margin-top: 1rem; }
.contact-details li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}
.contact-details i {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  min-width: 20px;
}
.contact-details span { font-size: 0.95rem; }

.social-links-box {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.social-links-box a {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
}
.social-links-box a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

/* ==========================================================================
   20. FOOTER — Dark Navy
   ========================================================================== */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer-logo:hover { color: var(--white); }
.footer-logo-circle {
  width: 58px;
  height: 58px;
  min-width: 58px;
  background-color: #ffffff;
  border-radius: 50%;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  overflow: hidden;
}
.footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  background-color: #ffffff;
  display: block;
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.footer-logo-text .logo-brand {
  font-size: 1.45rem;
  color: var(--white);
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 2px;
}
.footer-desc { font-size: 0.9rem; margin-bottom: 1.25rem; }

.footer-social { display: flex; gap: 0.75rem; }
.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--ease);
}
.social-icon:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-3px);
}

.widget-title {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 35px;
  height: 2px;
  background: var(--gold);
}

.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--ease);
}
.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.footer-contact i { color: var(--gold); min-width: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}
.footer-legal a:hover { color: var(--gold-light); }

/* ==========================================================================
   21. BACK TO TOP — Saffron accent
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-secondary);
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--ease);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--primary);
  transform: translateY(-5px);
}

/* ==========================================================================
   22. SCROLL ANIMATIONS
   ========================================================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   23. KEYFRAMES
   ========================================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-12px); }
  60% { transform: translateX(-50%) translateY(-6px); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
@keyframes float-around {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -40px) rotate(90deg); }
  50% { transform: translate(-20px, -70px) rotate(180deg); }
  75% { transform: translate(15px, -30px) rotate(270deg); }
}
@keyframes pulse-logo {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.9; }
}

/* ==========================================================================
   23. MULTI-PAGE INNER PAGE BANNER & COMPONENTS
   ========================================================================== */
.page-banner {
  position: relative;
  padding: calc(var(--header-h) + 3.5rem) 0 4rem;
  background: linear-gradient(135deg, rgba(17, 29, 66, 0.95) 0%, rgba(27, 42, 91, 0.90) 50%, rgba(232, 101, 42, 0.85) 100%),
              url('https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?w=1920&q=80') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  border-bottom: 4px solid var(--gold);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* Unique Header Background Images per Page Description */
.page-banner.banner-about {
  background: linear-gradient(135deg, rgba(17, 29, 66, 0.94) 0%, rgba(27, 42, 91, 0.88) 50%, rgba(232, 101, 42, 0.82) 100%),
              url('https://images.unsplash.com/photo-1526676037777-05a232554f77?w=1920&q=80') center/cover no-repeat;
}

.page-banner.banner-philosophy {
  background: linear-gradient(135deg, rgba(17, 29, 66, 0.94) 0%, rgba(27, 94, 32, 0.88) 50%, rgba(201, 161, 45, 0.82) 100%),
              url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?w=1920&q=80') center/cover no-repeat;
}

.page-banner.banner-programs {
  background: linear-gradient(135deg, rgba(17, 29, 66, 0.94) 0%, rgba(232, 101, 42, 0.88) 50%, rgba(198, 40, 40, 0.82) 100%),
              url('https://images.unsplash.com/photo-1461896836934-ffe607ba8211?w=1920&q=80') center/cover no-repeat;
}

.page-banner.banner-vision {
  background: linear-gradient(135deg, rgba(17, 29, 66, 0.95) 0%, rgba(44, 62, 122, 0.90) 50%, rgba(201, 161, 45, 0.85) 100%),
              url('https://images.unsplash.com/photo-1508098682722-e99c43a406b2?w=1920&q=80') center/cover no-repeat;
}

.page-banner.banner-gallery {
  background: linear-gradient(135deg, rgba(17, 29, 66, 0.94) 0%, rgba(27, 42, 91, 0.88) 50%, rgba(232, 101, 42, 0.84) 100%),
              url('https://images.unsplash.com/photo-1511578314322-379afb476865?w=1920&q=80') center/cover no-repeat;
}

.page-banner.banner-contact {
  background: linear-gradient(135deg, rgba(17, 29, 66, 0.95) 0%, rgba(27, 42, 91, 0.88) 50%, rgba(45, 125, 50, 0.82) 100%),
              url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1920&q=80') center/cover no-repeat;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 161, 45, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.page-banner-content {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Page Badge */
.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold-light);
  border: 1px solid rgba(201, 161, 45, 0.4);
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.85rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.page-badge i {
  color: var(--gold-light);
  font-size: 0.85rem;
}

.page-banner-title {
  color: var(--white);
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.banner-line {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--secondary), var(--gold-light));
  border-radius: var(--radius-full);
  margin: 0.5rem auto 1rem;
}

.page-banner-subtitle {
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.08rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Breadcrumb Navigation */
.breadcrumb-container {
  display: inline-flex;
}

.breadcrumb-list,
.breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(17, 29, 66, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
  list-style: none;
  margin: 0;
}

.breadcrumb-list li,
.breadcrumb li,
.breadcrumb span,
.breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.breadcrumb-list a,
.breadcrumb a {
  color: var(--gold-light);
  font-weight: 600;
  transition: all var(--ease);
}

.breadcrumb-list a:hover,
.breadcrumb a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.breadcrumb-list .separator,
.breadcrumb .separator {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
}

.breadcrumb-list .current,
.breadcrumb-list .active,
.breadcrumb .current,
.breadcrumb .active {
  color: var(--white);
  font-weight: 600;
}

/* Contact Form Card */
.contact-form-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--primary);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group.full-width {
  grid-column: 1 / -1;
}
.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}
.form-input, .form-textarea, .form-select {
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-white);
  outline: none;
  transition: all var(--ease);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,42,91,0.1);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Detailed Program Cards */
.program-detail-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
}
.program-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold);
}
.program-detail-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.program-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.program-detail-card:hover .program-detail-img img {
  transform: scale(1.05);
}
.program-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--secondary);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.program-detail-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.program-detail-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}
.program-detail-body p {
  color: var(--text-body);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}
.program-features {
  list-style: none;
  margin-bottom: 1.25rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}
.program-features li {
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.program-features li i {
  color: var(--accent);
  font-size: 0.8rem;
}

/* Program Pricing Card & Schedule Selection */
.program-pricing-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.25rem;
  margin-bottom: 1.25rem;
  transition: all var(--ease);
}
.program-detail-card:hover .program-pricing-card {
  border-color: var(--secondary-light);
  background: rgba(232, 101, 42, 0.03);
}
.pricing-header {
  margin-bottom: 0.85rem;
}
.pricing-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}
.pricing-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-light);
  display: block;
}
.min-group-notice {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--secondary);
  background: rgba(232, 101, 42, 0.12);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}
.price-tags {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.price-tag {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-heading);
  color: var(--text-dark);
}
.price-tag .currency {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  margin-right: 2px;
}
.price-tag .amount {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-dark);
}
.price-tag .period {
  font-size: 0.82rem;
  color: var(--text-body);
  margin-left: 3px;
  font-weight: 500;
}
.save-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff !important;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  margin-left: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 6px rgba(5, 150, 105, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.3);
  line-height: 1.2;
}

/* Schedule Selector Pills */
.schedule-selector-group {
  border-top: 1px dashed var(--border);
  padding-top: 0.75rem;
}
.schedule-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}
.schedule-label i {
  color: var(--secondary);
  margin-right: 0.25rem;
}
.schedule-pill-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.schedule-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.6rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-white);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
  transition: all var(--ease);
  user-select: none;
}
.schedule-pill input[type="radio"] {
  display: none;
}
.schedule-pill span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.schedule-pill span i {
  color: var(--gold);
}
.schedule-pill:hover {
  border-color: var(--secondary-light);
  color: var(--secondary);
}
.schedule-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(27, 42, 91, 0.25);
}
.schedule-pill.active span i {
  color: var(--gold-light);
}

/* Program Action Buttons */
.program-action-buttons {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.6rem;
  margin-top: auto;
}
.btn-subscribe {
  width: 100%;
  padding: 0.75rem 1rem !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, var(--secondary) 0%, #ff7a38 100%) !important;
  border-color: var(--secondary) !important;
  box-shadow: 0 4px 14px rgba(232, 101, 42, 0.3);
}
.btn-subscribe:hover {
  background: linear-gradient(135deg, #d4551d 0%, var(--secondary) 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(232, 101, 42, 0.4);
}
.btn-trial {
  width: 100%;
  padding: 0.75rem 0.8rem !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  text-align: center;
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}
.btn-trial:hover {
  background: var(--primary) !important;
  color: var(--white) !important;
}

/* ==========================================================================
   25. PAYMENT GATEWAY & SUBSCRIPTION MODAL
   ========================================================================== */
.payment-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 20, 48, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  overflow-y: auto;
}
.payment-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.payment-modal-card {
  width: 100%;
  max-width: 680px;
  max-height: 92vh;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.94) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  margin: auto;
}
.payment-modal-overlay.active .payment-modal-card {
  transform: scale(1) translateY(0);
}
.payment-modal-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--gold);
}
.modal-header-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.modal-logo-circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #ffffff;
  border-radius: 50%;
  padding: 2px;
  border: 2px solid var(--gold);
  overflow: hidden;
}
.modal-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.modal-header-brand h3 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--white);
  font-weight: 700;
}
.modal-header-brand p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--gold-light);
}
.modal-close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
}
.modal-close-btn:hover {
  background: var(--secondary);
  transform: rotate(90deg);
}

.payment-modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}
.checkout-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}
.checkout-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.section-title-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.step-num {
  width: 24px;
  height: 24px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-title-badge h4 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--primary);
  font-weight: 700;
}

.selected-program-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: rgba(27, 42, 91, 0.06);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--secondary);
  margin-bottom: 1rem;
}

.modal-form-group {
  margin-bottom: 1rem;
}
.modal-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}
.modal-label i {
  color: var(--secondary);
  margin-right: 0.3rem;
}
.modal-input {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: all var(--ease);
}
.modal-input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(232, 101, 42, 0.15);
}
.modal-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.input-helper {
  display: block;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.modal-toggle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.modal-toggle-card {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.75rem 0.9rem;
  cursor: pointer;
  transition: all var(--ease);
  background: var(--bg-white);
}
.modal-toggle-card input[type="radio"] {
  display: none;
}
.toggle-card-content {
  display: flex;
  flex-direction: column;
}
.toggle-card-content strong {
  font-size: 0.88rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.toggle-card-content span {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.modal-price-display {
  color: var(--secondary) !important;
  font-weight: 700;
}
.badge-saving {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff !important;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(5, 150, 105, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-left: 0.35rem;
  line-height: 1.2;
  vertical-align: middle;
}
.badge-saving i {
  color: #fbbf24;
  font-size: 0.65rem;
}
.modal-toggle-card:hover {
  border-color: var(--secondary-light);
}
.modal-toggle-card.active {
  border-color: var(--secondary);
  background: rgba(232, 101, 42, 0.06);
  box-shadow: 0 2px 12px rgba(232, 101, 42, 0.18);
}
.modal-toggle-card.active .toggle-card-content strong {
  color: var(--primary-dark);
}

.group-stepper {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.group-stepper input {
  max-width: 100px;
}
.stepper-helper {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--primary);
}

.payable-total-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  border-left: 5px solid var(--gold);
}
.payable-left {
  display: flex;
  flex-direction: column;
}
.payable-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold-light);
  font-weight: 600;
}
.payable-breakdown {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}
.payable-amount {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
}

/* Payment Tabs & Bank Details */
.payment-tabs-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.payment-tab-btn {
  flex: 1;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-light);
  color: var(--text-body);
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.payment-tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(27, 42, 91, 0.25);
}
.payment-tab-pane {
  display: none;
}
.payment-tab-pane.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.bank-details-card {
  background: rgba(27, 42, 91, 0.03);
  border: 1.5px solid rgba(27, 42, 91, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
}
.bank-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.75rem;
}
.bank-card-header i {
  color: #10b981;
  font-size: 1.5rem;
  margin-top: 2px;
}
.bank-card-header strong {
  font-size: 0.95rem;
  color: var(--primary-dark);
  display: block;
}
.bank-card-header p {
  font-size: 0.8rem;
  margin: 0;
  color: var(--text-body);
}

.bank-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.bank-detail-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 0.85rem;
}
.bank-detail-item.highlight-item {
  background: rgba(201, 161, 45, 0.08);
  border-color: var(--gold);
}
.bank-detail-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.bank-detail-val-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.bank-detail-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-dark);
}
.bank-detail-value.account-num,
.bank-detail-value.ifsc-code {
  font-size: 1.05rem;
  color: var(--primary-dark);
  letter-spacing: 0.5px;
}
.copy-btn {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
}
.copy-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.copy-btn.btn-copy-highlight {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.copy-btn.btn-copy-highlight:hover {
  background: var(--primary);
}
.copy-btn.copied {
  background: #10b981 !important;
  color: #fff !important;
  border-color: #10b981 !important;
}

/* UPI QR Card */
.upi-qr-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.25rem;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  align-items: center;
}
.qr-code-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-light);
  padding: 0.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.upi-qr-image {
  width: 150px;
  height: 150px;
  border-radius: 6px;
}
.qr-scan-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--secondary);
}
.upi-info-col h5 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  color: var(--primary);
}
.upi-info-col p {
  font-size: 0.82rem;
  color: var(--text-body);
  margin-bottom: 0.75rem;
}
.upi-id-box {
  background: rgba(232, 101, 42, 0.08);
  border: 1px solid var(--secondary-light);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.upi-id-box span { font-size: 0.75rem; color: var(--text-muted); }
.upi-id-box strong { font-size: 0.92rem; color: var(--secondary-dark); }
.upi-apps-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
}
.upi-apps-icons span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.btn-submit-payment {
  width: 100%;
  padding: 0.85rem !important;
  font-size: 1.05rem !important;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  border-color: #059669 !important;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}
.btn-submit-payment:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.45);
}

/* Success Receipt */
.payment-success-card {
  text-align: center;
  padding: 1rem 0;
}
.success-icon-circle {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}
.payment-success-card h3 {
  color: var(--primary);
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}
.success-subtitle {
  font-size: 0.88rem;
  color: var(--text-body);
  max-width: 500px;
  margin: 0 auto 1.5rem;
}
.subscription-receipt {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: left;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.receipt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.6rem;
  margin-bottom: 0.85rem;
}
.receipt-brand {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}
.receipt-id {
  font-family: monospace;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary);
}
.receipt-rows {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.receipt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.86rem;
  padding: 0.2rem 0;
}
.receipt-row span { color: var(--text-body); }
.receipt-row strong { color: var(--text-dark); font-weight: 600; }
.receipt-row.total-row {
  border-top: 1px solid var(--border);
  padding-top: 0.6rem;
  margin-top: 0.4rem;
}
.receipt-row.total-row span { font-weight: 700; color: var(--primary); }
.receipt-amount {
  font-family: var(--font-heading);
  font-size: 1.25rem !important;
  color: var(--secondary) !important;
  font-weight: 800 !important;
}

.success-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.btn-whatsapp {
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: #fff !important;
}
.btn-whatsapp:hover {
  background: #1ebc59 !important;
}

/* Modal Responsive Rules */
@media (max-width: 680px) {
  .payment-modal-card { max-height: 96vh; }
  .modal-form-grid { grid-template-columns: 1fr; }
  .modal-toggle-grid { grid-template-columns: 1fr; }
  .bank-details-grid { grid-template-columns: 1fr; }
  .upi-qr-card { grid-template-columns: 1fr; text-align: center; }
  .upi-id-box { flex-direction: column; gap: 0.4rem; }
  .upi-apps-icons { justify-content: center; }
  .program-action-buttons { grid-template-columns: 1fr; }
  .payable-total-box { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* Call To Action Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--secondary) 100%);
  color: var(--white);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-section p {
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Gallery Filter Bar */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.55rem 1.35rem;
  border: 1px solid var(--border);
  background: var(--bg-white);
  color: var(--text-body);
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--ease);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   24. COMPREHENSIVE MOBILE & TABLET RESPONSIVENESS
   ========================================================================== */

/* --- 1200px Breakpoint (Small Desktops & Large Tablets) --- */
@media (max-width: 1200px) {
  .nav-link {
    font-size: 1.02rem;
    padding: 0.5rem 0.6rem;
  }
  .cta-btn {
    padding: 0.65rem 1.25rem !important;
    font-size: 0.92rem !important;
  }
  .hero-grid {
    gap: 2.5rem;
  }
}

/* --- 1024px Breakpoint (Tablets & Medium Screens) --- */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 1.5rem);
    padding-bottom: 3.5rem;
  }
  .hero-container {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-left-content {
    max-width: 100%;
    text-align: center;
  }
  .hero-rotator {
    justify-content: center;
    min-height: 125px;
  }
  .rotator-indicators {
    justify-content: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-right-form {
    justify-content: center;
    width: 100%;
  }
  .hero-enquiry-card {
    max-width: 520px;
    margin: 0 auto;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .split-img {
    order: -1;
  }
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .three-column-grid,
  .vmv-grid,
  .features-grid,
  .pillars-grid,
  .team-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .director-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .large-quote {
    border-left: none;
    padding-left: 0;
    border-top: 4px solid var(--gold);
    padding-top: 1.25rem;
  }
}

/* --- 768px Breakpoint (Tablets Portrait & Larger Mobile) --- */
@media (max-width: 768px) {
  :root {
    --header-h: 88px;
  }
  
  /* Prevent Any Horizontal Scrolling */
  html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  /* Section Spacing */
  .section {
    padding: 3rem 0;
  }
  .section-header {
    margin-bottom: 2rem;
  }
  .section-header h2 {
    font-size: 1.85rem;
  }
  .section-desc {
    font-size: 0.92rem;
    padding: 0 0.5rem;
  }

  /* Header & Logo */
  .header {
    height: var(--header-h);
  }
  .logo-circle-wrapper {
    width: 64px;
    height: 64px;
    min-width: 64px;
  }
  .logo-brand {
    font-size: 1.35rem;
  }
  .logo-tagline {
    font-size: 0.56rem;
    letter-spacing: 0.3px;
  }

  /* Mobile Drawer Navigation */
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.85rem;
    padding: calc(var(--header-h) + 1.5rem) 1.5rem 2.5rem;
    transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.active {
    left: 0;
  }
  .nav-link {
    color: var(--primary-dark) !important;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 0.6rem 1.5rem;
    width: 100%;
    text-align: center;
    border-radius: var(--radius);
  }
  .nav-link:hover,
  .nav-link.active {
    color: var(--secondary) !important;
    background: rgba(232, 101, 42, 0.08);
  }
  .nav-link::after {
    display: none;
  }
  .cta-btn {
    display: none !important;
  }
  .mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
  }
  .header.scrolled .mobile-toggle {
    background: rgba(27, 42, 91, 0.06);
    border-color: var(--border);
  }

  /* Page Banners on Inner Pages */
  .page-banner {
    padding: calc(var(--header-h) + 1.5rem) 0 2.5rem;
  }
  .page-banner-title {
    font-size: clamp(1.75rem, 6vw, 2.35rem);
    line-height: 1.25;
  }
  .page-banner-subtitle {
    font-size: 0.92rem;
    padding: 0 0.5rem;
  }
  .breadcrumb-list {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.82rem;
  }

  /* Hero Section */
  .hero-rotator {
    min-height: 135px;
  }
  .hero-main-title,
  .rotating-phrase {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem);
    line-height: 1.25;
  }
  .hero-rotator-wrapper {
    margin-bottom: 1.5rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-enquiry-card {
    padding: 1.5rem 1.25rem;
    max-width: 100%;
  }
  .hero-form-row {
    grid-template-columns: 1fr;
  }

  /* Programs & Cards */
  .program-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .program-detail-card {
    max-width: 100%;
  }
  .program-pricing-card {
    padding: 1.1rem 1rem;
  }
  .schedule-pill-group {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  .schedule-pill {
    padding: 0.55rem 0.75rem;
    font-size: 0.85rem;
    width: 100%;
  }
  .program-action-buttons {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .program-action-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1rem !important;
  }

  /* Stats & Grids */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .two-column-layout {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .contact-split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .contact-info-card,
  .contact-form-card {
    padding: 1.5rem 1.25rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  /* CTA & Footer */
  .cta-section {
    padding: 3.5rem 1rem;
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .footer {
    padding: 3.5rem 0 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    padding-top: 1.5rem;
  }
  .footer-legal {
    justify-content: center;
  }
}

/* --- 480px Breakpoint (Smartphones) --- */
@media (max-width: 480px) {
  :root {
    --header-h: 80px;
  }

  .container {
    padding: 0 1rem;
  }

  .header.scrolled {
    height: 72px;
  }
  .logo-circle-wrapper {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }
  .logo-brand {
    font-size: 1.15rem;
  }
  .logo-tagline {
    font-size: 0.48rem;
    letter-spacing: 0.1px;
  }

  .hero-container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    padding-top: calc(var(--header-h) + 1rem);
    padding-bottom: 2.5rem;
  }
  .hero-rotator {
    min-height: 145px;
  }
  .hero-main-title,
  .rotating-phrase {
    font-size: 1.5rem;
  }

  .hero-enquiry-card {
    padding: 1.25rem 0.95rem;
    border-radius: var(--radius-lg);
  }
  .enquiry-card-header {
    gap: 0.4rem;
    flex-wrap: wrap;
  }
  .enquiry-header-left {
    gap: 0.5rem;
  }
  .card-header-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 0.95rem;
  }
  .enquiry-header-left h3 {
    font-size: 1.05rem;
  }
  .trial-badge {
    font-size: 0.68rem;
    padding: 0.22rem 0.55rem;
  }

  /* Forms & Touch Inputs (16px base font to eliminate iOS zoom) */
  .hero-input,
  .hero-select,
  .hero-textarea,
  .form-input,
  .form-select,
  .form-textarea,
  .modal-input {
    font-size: 16px !important;
    padding: 0.75rem 0.85rem;
    border-radius: var(--radius);
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
  .stat-card {
    padding: 1rem 0.5rem;
  }
  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
  }
  .stat-number {
    font-size: 1.6rem;
  }
  .stat-label {
    font-size: 0.72rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    height: 230px;
  }
  .gallery-filter-bar {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }
  .gallery-filter-bar::-webkit-scrollbar {
    display: none;
  }
  .filter-btn {
    flex-shrink: 0;
    padding: 0.4rem 0.95rem;
    font-size: 0.8rem;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 0.5rem;
  }
  .newsletter-form input {
    width: 100%;
  }
  .newsletter-form button {
    width: 100%;
  }
}

/* --- 360px Breakpoint (Ultra-compact Screens) --- */
@media (max-width: 360px) {
  .logo-circle-wrapper {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
  .logo-brand {
    font-size: 1.05rem;
  }
  .logo-tagline {
    display: none;
  }
  .hero-main-title,
  .rotating-phrase {
    font-size: 1.35rem;
  }
  .hero-rotator {
    min-height: 155px;
  }
}
