/* Summer Camp 2025 - Modern Design System */
/* Based on React Premium Landing Page */

/* Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Custom responsive form display */
.form-responsive {
  display: none !important;
}

@media (min-width: 992px) {
  .form-responsive {
    display: block !important;
  }
}

/* Custom responsive banner display */
.show-mobile {
  display: block !important;
}

.show-desktop {
  display: none !important;
}

@media (min-width: 992px) {
  .show-mobile {
    display: none !important;
  }
  .show-desktop {
    display: block !important;
  }
}

/* ============================================
   ROOT VARIABLES - COLOR SYSTEM
   ============================================ */
:root {
  /* Primary Colors - Red */
  --primary-50: #FEF2F2;
  --primary-100: #FEE2E2;
  --primary-200: #FECACA;
  --primary-300: #FCA5A5;
  --primary-400: #F87171;
  --primary-500: #EF4444;
  --primary-600: #DC2626;
  --primary-700: #B91C1C;
  --primary-800: #991B1B;
  --primary-900: #7F1D1D;

  /* Saffron Colors */
  --saffron-50: #FFFBEB;
  --saffron-100: #FEF3C7;
  --saffron-200: #FDE68A;
  --saffron-300: #FCD34D;
  --saffron-400: #FBBF24;
  --saffron-500: #F59E0B;
  --saffron-600: #D97706;
  --saffron-700: #B45309;
  --saffron-800: #92400E;
  --saffron-900: #78350F;

  /* Navy/Blue Colors */
  --navy-50: #F0F9FF;
  --navy-100: #E0F2FE;
  --navy-200: #BAE6FD;
  --navy-300: #7DD3FC;
  --navy-400: #38BDF8;
  --navy-500: #0EA5E9;
  --navy-600: #0284C7;
  --navy-700: #0369A1;
  --navy-800: #075985;
  --navy-900: #0C4A6E;

  /* Neutral Colors */
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 5rem;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--gray-900);
  line-height: 1.6;
  background: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Background Colors */
.bg-primary { background-color: var(--primary-600); }
.bg-primary-light { background-color: var(--primary-50); }
.bg-saffron { background-color: var(--saffron-400); }
.bg-saffron-500 { background-color: var(--saffron-500); }
.bg-navy { background-color: var(--navy-600); }
.bg-gray-50 { background-color: var(--gray-50); }
.bg-gray-100 { background-color: var(--gray-100); }
.bg-gray-800 { background-color: var(--gray-800); }
.bg-gray-900 { background-color: var(--gray-900); }
.bg-white { background-color: #ffffff; }

/* Gradients */
.gradient-primary {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
}

.gradient-saffron {
  background: linear-gradient(135deg, var(--saffron-400) 0%, var(--saffron-600) 100%);
}

.gradient-navy {
  background: linear-gradient(135deg, var(--navy-500) 0%, var(--navy-700) 100%);
}

.gradient-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

/* Text Colors */
.text-primary { color: var(--primary-600); }
.text-saffron { color: var(--saffron-400); }
.text-saffron-400 { color: var(--saffron-400); }
.text-navy { color: var(--navy-600); }
.text-gray-400 { color: var(--gray-400); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-800 { color: var(--gray-800); }
.text-gray-900 { color: var(--gray-900); }
.text-white { color: #ffffff; }

/* Width and Height Utilities */
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }

/* Border Radius */
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }

/* Typography */
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.leading-relaxed { line-height: 1.625; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.025em; }

/* Spacing */
.mb-1 { margin-bottom: 0.25rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-6 { margin-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-16 { padding-top: 4rem; }
.pb-8 { padding-bottom: 2rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

/* Flexbox */
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.flex-column { flex-direction: column; }

/* Responsive Flexbox */
@media (min-width: 768px) {
  .flex-md-row { flex-direction: row; }
  .text-md-end { text-align: right; }
}

/* Transitions */
.transition-all { transition: all var(--transition-base); }
.transition-colors { transition: color var(--transition-base); }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

/* Hover Effects */
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:text-white:hover { color: #ffffff; }
.group:hover .group-hover\:bg-primary-600 { background-color: var(--primary-600); }

/* Borders */
.border-t { border-top: 1px solid; }
.border-gray-800 { border-color: var(--gray-800); }

/* Text Decoration */
.text-decoration-none { text-decoration: none; }
.hover\:underline:hover { text-decoration: underline; }

/* Shadows */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }

/* Shadows */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }

/* Border Radius */
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: var(--radius-full); }

/* ============================================
   COMPONENT STYLES
   ============================================ */

/* Stats Grid Section */
.stats-grid {
  padding: var(--spacing-4xl) 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, #ffffff 100%);
}

.stat-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: var(--spacing-xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
  text-align: center;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  border-radius: var(--radius-2xl);
  margin-bottom: var(--spacing-md);
  transition: transform var(--transition-base);
}

.stat-card:hover .stat-icon {
  transform: scale(1.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--spacing-sm);
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: var(--spacing-xs);
}

.stat-description {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Programs Section */
.program-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base);
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
}

.program-card-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.program-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-xl);
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
  color: white;
}

.program-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.program-card-description {
  font-size: 1rem;
  opacity: 0.95;
}

