/* ========================================
   MASTER DESIGN: CONFIDENCE & AUTHORITY
   By World's Best Designer
   Color Psychology: Navy Blue (Trust), Purple (Wisdom), Magenta (Power), Mustard (Success)
   Distribution: White 60%, Navy 23%, Purple 10%, Magenta 5%, Mustard 2%
   ======================================== */

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

:root {
  /* MASTER COLOR PALETTE - Confidence & Authority */
  --navy-primary: #1A2B52;         /* Navy Blue - Trust & Authority (23%) */
  --navy-dark: #0F1B36;            /* Deep Navy */
  --navy-light: #2A3F6F;           /* Light Navy */
  
  --purple-secondary: #6B46C1;     /* Royal Purple - Wisdom & Luxury (10%) */
  --purple-light: #8B5CF6;         /* Light Purple */
  
  --magenta-accent: #C41E62;       /* Deep Magenta - Power & Passion (5%) */
  --magenta-soft: #E63980;         /* Soft Magenta */
  
  --mustard-highlight: #D4A017;    /* Deep Mustard Yellow - Success (2%) */
  --mustard-light: #F5C542;        /* Light Mustard */
  
  --white: #FFFFFF;                /* Pure White (60%) */
  --cream: #FDFCFA;                /* Off White */
  --gray-light: #F7F7F7;           /* Light Gray */
  
  --text-dark: #1A1A1A;            /* Dark Text */
  --text-muted: #6B7280;           /* Muted Text */
  
  /* Sophisticated Shadows */
  --shadow-sm: 0 2px 12px rgba(26, 43, 82, 0.08);
  --shadow-md: 0 4px 24px rgba(26, 43, 82, 0.12);
  --shadow-lg: 0 8px 40px rgba(26, 43, 82, 0.16);
  --shadow-xl: 0 16px 60px rgba(26, 43, 82, 0.20);
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

/* ========== TYPOGRAPHY HIERARCHY ========== */
h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy-primary);
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy-primary);
}

h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy-primary);
}

h4 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--navy-primary);
}

p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  color: var(--text-dark);
}

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1.5rem 0;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(26, 43, 82, 0.08);
}

.navbar.scrolled {
  padding: 1rem 0;
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: absolute;
  left: 3rem;
}

.logo {
  height: 70px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.mantra {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--navy-primary);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-menu {
  display: flex;
  gap: 3rem;
  list-style: none;
  align-items: center;
  position: absolute;
  right: 3rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--navy-primary);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--mustard-highlight);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--purple-secondary);
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: var(--navy-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ========== HERO SECTION - REDESIGNED ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 90px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.0) contrast(1.35) saturate(1.25);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(26, 43, 82, 0.70) 0%,
    rgba(107, 70, 193, 0.45) 50%,
    rgba(196, 30, 98, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
  max-width: 1000px;
  padding: 3rem;
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  display: none;
}

.hero-content p {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 3rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.btn {
  display: inline-block;
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-lg);
}

.btn-primary {
  background: var(--mustard-highlight);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--mustard-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

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

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

/* ========== SECTION STYLES ========== */
.section {
  padding: 8rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--purple-secondary);
  margin-bottom: 1.5rem;
}

.section-title {
  margin-bottom: 2rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.section-subtitle {
  font-size: 1.375rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ========== ABOUT SECTION - REDESIGNED ========== */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 4rem;
}

.about-image {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.02);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-content h3 {
  color: var(--purple-secondary);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 500;
}

.about-content h2 {
  font-size: 2rem;
  line-height: 1.3;
}

.about-content p {
  margin-bottom: 1rem;
  line-height: 1.9;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
  padding: 2rem;
  background: var(--gray-light);
  border-radius: 15px;
  border-left: 5px solid var(--navy-primary);
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.credential-icon {
  font-size: 1.25rem;
  color: var(--mustard-highlight);
  flex-shrink: 0;
  font-weight: bold;
}

.credential-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-primary);
  line-height: 1.6;
}

/* Video Placeholder */
.video-container {
  background: var(--navy-primary);
  border-radius: 20px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-container:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 70px rgba(26, 43, 82, 0.25);
}

.video-container::before {
  content: '▶';
  font-size: 5rem;
  color: var(--mustard-highlight);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-container::after {
  content: 'Watch My Story';
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

/* ========== PROGRAMS SECTION - OPTIMIZED ========== */
.programs {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 100%);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.program-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  position: relative;
  overflow: visible;
  border: 2px solid rgba(26, 43, 82, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--navy-primary) 0%, 
    var(--purple-secondary) 50%, 
    var(--magenta-accent) 100%);
}

.program-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: var(--purple-secondary);
}

.program-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--magenta-accent);
  color: var(--white);
  padding: 0.625rem 1.25rem;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: var(--shadow-md);
}

.program-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  margin-top: 1rem;
  color: var(--navy-primary);
  font-weight: 700;
}

.program-tagline {
  font-size: 0.95rem;
  color: var(--purple-secondary);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  line-height: 1.5;
}

/* Hidden details - shown on hover */
.program-features,
.program-results {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

.program-card:hover .program-features,
.program-card:hover .program-results {
  max-height: 500px;
  opacity: 1;
  margin-bottom: 1.5rem;
}

.program-features h4,
.program-results h4 {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: var(--navy-primary);
  font-weight: 700;
}

.program-features ul {
  list-style: none;
  margin-bottom: 1rem;
}

.program-features li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.program-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--mustard-highlight);
  font-weight: bold;
  font-size: 1rem;
}

