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

/* --- DESIGN SYSTEM TOKENS --- */
:root {
  /* Color Palette */
  --bg-primary: #0a110a; /* Dark olive background */
  --bg-secondary: #111f12; /* Sage-olive secondary */
  --bg-card: rgba(22, 38, 23, 0.45); /* Glassmorphism card fill */
  --bg-input: rgba(13, 23, 14, 0.7); /* Deep dark input background */
  --bg-nav: rgba(10, 17, 10, 0.85); /* Navbar sticky fill */
  
  --color-army-dark: #162617;
  --color-army-med: #223c24;
  --color-army-light: #2d5432;
  --color-army-accent: #3d7043;
  
  --color-gold: #cda052;
  --color-gold-light: #f3e7c4;
  --color-gold-dark: #aa7c11;
  --color-saffron: #ff9933;
  --color-saffron-dark: #e07a16;
  --color-white: #ffffff;
  --color-text-muted: #a0b2a2;
  --color-text-body: #d1dfd3;
  
  /* Gradients */
  --grad-gold: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  --grad-saffron: linear-gradient(135deg, var(--color-saffron) 0%, var(--color-saffron-dark) 100%);
  --grad-army: linear-gradient(135deg, #111f12 0%, #1c351f 100%);
  --grad-dark: linear-gradient(180deg, #0a110a 0%, #111f12 100%);
  --grad-hero: radial-gradient(circle at 50% 50%, rgba(34, 60, 36, 0.4) 0%, rgba(10, 17, 10, 1) 80%);
  
  /* Shadows & Borders */
  --glass-border: rgba(205, 160, 82, 0.15); /* Gold glow border */
  --glass-border-focus: rgba(205, 160, 82, 0.4);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  --shadow-gold-glow: 0 0 25px rgba(205, 160, 82, 0.25);
  --shadow-saffron-glow: 0 0 25px rgba(255, 153, 51, 0.25);
  
  /* Typography & Layout */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* --- RESET & BASIC STYLING --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--color-text-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Base custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--color-army-med);
  border: 2px solid var(--bg-primary);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* --- CORE LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

/* Global utility headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}

.text-gradient-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-saffron {
  background: var(--grad-saffron);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-headings);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 30px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: var(--color-gold);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 650px;
  margin-bottom: 4rem;
}

/* Button systems */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--border-radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--grad-gold);
  color: #0c140c;
  border: none;
  box-shadow: 0 4px 15px rgba(205, 160, 82, 0.3);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-glow);
}

.btn-primary:hover::after {
  opacity: 0.35;
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-army-light);
}

.btn-secondary:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(205, 160, 82, 0.1);
  background: rgba(22, 38, 23, 0.3);
}

.btn-saffron {
  background: var(--grad-saffron);
  color: var(--color-white);
  border: none;
  box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}

.btn-saffron:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-saffron-glow);
}

/* Glassmorphism card default styles */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(205, 160, 82, 0.35);
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(205, 160, 82, 0.05);
}

/* --- ANIMATION CONTROLS (Intersection Observer) --- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-right {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-left {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Delay modifiers */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* Dynamic Background Glows */
.bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 60, 36, 0.3) 0%, rgba(0,0,0,0) 70%);
  z-index: 0;
  pointer-events: none;
  filter: blur(40px);
}

/* --- HEADER & NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 0.5rem 0;
  background: rgba(10, 17, 10, 0.96);
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
  transition: var(--transition-smooth);
}

header.scrolled .nav-container {
  height: 70px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.logo-img {
  height: 50px;
  width: 50px;
  object-fit: contain;
  transition: var(--transition-smooth);
}

header.scrolled .logo-img {
  height: 40px;
  width: 40px;
}

.logo-text {
  font-family: var(--font-headings);
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--color-white);
  text-transform: uppercase;
  opacity: 0.8;
}

/* Nav Menu links */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.2rem;
}

.nav-item a {
  font-family: var(--font-headings);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-body);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-gold);
  transition: var(--transition-smooth);
}

.nav-item a:hover {
  color: var(--color-gold-light);
}

.nav-item a:hover::after {
  width: 100%;
}

.nav-item a.active {
  color: var(--color-gold);
}

.nav-item a.active::after {
  width: 100%;
  background: var(--grad-gold);
}

.nav-cta {
  display: flex;
  align-items: center;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.mobile-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--color-white);
  border-radius: 3px;
  transition: var(--transition-smooth);
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  padding: 10rem 0 6rem 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--bg-primary) 0%, rgba(10, 17, 10, 0) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  z-index: 3;
}