/* About Section */
.about-section {
  padding: var(--spacing-4xl) 0;
  background: #ffffff;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--spacing-md);
}

.about-content h2 .highlight {
  color: var(--primary-600);
}

.about-content p {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
}

.about-content ul {
  list-style: none;
  padding: 0;
}

.about-content li {
  padding-left: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  position: relative;
  color: var(--gray-700);
  font-size: 1rem;
}

.about-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--saffron-400);
  border-radius: var(--radius-full);
}

/* Activity Cards */
.activity-section {
  padding: var(--spacing-4xl) 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, #ffffff 100%);
}

.activity-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  height: 100%;
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.activity-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.activity-card-content {
  padding: var(--spacing-xl);
}

.activity-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--spacing-sm);
}

.activity-card-description {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-subtitle {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-600);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--spacing-md);
}

.section-title .highlight {
  color: var(--primary-600);
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.8;
}

/* Daily Routine Section */
.routine-section {
  padding: var(--spacing-4xl) 0;
  background: var(--gray-900);
}

.routine-card {
  background: white;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
}

.routine-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.routine-card-content {
  padding: var(--spacing-xl);
}

.routine-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--spacing-md);
}

.routine-list {
  list-style: none;
  padding: 0;
}

.routine-list li {
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.routine-list li:last-child {
  border-bottom: none;
}

.routine-time {
  font-size: 0.875rem;
  color: var(--primary-600);
  font-weight: 600;
  min-width: 80px;
}

.routine-activity {
  font-size: 0.9375rem;
  color: var(--gray-700);
}

/* Gallery Section */
.gallery-section {
  padding: var(--spacing-4xl) 0;
  background: white;
}

.gallery-grid {
  display: grid;
  gap: var(--spacing-md);
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   MODERN ACCOMMODATION SECTION
   ============================================ */

/* Grid Layout */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lg\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1023px) {
  .lg\:grid-cols-2 {
    grid-template-columns: 1fr;
  }
}

.sm\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: 1fr;
  }
}

.gap-16 {
  gap: 4rem;
}

@media (max-width: 1023px) {
  .gap-16 {
    gap: 2rem;
  }
}

.gap-6 {
  gap: 1.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-3 {
  gap: 0.75rem;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.w-10 {
  width: 2.5rem;
}

.h-10 {
  height: 2.5rem;
}

.w-6 {
  width: 1.5rem;
}

.h-6 {
  height: 1.5rem;
}

.w-4 {
  width: 1rem;
}

.h-4 {
  height: 1rem;
}

.w-3 {
  width: 0.75rem;
}

.h-3 {
  height: 0.75rem;
}

.w-2 {
  width: 0.5rem;
}

.h-2 {
  height: 0.5rem;
}

/* Accommodation Feature Cards */
.accommodation-feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0;
}

.accommodation-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary-100);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.accommodation-feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-600);
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.accommodation-feature-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.accommodation-feature-text p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.4;
}

/* Rounded corners */
.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

/* Shadow effects */
.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Object fit */
.object-cover {
  object-fit: cover;
}

/* Backgrounds and borders */
.bg-white {
  background-color: white;
}

.bg-primary-50 {
  background-color: var(--primary-50);
}

.bg-primary-100 {
  background-color: var(--primary-100);
}

.bg-primary-500 {
  background-color: var(--primary-500);
}

.bg-primary-600 {
  background-color: var(--primary-600);
}

.bg-saffron-50 {
  background-color: var(--saffron-50);
}

.bg-green-500 {
  background-color: #10b981;
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-primary-50 {
  --tw-gradient-stops: var(--primary-50), var(--tw-gradient-to, rgb(254 242 242 / 0));
}

.to-saffron-50 {
  --tw-gradient-to: var(--saffron-50);
}

.border {
  border-width: 1px;
}

.border-primary-100 {
  border-color: var(--primary-100);
}

/* Text colors */
.text-white {
  color: white;
}

.text-gray-600 {
  color: var(--gray-600);
}

.text-gray-700 {
  color: var(--gray-700);
}

.text-gray-900 {
  color: var(--gray-900);
}

.text-primary-600 {
  color: var(--primary-600);
}

/* Typography */
.text-center {
  text-align: center;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

/* Spacing */
.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

/* Hover effects */
.hover\:bg-primary-700:hover {
  background-color: var(--primary-700);
}

.hover\:bg-white:hover {
  background-color: #ffffff;
}

.hover\:text-gray-900:hover {
  color: var(--gray-900);
}

.hover\:scale-110:hover {
  transform: scale(1.1);
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.transform {
  transform: translate(0);
}

/* Transitions */
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-200 {
  transition-duration: 200ms;
}

.duration-300 {
  transition-duration: 300ms;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Responsive Design */
@media (max-width: 640px) {
  .text-4xl {
    font-size: 1.875rem;
  }

  .text-5xl {
    font-size: 2.25rem;
  }

  .py-20 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

/* Trust/Team Section */
.team-section {
  padding: var(--spacing-4xl) 0;
  background: white;
}

.team-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  margin: 0 auto var(--spacing-md);
  object-fit: cover;
  border: 4px solid white;
  box-shadow: var(--shadow-md);
}

.team-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--spacing-xs);
}

.team-role {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-2xl);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
  color: white;
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-800) 100%);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-600);
  color: var(--primary-600);
}