.program-results {
  background: linear-gradient(135deg, 
    rgba(26, 43, 82, 0.04) 0%, 
    rgba(107, 70, 193, 0.04) 100%);
  padding: 1rem;
  border-radius: 10px;
  border-left: 3px solid var(--purple-secondary);
}

.program-results ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.program-results li {
  font-size: 0.875rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--navy-primary);
  font-weight: 500;
}

.program-results li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--magenta-accent);
  font-weight: bold;
}

.program-duration {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.program-card .btn {
  width: 100%;
  text-align: center;
  padding: 1rem;
  background: var(--navy-primary);
  color: var(--white);
  margin-top: auto;
  font-size: 0.95rem;
}

.program-card .btn:hover {
  background: var(--purple-secondary);
  transform: none;
}

.program-card::after {
  content: 'Hover for details';
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.5;
  transition: opacity 0.3s ease;
  font-style: italic;
}

.program-card:hover::after {
  opacity: 0;
}

/* ========== GUARANTEE SECTION - THE KANCHAN PROMISE ========== */
.guarantee {
  position: relative;
  padding: 0;
  margin: 8rem auto;
  max-width: 1000px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow-xl);
}

.guarantee-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4);
}

.guarantee-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(26, 43, 82, 0.85) 0%, 
    rgba(107, 70, 193, 0.75) 50%,
    rgba(196, 30, 98, 0.70) 100%);
}

.guarantee-content {
  position: relative;
  z-index: 10;
  padding: 4rem 3rem;
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.guarantee h2 {
  color: var(--mustard-highlight);
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  text-shadow: 3px 6px 20px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  font-family: var(--font-heading);
  white-space: nowrap;
  text-align: center;
}

.guarantee p {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.5;
  font-weight: 600;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  text-align: center;
}

.guarantee .btn-primary {
  margin-top: 2rem;
  font-size: 1.25rem;
  padding: 1.5rem 3.5rem;
}

/* ========== BOOKING SECTION ========== */
.booking {
  background: var(--gray-light);
}

.booking-form {
  max-width: 650px;
  margin: 0 auto;
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26, 43, 82, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--navy-primary);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1.25rem;
  border: 2px solid rgba(26, 43, 82, 0.15);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple-secondary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(107, 70, 193, 0.1);
}

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

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

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--mustard-highlight);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.submit-btn:hover {
  background: var(--mustard-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  line-height: 1.6;
}

/* ========== CALENDLY INTEGRATION ========== */
.calendly-container {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26, 43, 82, 0.08);
}

.calendly-inline-widget {
  border-radius: 12px;
  overflow: hidden;
}

/* ========== MEDIA SECTION ========== */
.media {
  background: var(--white);
}

.video-placeholder {
  background: var(--navy-primary);
  border-radius: 20px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem auto;
  max-width: 1000px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-placeholder:hover {
  transform: scale(1.02);
}

.video-placeholder::before {
  content: '▶';
  font-size: 5rem;
  color: var(--mustard-highlight);
}

.media-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin: 4rem 0;
}

.media-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.media-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.media-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* ========== TESTIMONIALS - REDESIGNED ========== */
.testimonials {
  background: linear-gradient(180deg, var(--gray-light) 0%, var(--white) 100%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid rgba(26, 43, 82, 0.06);
}

.testimonial-card::before {
  content: '"';
  font-size: 7rem;
  position: absolute;
  top: -10px;
  left: 20px;
  color: rgba(107, 70, 193, 0.12);
  font-family: var(--font-heading);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--purple-secondary);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 700;
  color: var(--navy-primary);
  font-size: 1.15rem;
}

.testimonial-role {
  font-size: 0.95rem;
  color: var(--purple-secondary);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ========== SOCIAL CONNECT - LOGO INTEGRATION ========== */
.social-connect {
  background: var(--white);
}

.social-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  border: 2px solid rgba(26, 43, 82, 0.08);
}

.social-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-secondary);
}

.social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-info h4 {
  color: var(--navy-primary);
  margin-bottom: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.contact-form {
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--purple-secondary) 100%);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  color: var(--mustard-highlight);
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.contact-form .form-group label {
  color: var(--white);
}

.contact-form .submit-btn {
  background: var(--mustard-highlight);
  color: var(--white);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy-primary);
  color: var(--white);
  padding: 4rem 3rem 2rem;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-social a {
  display: inline-block;
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-5px) scale(1.1);
}

.footer-social a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  transition: all 0.3s ease;
}

.footer-social a:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.9s ease-out;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
  .about-container,
  .social-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .media-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section {
    padding: 6rem 2rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: start;
    padding: 4rem 2rem;
    gap: 2.5rem;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-xl);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero {
    min-height: 650px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .programs-grid {
    grid-template-columns: 1fr;
  }
  
  .credentials {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .media-gallery {
    grid-template-columns: 1fr;
  }
  
  .booking-form {
    padding: 2.5rem 2rem;
  }
  
  .guarantee-content {
    padding: 4rem 2rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 5rem 1.5rem;
  }
  
  .nav-container {
    padding: 0 1.5rem;
  }
  
  .logo {
    height: 55px;
  }
  
  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