.badge-patriotic {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(225, 225, 225, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.8rem;
}

.badge-patriotic i {
  color: var(--color-saffron);
  text-shadow: 0 0 10px rgba(255, 153, 51, 0.5);
}

.hero-title {
  font-size: 4.8rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

/* Stats Counter Grid */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-top: 0.3rem;
}

/* Hero Badge Frame */
.hero-badge-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-badge-frame {
  position: relative;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(205, 160, 82, 0.15) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

.hero-badge-frame::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px dashed rgba(205, 160, 82, 0.2);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}

.hero-badge-img {
  width: 250px;
  height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 15px rgba(205, 160, 82, 0.3));
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* --- INTRO & ABOUT SECTION --- */
.intro {
  background: var(--bg-primary);
  z-index: 2;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.about-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.about-feat-icon {
  background: var(--color-army-dark);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(205, 160, 82, 0.15);
}

.about-feat-icon i {
  color: var(--color-gold);
  font-size: 1.1rem;
}

.about-feat-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.about-feat-details p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Major Ravi Portrait Frame */
.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-premium);
  aspect-ratio: 4 / 5;
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: var(--transition-smooth);
}

.portrait-frame:hover .portrait-img {
  transform: scale(1.05);
}

.portrait-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem 2rem;
  background: linear-gradient(to top, rgba(10, 17, 10, 0.95) 0%, rgba(10, 17, 10, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.portrait-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
}

.portrait-title {
  font-size: 0.85rem;
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.portrait-accent-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--grad-gold);
  color: #0c140c;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(205, 160, 82, 0.35);
}

/* --- MISSION & VISION --- */
.mission-vision {
  background: var(--bg-secondary);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.mv-card {
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-gold);
}

.mv-card.vision-card::before {
  background: var(--grad-saffron);
}