.btn-outline:hover {
  background: var(--primary-600);
  color: white;
}

.btn-white {
  background: white;
  color: var(--gray-900);
  border: 2px solid white;
}

.btn-white:hover {
  background: transparent;
  color: white;
}

/* Spacing Utilities */
.spacing {
  height: var(--spacing-3xl);
}

.spacing-lg {
  height: var(--spacing-4xl);
}

.py-section {
  padding-top: var(--spacing-4xl);
  padding-bottom: var(--spacing-4xl);
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .about-content h2 {
    font-size: 1.875rem;
  }

  .activity-card-image {
    height: 200px;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }

  .stat-card {
    padding: var(--spacing-lg);
  }

  .stat-number {
    font-size: 1.75rem;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease-out;
}

.animate-slideUp {
  animation: slideUp 0.6s ease-out;
}

.animate-scaleIn {
  animation: scaleIn 0.5s ease-out;
}

/* Hover Effects */
.hover-lift {
  transition: transform var(--transition-base);
}

.hover-lift:hover {
  transform: translateY(-4px);
}

.hover-scale {
  transition: transform var(--transition-base);
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-bg-white {
  transition: all var(--transition-base);
}

.hover-bg-white:hover {
  background-color: #ffffff !important;
  color: #111827 !important;
}

.hover-shadow-xl {
  transition: box-shadow var(--transition-base);
}

.hover-shadow-xl:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 50%, var(--primary-800) 100%);
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.1"%3E%3Ccircle cx="30" cy="30" r="2"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  opacity: 0.1;
}

.cta-content {
  position: relative;
  z-index: 10;
  color: white;
}

.cta-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--gray-200);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.urgency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.urgency-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition-base);
}

.urgency-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}

.urgency-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.urgency-number {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.urgency-label {
  font-size: 0.875rem;
  color: var(--gray-300);
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--gray-200);
}

.benefits-list li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: var(--saffron-400);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--gray-900);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gray-800);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--primary-600);
  transform: scale(1.1);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--primary-500);
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 2rem;
  text-align: center;
  color: var(--gray-500);
}

.certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.certification-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--gray-800);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  transition: all var(--transition-base);
}

.certification-badge:hover {
  background: var(--gray-700);
  transform: translateY(-2px);
}

/* ============================================
   FORM ENHANCEMENTS
   ============================================ */

.form-modern {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.form-modern .form-control {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-xl);
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  transition: all var(--transition-base);
}

.form-modern .form-control:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
  outline: none;
}

.form-modern .form-label {
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.form-modern .btn-primary {
  width: 100%;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.form-modern .btn-primary:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

/* Floating Label Styles */
.input-container {
  position: relative;
  margin-bottom: 0.25rem;
}

.floating-input {
  width: 100%;
  padding: 1rem 1rem 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #374151;
  font-size: 1rem;
  transition: all 0.3s;
  padding-top: 1.25rem !important;
  padding-bottom: 0.5rem !important;
  margin-bottom: 15px;
}

.floating-label {
  position: absolute;
  left: 1rem;
  top: 0.875rem;
  color: #9ca3af;
  font-size: 1rem;
  font-weight: 500;
  pointer-events: none;
  transition: all 0.2s ease;
  background: #ffffff;
  padding: 0 0.25rem;
  transform: translateY(0);
}

.floating-input:focus + .floating-label,
.floating-input:not(:placeholder-shown) + .floating-label {
  top: -0.5rem;
  left: 0.875rem;
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 600;
  transform: translateY(0);
}

.floating-input:focus {
  border-color: #fbbf24 !important;
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.2) !important;
  background: #ffffff !important;
}

.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #374151;
  font-size: 1rem;
  transition: all 0.3s;
  margin-bottom: 15px;
}

.form-select:focus {
  border-color: #fbbf24 !important;
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.2) !important;
  background: #ffffff !important;
}

/* Red Button Style */
.btn-red {
  width: 100%;
  padding: 8px 16px;
  background-color: rgb(220 38 38);
  color: white;
  border: none;
  border-radius: 16px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s;
  transform: scale(1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-red:hover {
  transform: scale(1.05);
}

/* Form Error Styling */
.form-error {
  color: #dc2626;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0;
  display: block;
}

/* Compact Form Spacing */
.form-compact .input-container {
  margin-bottom: 0.25rem;
}

.form-compact {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

/* ============================================
   RESPONSIVE ENHANCEMENTS
   ============================================ */

@media (max-width: 992px) {
  .hero-section {
    min-height: 90vh;
    padding: 60px 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-badges {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .urgency-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}


p {
    text-align: left;
}

/* Animations for floating elements */
@keyframes float {
  0%, 100% { transform: translateY(-10px); }
  50% { transform: translateY(10px); }
}

@keyframes float-reverse {
  0%, 100% { transform: translateY(10px); }
  50% { transform: translateY(-10px); }
}

/* ============================================
   AMAZING ACTIVITIES SECTION - REACT STYLE
   ============================================ */

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.bg-gradient-to-br {
  background: linear-gradient(to bottom right, var(--gray-50), #ffffff);
}

.max-w-7xl {
  max-width: 80rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.sm\:px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.lg\:px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.text-center {
  text-align: center;
}

.mb-16 {
  margin-bottom: 4rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.lg\:text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-gray-900 {
  color: var(--gray-900);
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-gray-600 {
  color: var(--gray-600);
}

.max-w-3xl {
  max-width: 48rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-12 {
  margin-bottom: 3rem;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-center {
  justify-content: center;
}

.gap-4 {
  gap: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.font-semibold {
  font-weight: 600;
}

.transition-all {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-300 {
  transition-duration: 300ms;
}

.bg-primary-600 {
  background-color: var(--primary-600);
}

.text-white {
  color: #ffffff;
}

.bg-white {
  background-color: #ffffff;
}

.text-gray-700 {
  color: var(--gray-700);
}

.border {
  border-width: 1px;
}

.border-gray-200 {
  border-color: var(--gray-200);
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.md\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lg\:grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gap-8 {
  gap: 2rem;
}

.group {
  position: relative;
}

.relative {
  position: relative;
}

.h-48 {
  height: 12rem;
}

.overflow-hidden {
  overflow: hidden;
}

.object-cover {
  object-fit: cover;
}

.group-hover\:scale-110:hover img {
  transform: scale(1.1);
}

.transition-transform {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-500 {
  transition-duration: 500ms;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.bg-gradient-to-t {
  background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
}

.from-black\/50 {
  --tw-gradient-from: rgb(0 0 0 / 0.5);
}

.to-transparent {
  --tw-gradient-to: rgb(0 0 0 / 0);
}

.opacity-0 {
  opacity: 0;
}

.group-hover\:opacity-100:hover .absolute {
  opacity: 1;
}

.transition-opacity {
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-300 {
  transition-duration: 300ms;
}

.p-6 {
  padding: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.font-bold {
  font-weight: 700;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.d-none {
  display: none !important;
}

.opacity-1 {
  opacity: 1;
}

.scale-1 {
  transform: scale(1);
}

.translate-y-0 {
  transform: translateY(0);
}

.will-change-transform {
  will-change: transform;
}

.backface-visibility-hidden {
  backface-visibility: hidden;
}

/* Activity Tab Buttons */
.activity-tab-btn {
  cursor: pointer;
  user-select: none;
  padding: 0.5rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--gray-200);
  background: white;
  color: var(--gray-700);
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.activity-tab-btn.active {
  background: var(--primary-600) !important;
  color: white !important;
  border-color: var(--primary-600) !important;
  box-shadow: 0 4px 6px -1px rgb(220 38 38 / 0.1), 0 2px 4px -2px rgb(220 38 38 / 0.1);
}

.activity-tab-btn:hover:not(.active) {
  background: var(--gray-50) !important;
  border-color: var(--gray-300) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

/* Activity Tabs Container - Horizontal Scroll on Mobile */
.activity-tabs-container {
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  white-space: nowrap;
  padding-bottom: 0.5rem;
}

.activity-tabs-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, and Opera */
}

.activity-tabs-container .activity-tab-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Desktop: Center the tabs */
@media (min-width: 768px) {
  .activity-tabs-container {
    justify-content: center !important;
    overflow-x: visible;
  }
}

/* Mobile: Left align and enable horizontal scroll */
@media (max-width: 767.98px) {
  .activity-tabs-container {
    justify-content: flex-start !important;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    width: calc(100% + 2rem);
    gap: 0.25rem !important; /* gap-1 equivalent */
    position: sticky;
    top: 70px; /* Position below header */
    background: white;
    z-index: 10;
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
}

/* Activity Cards - React Style */
.activity-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.activity-card-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.activity-card:hover .activity-card-image {
  transform: scale(1.1);
}

.activity-card-content {
  padding: 1rem;
}

.activity-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.375rem;
  line-height: 1.4;
}

.activity-card-description {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Tab Content Animation */
.activity-tab-content {
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hide inactive tabs */
.activity-tab-content.d-none {
  display: none !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:text-5xl {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .text-4xl {
    font-size: 2rem;
  }

  .lg\:text-5xl {
    font-size: 2.25rem;
  }

  .mb-16 {
    margin-bottom: 3rem;
  }

  .mb-12 {
    margin-bottom: 2rem;
  }

  .gap-8 {
    gap: 1.5rem;
  }

  .p-6 {
    padding: 1.25rem;
  }
}

@media (max-width: 640px) {
  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .text-4xl {
    font-size: 1.75rem;
  }

  .text-xl {
    font-size: 1.125rem;
  }

  .px-6 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .py-3 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .gap-4 {
    gap: 0.75rem;
  }
}

/* ============================================
   DAILY ROUTINE SECTION - REACT STYLE
   ============================================ */

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.bg-white {
  background-color: #ffffff;
}

.max-w-4xl {
  max-width: 56rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.sm\:px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.lg\:px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.text-center {
  text-align: center;
}

.mb-16 {
  margin-bottom: 4rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.lg\:text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.font-bold {
  font-weight: 700;
}

.text-gray-900 {
  color: var(--gray-900);
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-gray-600 {
  color: var(--gray-600);
}

.max-w-3xl {
  max-width: 48rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.bg-white {
  background-color: #ffffff;
}

.rounded-2xl {
  border-radius: 1rem;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.border {
  border-width: 1px;
}

.border-gray-100 {
  border-color: var(--gray-100);
}

.overflow-hidden {
  overflow: hidden;
}

.w-full {
  width: 100%;
}

.p-6 {
  padding: 1.5rem;
}

.text-left {
  text-align: left;
}

.hover\:bg-gray-50:hover {
  background-color: var(--gray-50);
}

.transition-colors {
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, text-decoration-color 0.15s ease-in-out, fill 0.15s ease-in-out, stroke 0.15s ease-in-out, opacity 0.15s ease-in-out, box-shadow 0.15s ease-in-out, transform 0.15s ease-in-out;
}

.duration-200 {
  transition-duration: 200ms;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-4 {
  gap: 1rem;
}

.p-3 {
  padding: 0.75rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.bg-gradient-to-r {
  background: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-saffron-500 {
  --tw-gradient-from: var(--saffron-500);
  --tw-gradient-to: rgb(245 158 11 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-saffron-600 {
  --tw-gradient-to: var(--saffron-600);
}

.from-primary-500 {
  --tw-gradient-from: var(--primary-500);
  --tw-gradient-to: rgb(220 38 38 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-primary-600 {
  --tw-gradient-to: var(--primary-600);
}

.from-navy-500 {
  --tw-gradient-from: var(--navy-500);
  --tw-gradient-to: rgb(12 74 110 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-navy-600 {
  --tw-gradient-to: var(--navy-600);
}

.w-6 {
  width: 1.5rem;
}

.h-6 {
  height: 1.5rem;
}

.text-white {
  color: #ffffff;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.routine-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.routine-time {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.transition-transform {
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, text-decoration-color 0.15s ease-in-out, fill 0.15s ease-in-out, stroke 0.15s ease-in-out, opacity 0.15s ease-in-out, box-shadow 0.15s ease-in-out, transform 0.15s ease-in-out;
}

.duration-300 {
  transition-duration: 300ms;
}

.text-gray-400 {
  color: var(--gray-400);
}

.hidden {
  display: none;
}

.routine-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.routine-content.expanded {
  max-height: 1000px;
}

.border-t {
  border-top-width: 1px;
}

.pt-6 {
  padding-top: 1.5rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.w-3 {
  width: 0.75rem;
}

.h-3 {
  height: 0.75rem;
}

.rounded-full {
  border-radius: 9999px;
}

.flex-grow {
  flex-grow: 1;
}

.font-medium {
  font-weight: 500;
}

.text-gray-900 {
  color: var(--gray-900);
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-gray-500 {
  color: var(--gray-500);
}

.font-mono {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Monaco, Inconsolata, "Roboto Mono", "Source Code Pro", monospace;
}

.routine-section-card.active .routine-chevron svg {
  transform: rotate(180deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .lg\:text-5xl {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .text-4xl {
    font-size: 2rem;
  }

  .text-xl {
    font-size: 1.125rem;
  }

  .p-6 {
    padding: 1.25rem;
  }

  .gap-4 {
    gap: 0.75rem;
  }
}

@media (max-width: 640px) {
  .px-4 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .text-4xl {
    font-size: 1.75rem;
  }

  .mb-16 {
    margin-bottom: 3rem;
  }
}

/* ============================================
   REACT-STYLE DAILY ROUTINE CARDS
   ============================================ */

.routine-section-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.routine-section-card:hover {
  transform: translateY(-4px);
}

/* ============================================
   ACCORDION BUTTON BORDER REMOVAL
   ============================================ */

.routine-section-header {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.routine-section-header:focus,
.routine-section-header:focus-visible {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* ============================================
   MODERN ACCOMMODATION FEATURES - CLEAN STYLE
   ============================================ */

.accommodation-feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-sm) 0;
  transition: all var(--transition-base);
}

.accommodation-feature-item:hover {
  transform: translateX(4px);
}

.accommodation-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.accommodation-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.accommodation-feature-item:hover .accommodation-icon::before {
  opacity: 0.1;
}

.accommodation-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-600);
  stroke-width: 2;
  position: relative;
  z-index: 1;
  transition: transform var(--transition-base);
}

.accommodation-feature-item:hover .accommodation-icon svg {
  transform: scale(1.1);
}

.accommodation-content {
  flex: 1;
  min-width: 0;
}

.accommodation-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  transition: color var(--transition-base);
}

.accommodation-feature-item:hover .accommodation-content h4 {
  color: var(--primary-700);
}

.accommodation-content p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

/* Responsive adjustments for accommodation features */
@media (max-width: 768px) {
  .accommodation-feature-item {
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
  }

  .accommodation-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .accommodation-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .accommodation-content h4 {
    font-size: 1rem;
  }

  .accommodation-content p {
    font-size: 0.875rem;
  }
}

/* ============================================
   FLOATING LABEL FORM STYLES
   ============================================ */

.form-floating-modern {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-floating-modern .form-control-modern {
  width: 100%;
  padding: 1rem 1rem 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  font-size: 1rem;
  transition: all 0.3s ease;
  color: #374151;
}

.form-floating-modern .form-control-modern:focus {
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  background: rgba(255, 255, 255, 1);
}

.form-floating-modern .form-control-modern::placeholder {
  color: transparent;
}

.form-floating-modern .form-label-modern {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 1rem;
  color: #6b7280;
  pointer-events: none;
  transition: all 0.3s ease;
  background: transparent;
  padding: 0 0.25rem;
}

.form-floating-modern .form-control-modern:focus + .form-label-modern,
.form-floating-modern .form-control-modern:not(:placeholder-shown) + .form-label-modern {
  top: 0.25rem;
  font-size: 0.875rem;
  color: #ff6b35;
  font-weight: 500;
}

.form-floating-modern .form-control-modern:focus + .form-label-modern::before,
.form-floating-modern .form-control-modern:not(:placeholder-shown) + .form-label-modern::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -0.25rem;
  right: -0.25rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.95);
  z-index: -1;
}

/* Form container with glassmorphism */
.form-container-modern {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  padding: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-width: 500px;
  width: 100%;
}

.btn-form-modern {
  width: 100%;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-form-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, #ff7f4a 0%, #ffb347 100%);
}

/* ============================================
   FOOTER STYLES
   ============================================ */

footer {
  margin-top: auto;
  background: #1f2937;
  color: #9ca3af;
  padding: 2rem 0;
  border-top: 1px solid #374151;
}

.website_copyright {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.website_copyright p {
  margin: 0;
  font-size: 0.875rem;
  color: #d1d5db;
  font-weight: 400;
}

.website_copyright a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
}

.website_copyright a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

/* Responsive form adjustments */
@media (max-width: 768px) {
  .form-container-modern {
    padding: 2rem;
    margin: 0 1rem;
  }
}

/* ============================================
   FLOATING BUTTONS - PREMIUM DESIGN
   ============================================ */
#fixed-icon {
  z-index: 1000;
  /* backdrop-filter: blur(10px); */
  transition: all var(--transition-base);
}

#fixed-icon:hover {
  transform: translateY(-2px);
  /* box-shadow: var(--shadow-2xl); */
}

#fixed-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  transition: all var(--transition-fast);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

#fixed-icon a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

#fixed-icon a:hover::before {
  opacity: 1;
}

#fixed-icon a:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

#fixed-icon i {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  #fixed-icon {
    right: 0.5rem;
    bottom: 1rem;
  }

  #fixed-icon a {
    width: 44px;
    height: 44px;
  }
}

/* ============================================
   ANIMATED FLOATING BUTTONS
   ============================================ */
#fixed-icon a {
  transition: all 0.3s ease;
  border: none !important;
}

#fixed-icon a:hover {
  transform: scale(1.1);
}

/* ============================================
   CUSTOM HEADER AND DRAWER STYLES
   ============================================ */

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--gray-100);
}

/* Flexbox Utilities */
.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.flex-column {
  flex-direction: column;
}

.space-x-8 > * + * {
  margin-left: 2rem;
}

.space-x-4 > * + * {
  margin-left: 1rem;
}

/* Hidden Utility */

/* Mobile Drawer Overlay */
#mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
}

#mobile-drawer-overlay .absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Mobile Drawer */
#mobile-drawer {
  position: relative;
  width: 16rem;
  max-width: 28rem;
  background-color: #ffffff;
  height: 100vh;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}

#mobile-drawer.translate-x-0 {
  transform: translateX(0);
}

/* Drawer Header */
#mobile-drawer .flex.items-center {
  display: flex;
  align-items: center;
}

/* Navigation Links */
#mobile-drawer nav a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--gray-300);
  text-decoration: none;
  transition: all 0.2s ease;
}

#mobile-drawer nav a:hover {
  background-color: var(--gray-800);
  color: var(--gray-100);
}

/* Drawer Border */
#mobile-drawer .border-b {
  border-bottom: 1px solid var(--gray-700);
}

#mobile-drawer .border-t {
  border-top: 1px solid var(--gray-700);
}

/* Padding Utilities */
.p-4 {
  padding: 1rem;
}

.p-3 {
  padding: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.pt-4 {
  padding-top: 1rem;
}

/* Text Colors */
.text-gray-400 {
  color: var(--gray-400);
}

.text-gray-600 {
  color: var(--gray-600);
}

.text-gray-900 {
  color: var(--gray-900);
}

/* Font Weights */
.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

/* Transitions */
.transition-colors {
  transition: color 0.2s ease;
}

.transition-all {
  transition: all 0.2s ease;
}

/* Hover Effects */
.hover\:text-gray-600:hover {
  color: var(--gray-600);
}

/* Responsive Design */
@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }


}

/* ============================================
   IMPROVED HEADER AND NAVIGATION STYLES
   ============================================ */

/* Header Base */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.header-nav.scrolled {
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Header Container */
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header Content */
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo Section */
.logo-section {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-image {
  height: 60px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: block;
  }
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--gray-300);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 6px;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-400), var(--saffron-400));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gray-100);
  transform: translateY(-1px);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  background: var(--gray-800);
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: var(--gray-300);
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  display: none;
}

.mobile-drawer.active {
  display: block;
}

.drawer-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  animation: fadeIn 0.3s ease;
}

.drawer-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--gray-900);
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer.active .drawer-content {
  transform: translateX(0);
}

/* Drawer Header */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-700);
  background: linear-gradient(135deg, var(--gray-800), var(--gray-900));
}

.drawer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-logo-image {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.drawer-close {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: var(--gray-300);
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-close:hover {
  background: var(--gray-700);
  color: var(--gray-100);
}

/* Drawer Navigation */
.drawer-nav {
  padding: 1rem 0;
}

.drawer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.drawer-nav-item {
  margin: 0;
}

.drawer-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: var(--gray-300);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.drawer-nav-link:hover,
.drawer-nav-link.active {
  background: var(--gray-800);
  color: var(--gray-100);
  border-left-color: var(--primary-400);
  transform: translateX(4px);
}

.drawer-nav-link i {
  width: 20px;
  text-align: center;
  color: var(--gray-500);
}

.drawer-nav-link:hover i,
.drawer-nav-link.active i {
  color: var(--primary-400);
}

/* Drawer Actions */
.drawer-actions {
  padding: 1.5rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.drawer-phone-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--gray-100);
  color: var(--gray-700);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.drawer-phone-btn:hover {
  background: var(--primary-600);
  color: white;
  transform: translateY(-2px);
}

.drawer-apply-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.drawer-apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.drawer-apply-btn i {
  transition: transform 0.3s ease;
}

.drawer-apply-btn:hover i {
  transform: translateX(3px);
}

/* Drawer Footer */
.drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--gray-200);
  margin-top: auto;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-link {
  width: 44px;
  height: 44px;
  background: var(--gray-100);
  color: var(--gray-600);
  text-decoration: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-600);
  color: white;
  transform: translateY(-2px) scale(1.1);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Scroll Effects */
@media (max-width: 1023px) {
  .header-nav.scrolled {
    transform: translateY(-100%);
  }
}

/* ============================================
   HERO CAROUSEL SECTION - MODERN DESIGN
   ============================================ */

.hero-carousel-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 600px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-content .d-flex {
  gap: 1rem;
}

.hero-content .btn {
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.hero-content .btn-primary {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  border: none;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.hero-content .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.hero-content .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
  background: transparent;
}

.hero-content .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
}

.hero-content .d-flex.flex-wrap.gap-3 {
  margin-bottom: 0;
}

.hero-content .d-flex.flex-wrap.gap-3 .d-flex {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1rem;
}

.hero-content .d-flex.flex-wrap.gap-3 .d-flex i {
  color: var(--primary-300);
  margin-right: 0.5rem;
}

.hero-content .d-flex.flex-wrap.gap-3 .d-flex span {
  font-weight: 500;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.carousel-control-prev {
  left: 2rem;
}

.carousel-control-next {
  right: 2rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
  filter: invert(1);
}

/* Enhanced Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.carousel-control-prev {
  left: 2rem;
}

.carousel-control-next {
  right: 2rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  transform: scale(1.1);
}

/* Modern Carousel Progress Bar */
.carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.carousel-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-500) 0%, var(--saffron-500) 100%);
  width: 0%;
  transition: width 5s linear;
  border-radius: 2px;
}

/* Slide Counter */
.carousel-counter {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  z-index: 3;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.carousel-counter span {
  color: var(--primary-300);
}

/* Button Styles for Hero */
.btn-saffron {
  background: linear-gradient(135deg, var(--saffron-500) 0%, var(--saffron-600) 100%);
  border: none;
  color: white;
}

.btn-saffron:hover {
  background: linear-gradient(135deg, var(--saffron-600) 0%, var(--saffron-700) 100%);
  transform: translateY(-2px);
}

.btn-navy {
  background: linear-gradient(135deg, var(--navy-500) 0%, var(--navy-600) 100%);
  border: none;
  color: white;
}

.btn-navy:hover {
  background: linear-gradient(135deg, var(--navy-600) 0%, var(--navy-700) 100%);
  transform: translateY(-2px);
}

/* Floating Buttons - Initially Hidden */
#fixed-icon {
  position: fixed;
  right: 1rem;
  bottom: 2rem;
  z-index: 1000;
  display: none;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

#fixed-icon.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  animation: slideInUp 0.3s ease-out;
  width: 50px;
}

/* Responsive Design for Hero Carousel */
@media (max-width: 768px) {
  .hero-carousel-section {
    min-height: 100vh;
    margin-top: 10px;
  }

  .hero-slide {
    min-height: 100vh;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.125rem;
  }

  .hero-content .d-flex {
    flex-direction: column;
    gap: 1rem;
  }

  /* Ensure feature items with icons stay on same line */
  .hero-content .d-flex.align-items-center.gap-2 {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    white-space: nowrap;
    align-items: center;
  }

  .hero-content .d-flex.align-items-center.gap-2 i,
  .hero-content .d-flex.align-items-center.gap-2 span {
    flex-shrink: 0;
    display: inline-block;
  }

  .hero-content .btn {
    width: 100%;
    text-align: center;
  }

  /* Reposition carousel controls to sides on mobile */
  .carousel-control-prev,
  .carousel-control-next {
    width: 50px;
    height: 50px;
    top: auto;
    bottom: 2rem;
  }

  .carousel-control-prev {
    left: 0; /* Position left button on the left side */
    right: auto;
    transform: none;
  }

  .carousel-control-next {
    left: auto;
    right: 0; /* Position right button on the right side */
    transform: none;
  }

  .carousel-indicators {
    bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-content .d-flex.flex-wrap.gap-3 .d-flex {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  /* Extra mobile optimization for icon-text alignment */
  .hero-content .d-flex.align-items-center.gap-2 {
    justify-content: flex-start;
    min-width: 0;
    max-width: 100%;
  }

  .hero-content .d-flex.align-items-center.gap-2 span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Ensure carousel controls stay on sides on small mobile */
  .carousel-control-prev,
  .carousel-control-next {
    width: 45px;
    height: 45px;
    bottom: 1.5rem;
  }

  .carousel-control-prev {
    left: 10px; /* Position left button on the left side */
    right: auto;
  }

  .carousel-control-next {
    left: auto;
    right: 10px; /* Position right button on the right side */
  }
}

/* ============================================
   MODERN UI/UX IMPROVEMENTS - 2026 DESIGN
   ============================================ */

/* Modern Button Enhancements */
.btn-modern {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.btn-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-modern:hover::before {
  left: 100%;
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Modern Gradient Backgrounds */
.gradient-bg-primary {
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
}

.gradient-bg-saffron {
  background: linear-gradient(135deg, var(--saffron-50) 0%, var(--saffron-100) 100%);
}

.gradient-bg-navy {
  background: linear-gradient(135deg, var(--navy-50) 0%, var(--navy-100) 100%);
}

/* Enhanced Shadows */
.shadow-modern {
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.12),
    0 1px 2px rgba(0, 0, 0, 0.24);
}

.shadow-modern-lg {
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.15),
    0 4px 10px rgba(0, 0, 0, 0.1);
}

.shadow-modern-xl {
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.2),
    0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Modern Typography */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--saffron-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.font-display {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
}

/* Modern Animations */
@keyframes slideInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.animate-slideInUp {
  animation: slideInUp 0.6s ease-out;
}

.animate-slideInLeft {
  animation: slideInLeft 0.6s ease-out;
}

.animate-slideInRight {
  animation: slideInRight 0.6s ease-out;
}

.animate-scaleIn {
  animation: scaleIn 0.5s ease-out;
}

/* Staggered Animation Delays */
.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }

/* Modern Hover Effects */
.hover-lift-modern {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift-modern:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hover-glow {
  transition: all 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 30px rgba(220, 38, 38, 0.3);
}

/* Modern Form Styles */
.form-modern-2026 {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.form-modern-2026 .form-control {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-modern-2026 .form-control:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

.form-modern-2026 .btn-primary {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.form-modern-2026 .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
}

/* Modern Card Design */
.card-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.card-modern .card-body {
  padding: 2rem;
}

.card-modern .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.card-modern .card-text {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Modern Navigation */
.nav-modern .nav-link {
  position: relative;
  padding: 0.75rem 1.5rem;
  margin: 0 0.25rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav-modern .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--saffron-500) 100%);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-modern .nav-link:hover::before,
.nav-modern .nav-link.active::before {
  width: 100%;
}

.nav-modern .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

/* Modern Footer */
.footer-modern {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  color: var(--gray-300);
  position: relative;
  overflow: hidden;
}

.footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-500), transparent);
}

.footer-modern .footer-link {
  color: var(--gray-400);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.footer-modern .footer-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-500);
  transition: width 0.3s ease;
}

.footer-modern .footer-link:hover::before {
  width: 100%;
}

.footer-modern .footer-link:hover {
  color: var(--primary-400);
}

/* Modern Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--saffron-500) 100%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--saffron-600) 100%);
}

/* Modern Loading Animation */
@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.loading-shimmer {
  background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite;
}

/* Modern Focus States */
.focus-modern:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
  border-color: var(--primary-500);
}

/* Modern Tooltip */
.tooltip-modern {
  position: relative;
  display: inline-block;
}

.tooltip-modern .tooltip-text {
  visibility: hidden;
  width: 200px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  text-align: center;
  border-radius: 8px;
  padding: 8px 12px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -100px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.875rem;
}

.tooltip-modern:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* Responsive Modern Improvements */
@media (max-width: 768px) {
  .glass-card,
  .card-modern {
    margin: 1rem;
  }

  .btn-modern {
    width: 100%;
    margin-bottom: 1rem;
  }

  .form-modern-2026 {
    padding: 1.5rem;
    margin: 1rem;
  }

  .nav-modern .nav-link {
    padding: 0.5rem 1rem;
    margin: 0.25rem 0;
  }
}

/* Mobile 2-card layout for What Parents Can Expect section */
@media (max-width: 767.98px) {
  #expect .col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* Mobile optimizations for What Parents Can Expect cards */
  #expect .bg-white {
    border-radius: 0 !important;
    padding: 0.75rem !important;
  }

  #expect .bg-white h3 {
    font-size: 1rem !important;
  }

  #expect .bg-white svg {
    width: 24px !important;
    height: 24px !important;
  }

  #expect .bg-white .d-inline-flex {
    width: 3rem !important;
    height: 3rem !important;
  }

  #expect .bg-white h4 {
    font-size: 0.9rem !important;
  }

  #expect .row {
    --bs-gutter-x: 0.5rem !important;
    --bs-gutter-y: 0.5rem !important;
  }

  .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .activity-section {
    padding: 30px 0 !important;
  }
}