.mv-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--border-radius-sm);
  background: rgba(205, 160, 82, 0.1);
  border: 1px solid rgba(205, 160, 82, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.mv-card.vision-card .mv-icon {
  background: rgba(255, 153, 51, 0.1);
  border-color: rgba(255, 153, 51, 0.2);
}

.mv-card:hover .mv-icon {
  transform: rotate(10deg) scale(1.1);
  background: var(--color-gold);
}

.mv-card.vision-card:hover .mv-icon {
  background: var(--color-saffron);
}

.mv-icon i {
  font-size: 1.8rem;
  color: var(--color-gold);
  transition: var(--transition-smooth);
}

.mv-card.vision-card .mv-icon i {
  color: var(--color-saffron);
}

.mv-card:hover .mv-icon i {
  color: #0c140c;
}

.mv-card.vision-card:hover .mv-icon i {
  color: var(--color-white);
}

.mv-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.mv-card p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* --- TRAINING PROGRAMS --- */
.programs {
  background: var(--bg-primary);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.program-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 480px;
}

.program-img-wrapper {
  height: 220px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.program-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to top, #112012 0%, rgba(17, 32, 18, 0) 100%);
  z-index: 2;
}

.program-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.program-card:hover .program-img {
  transform: scale(1.08);
}

.program-icon-badge {
  position: absolute;
  bottom: 1.2rem;
  right: 1.5rem;
  background: var(--bg-primary);
  border: 1px solid var(--color-gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  transition: var(--transition-smooth);
}

.program-card:hover .program-icon-badge {
  background: var(--color-gold);
  transform: scale(1.1);
}

.program-icon-badge i {
  color: var(--color-gold);
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.program-card:hover .program-icon-badge i {
  color: #0c140c;
}

.program-info {
  padding: 2rem 2.2rem 2.5rem 2.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.program-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.program-card:hover .program-info h3 {
  color: var(--color-gold);
}

.program-info p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.program-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold);
  text-decoration: none;
  transition: var(--transition-fast);
  margin-top: auto;
}

.program-link i {
  font-size: 0.8rem;
  transition: var(--transition-fast);
}

.program-link:hover {
  color: var(--color-white);
}

.program-link:hover i {
  transform: translateX(5px);
}

/* --- WHY CHOOSE US --- */
.why-choose-us {
  background: var(--bg-secondary);
}

.wcu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.wcu-card {
  padding: 2.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wcu-icon-frame {
  width: 65px;
  height: 65px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  transition: var(--transition-smooth);
}

.wcu-card:hover .wcu-icon-frame {
  border-color: var(--color-gold);
  background: rgba(205, 160, 82, 0.05);
  transform: scale(1.05);
}

.wcu-icon-frame i {
  color: var(--color-white);
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.wcu-card:hover .wcu-icon-frame i {
  color: var(--color-gold);
}

.wcu-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.wcu-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* --- DAILY TRAINING SCHEDULE --- */
.schedule {
  background: var(--bg-primary);
}

.schedule-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.schedule-tabs {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

.tab-btn {
  background: rgba(22, 38, 23, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.8rem 1.8rem;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  border-color: rgba(205, 160, 82, 0.3);
  color: var(--color-white);
}

.tab-btn.active {
  background: var(--grad-gold);
  color: #0c140c;
  border-color: transparent;
  box-shadow: var(--shadow-gold-glow);
}

/* Schedule Pane Styles */
.schedule-pane {
  display: none;
  flex-direction: column;
  gap: 1.2rem;
}

.schedule-pane.active {
  display: flex;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.schedule-row {
  display: flex;
  align-items: center;
  background: rgba(22, 38, 23, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-sm);
  padding: 1.3rem 2rem;
  transition: var(--transition-smooth);
}

.schedule-row:hover {
  background: rgba(22, 38, 23, 0.5);
  border-color: var(--glass-border);
  transform: translateX(10px);
}

.schedule-time {
  width: 150px;
  flex-shrink: 0;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.schedule-time i {
  font-size: 0.9rem;
}

.schedule-details {
  flex-grow: 1;
}

.schedule-details h4 {
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.schedule-details p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.schedule-type {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-family: var(--font-headings);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-white);
}

.schedule-row:hover .schedule-type {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* --- SUCCESS STORIES --- */
.testimonials {
  background: var(--bg-secondary);
}

.carousel-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 1rem;
}

.testimonial-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 4rem;
  box-shadow: var(--shadow-premium);
  position: relative;
  text-align: center;
}

.quote-icon {
  position: absolute;
  top: 2rem;
  left: 3rem;
  font-size: 4rem;
  color: rgba(205, 160, 82, 0.08);
  pointer-events: none;
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
  display: flex;
  justify-content: center;
  gap: 0.3rem;
}

.testimonial-text {
  font-size: 1.25rem;
  color: var(--color-white);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 2.5rem;
}

.testimonial-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-avatar {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  padding: 3px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.testimonial-name {
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
}

.testimonial-rank {
  font-family: var(--font-headings);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(205, 160, 82, 0.08);
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  border: 1px solid rgba(205, 160, 82, 0.15);
}

/* Carousel Control Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(22, 38, 23, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-smooth);
}

.carousel-btn:hover {
  background: var(--color-gold);
  border-color: transparent;
}

.carousel-btn i {
  color: var(--color-white);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.carousel-btn:hover i {
  color: #0c140c;
}

.carousel-btn-prev {
  left: 0;
}

.carousel-btn-next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active {
  background: var(--color-gold);
  width: 25px;
  border-radius: 5px;
}

/* --- GALLERY --- */
.gallery {
  background: var(--bg-primary);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.6rem 1.5rem;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover {
  border-color: rgba(205, 160, 82, 0.3);
  color: var(--color-white);
}

.filter-btn.active {
  background: var(--color-gold);
  color: #0c140c;
  border-color: var(--color-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: var(--shadow-premium);
  display: block;
}

.gallery-item.hidden {
  display: none;
}

.gallery-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-item-img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 17, 10, 0.9) 0%, rgba(10, 17, 10, 0.3) 70%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  color: var(--color-white);
}

.gallery-cat {
  font-family: var(--font-headings);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.3rem;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  transition-delay: 0.05s;
}

.gallery-item:hover .gallery-title,
.gallery-item:hover .gallery-cat {
  transform: translateY(0);
}

.gallery-zoom-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(205, 160, 82, 0.2);
  border: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

.gallery-zoom-icon i {
  color: var(--color-gold-light);
  font-size: 0.9rem;
}

/* --- LOCATION & INFO SECTION --- */
.location {
  background: var(--bg-secondary);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.location-visual {
  height: 450px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-premium);
}

.location-visual iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.85) invert(0.95) contrast(1.1) hue-rotate(80deg);
}

.landmark-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.2rem;
}

.landmark-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.landmark-icon {
  width: 45px;
  height: 45px;
  background: rgba(205, 160, 82, 0.08);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.landmark-icon i {
  color: var(--color-gold);
  font-size: 1.1rem;
}

.landmark-info h4 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.landmark-info p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* --- CONTACT & ENQUIRY --- */
.contact {
  background: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-card-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-card {
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
}

.contact-detail-card:hover {
  transform: translateX(8px);
}

.contact-card-icon {
  width: 55px;
  height: 55px;
  background: rgba(22, 38, 23, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-detail-card:hover .contact-card-icon {
  background: var(--color-gold);
}

.contact-card-icon i {
  color: var(--color-gold);
  font-size: 1.3rem;
  transition: var(--transition-smooth);
}

.contact-detail-card:hover .contact-card-icon i {
  color: #0c140c;
}

.contact-card-text {
  display: flex;
  flex-direction: column;
}

.contact-card-label {
  font-size: 0.75rem;
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-card-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-top: 0.1rem;
}

.contact-socials-wrapper {
  margin-top: 2rem;
}

.contact-socials-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.contact-socials {
  display: flex;
  gap: 1rem;
}

.contact-social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(22, 38, 23, 0.3);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-social-link i {
  color: var(--color-text-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.contact-social-link:hover {
  background: var(--color-gold);
  border-color: transparent;
  transform: translateY(-5px);
}

.contact-social-link:hover i {
  color: #0c140c;
}

/* Enquiry Form */
.enquiry-form-card {
  padding: 3rem;
}

.enquiry-form-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.enquiry-form-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-full-width {
  grid-column: span 2;
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-input {
  background: var(--bg-input);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-sm);
  padding: 1rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-white);
  transition: var(--transition-smooth);
  width: 100%;
}

.form-input::placeholder {
  color: transparent; /* Used for floating label logic */
}

.form-label {
  position: absolute;
  left: 1.2rem;
  top: 1rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  pointer-events: none;
  transition: var(--transition-smooth);
}

/* Floating Label Animation */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -0.65rem;
  left: 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-gold);
  background: #122113;
  padding: 0 0.5rem;
  border-radius: 4px;
}

.form-input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 15px rgba(205, 160, 82, 0.15);
  outline: none;
}

select.form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cda052' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

select.form-input option {
  background-color: var(--bg-primary);
  color: var(--color-white);
}

.form-group textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  width: 100%;
  margin-top: 1rem;
}

/* Success notification message */
.form-success-msg {
  display: none;
  background: rgba(34, 60, 36, 0.4);
  border: 1px solid var(--color-gold);
  border-radius: var(--border-radius-sm);
  padding: 1.2rem;
  text-align: center;
  margin-top: 1.5rem;
  animation: fadeIn 0.4s ease forwards;
}

.form-success-msg i {
  color: var(--color-gold);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-success-msg p {
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

/* --- FOOTER --- */
footer {
  background: #060b06;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 6rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 5rem;
  margin-bottom: 4rem;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-logo img {
  height: 50px;
  width: 50px;
}

.footer-logo-title {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-logo-sub {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.footer-patriotic-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.footer-patriotic-badge i {
  color: var(--color-saffron);
}

.footer-patriotic-badge span {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
}

.footer-links-col {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--color-gold);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-links li a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links li a:hover {
  color: var(--color-gold-light);
  transform: translateX(4px);
}

.footer-links li a i {
  font-size: 0.75rem;
  color: var(--color-gold);
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-contact-item i {
  color: var(--color-gold);
  font-size: 1rem;
  margin-top: 0.2rem;
}

.footer-contact-item p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Bottom copyright bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--color-gold);
}

/* Back To Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 45px;
  height: 45px;
  background: rgba(22, 38, 23, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.back-to-top.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-gold);
  border-color: transparent;
  transform: translateY(-5px);
}

.back-to-top i {
  color: var(--color-white);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.back-to-top:hover i {
  color: #0c140c;
}


/* --- RESPONSIVE STYLE BREAKPOINTS --- */

@media (max-width: 1100px) {
  .hero-title {
    font-size: 3.8rem;
  }
  .hero-grid, .intro-grid, .location-grid, .contact-grid {
    gap: 3rem;
  }
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wcu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  section {
    padding: 6rem 0;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(10, 17, 10, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--glass-border);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 3rem;
    z-index: 1050;
    transition: var(--transition-smooth);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  /* hamburger transformations when active */
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -7px);
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .badge-patriotic {
    justify-content: center;
  }
  
  .hero-desc {
    margin: 0 auto 3rem auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .hero-badge-container {
    order: -1;
  }
  
  .hero-badge-frame {
    width: 300px;
    height: 300px;
  }
  
  .hero-badge-img {
    width: 190px;
    height: 190px;
  }
  
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-visual {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .location-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .location-visual {
    height: 350px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  .programs-grid, .wcu-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .schedule-tabs {
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  
  .tab-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
  
  .schedule-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1.5rem;
  }
  
  .schedule-time {
    width: auto;
  }
  
  .testimonial-card {
    padding: 2.5rem 1.5rem;
  }
  
  .quote-icon {
    display: none;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-full-width {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}
