/* ========================================
   THE SADIQ PROJECT - Main Stylesheet
   ======================================== */

/* CSS Variables - 4-Color Design System */
:root {
  /* Primary - Ahlulbayt Green */
  --primary-color: #1F4015;
  --primary-hover: #17310F;
  
  /* Accent - Gold */
  --accent-color: #C9A24D;
  
  /* Backgrounds */
  --dark-bg: #1C2A39;
  --light-bg: #F7F4EE;
  --white-bg: #ffffff;
  
  /* Text */
  --text-dark: #1C2A39;
  --text-light: #F7F4EE;
  --text-muted: rgba(28, 42, 57, 0.7);
  
  /* Borders */
  --gray-light: #F7F4EE;
  --gray-border: rgba(247, 244, 238, 0.15);
  --border-color: rgba(31, 64, 21, 0.15);
  
  /* Typography */
  --font-heading: 'Fjalla One', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-nav: 'Quicksand', sans-serif;
  
  /* Effects */
  --transition: all 0.3s ease;
  --shadow: 0px 15px 25px -7px rgba(28, 42, 57, 0.1);
  --radius: 8px;
  --focus-ring: 0 0 0 3px rgba(201, 162, 77, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-bg);
}

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

ul {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-dark);
}

h1 { font-size: 32px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

.container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Primary Button - Green */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: #ffffff;
  border: 2px solid var(--primary-color);
  border-radius: var(--radius);
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  text-decoration: none;
  color: #ffffff;
}

.btn:focus {
  outline: none;
  box-shadow: var(--focus-ring);
}

.btn i {
  margin-right: 8px;
}

/* ========================================
   HEADER / NAVIGATION - Navy background
   ======================================== */
.site-header {
  background-color: var(--dark-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 44px;
  color: var(--text-light);
  transition: var(--transition);
  text-decoration: none;
}

.site-logo:hover {
  color: var(--accent-color);
  text-decoration: none;
}

/* Desktop Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.6em 0.6em;
  color: var(--text-light);
  font-family: var(--font-nav);
  font-size: 15px;
  line-height: 1.4;
  position: relative;
  text-decoration: none;
}

/* Green underline on hover/active */
.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.6em;
  right: 0.6em;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-menu > li > a:hover::after,
.nav-menu > li.active > a::after {
  transform: scaleX(1);
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: var(--accent-color);
  text-decoration: none;
}

.dropdown-icon {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: #101010;
  box-shadow: 0px 2px 13px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  border-bottom: 1px solid var(--gray-border);
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  display: block;
  padding: 1em;
  color: #eeeeee;
  font-size: 12px;
}

.dropdown-menu a:hover {
  color: var(--primary-hover);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Search Button */
.search-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5em;
  margin-left: 1rem;
}

.search-btn:hover {
  color: var(--primary-color);
}

.search-btn svg {
  width: 20px;
  height: 20px;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  padding: 0.5em;
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.mobile-overlay.active {
  display: block;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background-color: var(--dark-bg);
  z-index: 1001;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
  border-bottom: 1px solid var(--gray-border);
}

.mobile-nav-close {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 28px;
  padding: 0.5em;
}

.mobile-nav-menu li {
  border-bottom: 1px solid var(--gray-border);
}

.mobile-nav-menu > li > a,
.mobile-nav-menu .dropdown-header {
  display: block;
  padding: 1em 1.5rem;
  color: var(--text-light);
  font-family: var(--font-nav);
  font-size: 14px;
}

.mobile-nav-menu a:hover {
  color: var(--primary-hover);
}

.dropdown-header {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}

.mobile-dropdown-toggle {
  background: none;
  border: none;
  border-left: 1px solid var(--gray-border);
  color: var(--text-light);
  cursor: pointer;
  padding: 1em;
}

.mobile-dropdown {
  display: none;
  background: rgba(255, 255, 255, 0.03);
}

.mobile-dropdown.active {
  display: block;
}

.mobile-dropdown a {
  padding-left: 2.5rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 500px;
  padding: 2rem;
}

.hero-title {
  font-family: 'Marcellus', serif;
  font-size: 48px;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-description {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: var(--primary-color);
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

.hero-btn:hover {
  background-color: var(--primary-hover);
}

/* ========================================
   EVENT BANNER
   ======================================== */
.event-banner {
  background-color: var(--light-bg);
  padding: 3rem 0;
  text-align: center;
}

.event-banner h2 {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}

.event-banner p {
  font-size: 18px;
  margin-bottom: 0.5rem;
}

.event-banner .address {
  color: var(--text-muted);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--dark-bg);
  color: var(--text-light);
  border-radius: 50%;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

/* ========================================
   SPONSORS SECTION
   ======================================== */
.sponsors {
  background-color: var(--light-bg);
  padding: 3rem 0;
  text-align: center;
}

.sponsors h2 {
  font-size: 28px;
  margin-bottom: 2rem;
}

.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.sponsor-logo {
  max-width: 150px;
  max-height: 80px;
  object-fit: contain;
  transition: var(--transition);
}

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

/* ========================================
   GALLERY
   ======================================== */
.gallery {
  background-color: var(--light-bg);
  padding: 1rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* ========================================
   KIDS GALLERY CAROUSEL
   ======================================== */
.kids-gallery {
  background-color: var(--dark-bg);
  padding: 2rem 0;
  overflow: hidden;
}

.kids-carousel {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.kids-track {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.kid-slide {
  flex: 0 0 auto;
  width: calc(20% - 1rem);
  min-width: 180px;
  max-width: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.kid-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.kid-slide:hover img {
  transform: scale(1.05);
}

/* ========================================
   SLIDER
   ======================================== */
.slider-section {
  background-color: var(--dark-bg);
  padding: 4rem 0;
}

.slider-container {
  position: relative;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.slide-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.slide-title {
  font-size: 36px;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.slide-description {
  font-size: 16px;
  color: var(--text-light);
  max-width: 700px;
  line-height: 1.8;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--text-light);
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.slider-nav.prev { left: 20px; }
.slider-nav.next { right: 20px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--text-light);
}

/* ========================================
   FOOTER - Navy with gold accents
   ======================================== */
.site-footer {
  background-color: var(--dark-bg);
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer-info p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.footer-info .company-name {
  font-weight: 700;
  font-size: 18px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
}

/* Gold hover on social icons */
.footer-social a:hover {
  background-color: var(--accent-color);
  text-decoration: none;
}

.copyright {
  color: rgba(247, 244, 238, 0.6);
  font-size: 14px;
}

/* ========================================
   PAGE HEADERS - Green band
   ======================================== */
.page-header {
  background: linear-gradient(145deg, var(--primary-color) 0%, var(--primary-hover) 100%);
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  color: #ffffff;
  font-size: 28px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ========================================
   CONSULTATION / BOOKING
   ======================================== */
.consultation-section {
  background-color: var(--light-bg);
  padding: 4rem 0;
  min-height: 70vh;
}

.booking-widget {
  max-width: 950px;
  margin: 0 auto;
  background: var(--white-bg);
  border-radius: 12px;
  box-shadow: 0 4px 30px rgba(28, 42, 57, 0.1);
  display: flex;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.booking-steps {
  background: var(--light-bg);
  padding: 2rem;
  width: 240px;
  flex-shrink: 0;
}

.step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--text-muted);
  font-size: 14px;
}

.step.active {
  color: var(--primary-color);
  font-weight: 600;
}

.step-icon {
  width: 40px;
  height: 40px;
  background: rgba(31, 64, 21, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.step.active .step-icon {
  background: var(--primary-color);
  color: #ffffff;
}

.booking-content {
  flex: 1;
  padding: 2rem;
}

.booking-content h2 {
  font-size: 20px;
  margin-bottom: 1.5rem;
}

.service-card {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.service-card.selected {
  border-color: var(--primary-color);
}

.service-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.service-info h3 {
  font-size: 18px;
  margin-bottom: 0.25rem;
}

.service-info p {
  color: var(--text-muted);
  font-size: 14px;
}

.service-check {
  margin-left: auto;
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

/* Date & Time Picker */
.date-picker, .time-picker {
  margin-bottom: 2rem;
}

.date-picker h4, .time-picker h4 {
  margin-bottom: 1rem;
  font-size: 16px;
}

.date-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 0.75rem;
}

.date-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background: var(--light-bg);
  cursor: pointer;
  transition: var(--transition);
}

.date-option:hover {
  border-color: var(--primary-color);
}

.date-option.selected {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: #ffffff;
}

.date-option .day-name {
  font-size: 11px;
  text-transform: uppercase;
}

.date-option .day-num {
  font-size: 20px;
  font-weight: 700;
}

.date-option .month {
  font-size: 11px;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.75rem;
}

.time-slot {
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background: var(--light-bg);
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  transition: var(--transition);
}

.time-slot:hover {
  border-color: var(--primary-color);
}

.time-slot.selected {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: #ffffff;
}

.loading, .no-slots {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem;
}

/* Booking Form */
.booking-form .form-group {
  margin-bottom: 1.25rem;
}

.booking-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 14px;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.booking-summary {
  background: var(--gray-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.booking-summary h4 {
  margin-bottom: 1rem;
  font-size: 16px;
}

.booking-summary p {
  margin-bottom: 0.5rem;
  font-size: 14px;
}

/* Booking Step Content */
.booking-step-content {
  display: none !important;
}

.booking-step-content.active {
  display: block !important;
}

/* Date Time Container */
.datetime-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.calendar-section {
  flex: 1;
  min-width: 280px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1rem;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  margin-bottom: 1rem;
}

.calendar-header span {
  font-weight: 600;
}

.calendar-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0.5rem;
}

.calendar-nav-btn:hover {
  color: var(--primary-color);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition);
}

.calendar-day:hover:not(.disabled):not(.other-month) {
  background: rgba(4, 159, 130, 0.1);
}

.calendar-day.selected {
  background: var(--primary-color);
  color: var(--text-light);
}

.calendar-day.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.calendar-day.other-month {
  color: #ddd;
  cursor: default;
}

.timeslots-section {
  flex: 0 0 200px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1rem;
  max-height: 350px;
  overflow-y: auto;
}

.timeslots-section h4 {
  font-size: 16px;
  margin-bottom: 1rem;
}

.timeslot-group {
  margin-bottom: 1rem;
}

.timeslot-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* Form Styles */
.form-row {
  display: flex;
  gap: 1rem;
}

.form-row .form-group {
  flex: 1;
}

.required {
  color: var(--primary-color);
}

.phone-input {
  display: flex;
  gap: 0.5rem;
}

.phone-input select {
  width: 100px;
  padding: 12px 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--font-body);
}

.phone-input input {
  flex: 1;
}

.checkbox-group {
  margin-top: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
}

/* Summary */
.summary-content {
  text-align: center;
  padding: 2rem 0;
}

.summary-icon {
  margin-bottom: 1rem;
}

.summary-icon img {
  width: 100px;
  height: auto;
}

.summary-subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.summary-details {
  background: var(--gray-light);
  border-radius: 8px;
  padding: 1.5rem;
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.summary-row {
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row.split {
  display: flex;
  gap: 2rem;
}

.summary-row.split > div {
  flex: 1;
}

.summary-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.summary-value {
  font-weight: 600;
}

/* Booking Navigation */
.booking-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.booking-back-btn,
.booking-next-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.booking-back-btn {
  background: transparent;
  color: var(--text-dark);
}

.booking-back-btn:hover {
  color: var(--primary-color);
}

.booking-next-btn {
  background: var(--primary-color);
  color: var(--text-light);
  margin-left: auto;
}

.booking-next-btn:hover:not(:disabled) {
  background: var(--primary-hover);
}

.booking-next-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.booking-next-btn span {
  font-weight: 700;
}

/* Confirmation */
.booking-confirmation {
  text-align: center;
  padding: 2rem 0;
}

.confirmation-icon {
  font-size: 64px;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.booking-confirmation h2 {
  margin-bottom: 1rem;
}

.confirmation-details {
  background: var(--gray-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem auto;
  max-width: 400px;
  text-align: left;
}

.confirmation-details p {
  margin-bottom: 0.5rem;
}

.confirmation-note {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 2rem;
}

/* ========================================
   ABOUT PAGE
   ======================================== */

/* About Slider - Green gradient */
.about-slider-section {
  background: linear-gradient(145deg, var(--primary-color) 0%, var(--primary-hover) 100%);
}

.about-slider-container {
  position: relative;
  overflow: hidden;
}

.about-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.about-slide {
  min-width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.about-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.about-slide-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.about-slide-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.about-slide-content p {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.8;
}

.about-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 32px;
  cursor: pointer;
  padding: 1rem;
  z-index: 10;
  transition: var(--transition);
}

.about-slider-nav:hover {
  color: var(--primary-color);
}

.about-slider-nav.prev { left: 20px; }
.about-slider-nav.next { right: 20px; }

.about-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 1rem 0;
  background: var(--primary-hover);
}

.about-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.about-slider-dot.active {
  background: var(--text-light);
}

/* About Content */
.about-content {
  background-color: var(--light-bg);
  padding: 4rem 0;
}

.story-section {
  text-align: center;
  margin-bottom: 2rem;
}

.story-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-style: italic;
  color: var(--text-dark);
}

.story-section .story-our {
  font-style: normal;
}

.story-section .story-highlight {
  position: relative;
  display: inline-block;
  font-style: italic;
}

/* Green underline on story highlight */
.story-section .story-highlight::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.story-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
  color: var(--text-dark);
}

.story-text p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

/* ========================================
   PROGRAMS / FAQ
   ======================================== */
.programs-section {
  background-color: var(--light-bg);
  padding: 4rem 0;
}

.programs-section.faq-full-page {
  padding: 5rem 0;
  min-height: calc(100vh - 200px);
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 0.5rem;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem 1.25rem;
  background: var(--white-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 17px;
  text-align: left;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(28, 42, 57, 0.04);
}

.faq-question:hover {
  background: var(--light-bg);
  color: var(--primary-color);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(28, 42, 57, 0.08);
}

/* Active FAQ - green header */
.faq-item.active .faq-question {
  background: var(--primary-color);
  color: #ffffff;
  border-radius: 12px 12px 0 0;
  border-color: var(--primary-color);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(31, 64, 21, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
  color: var(--primary-color);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.faq-answer {
  display: none;
  padding: 1.5rem 1.25rem;
  background: var(--white-bg);
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 12px 12px;
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 0.5rem;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
  background-color: var(--light-bg);
  padding: 4rem 0;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* Form inputs - ivory background, green focus */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--light-bg);
  color: var(--text-dark);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(31, 64, 21, 0.1);
  background: var(--white-bg);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

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

/* Submit button - green */
.submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--primary-color);
  color: #ffffff;
  border: 2px solid var(--primary-color);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 1px;
  transition: var(--transition);
}

.submit-btn:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

.submit-btn:focus {
  outline: none;
  box-shadow: var(--focus-ring);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-status {
  margin-top: 1rem;
  text-align: center;
}

.form-status.success p {
  color: var(--primary-color);
  font-weight: 500;
}

.form-status.error p {
  color: #dc3545;
  font-weight: 500;
}

/* ========================================
   TUITION / PRICING
   ======================================== */
.tuition-section {
  background-color: var(--light-bg);
  padding: 4rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Pricing cards - white with border */
.pricing-card {
  background: var(--white-bg);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(28, 42, 57, 0.08);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(28, 42, 57, 0.12);
  border-color: rgba(31, 64, 21, 0.3);
}

.pricing-card h3 {
  font-size: 20px;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

/* Price - green emphasis */
.pricing-card .price {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.pricing-card .price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card ul {
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-card li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 15px;
  color: var(--text-dark);
}

.pricing-card .btn {
  width: 100%;
}

/* ========================================
   YOUTUBE PAGE
   ======================================== */
.youtube-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  padding: 3rem 0;
  text-align: center;
}

.youtube-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.social-icons-light {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.social-icons-light a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid #555;
  color: var(--text-light);
  border-radius: 50%;
  font-size: 14px;
  transition: var(--transition);
}

.social-icons-light a:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.youtube-section {
  background-color: var(--dark-bg);
  padding: 0 0 4rem 0;
}

.youtube-series-item {
  margin-bottom: 3rem;
}

.series-title {
  font-size: 20px;
  color: var(--text-light);
  text-align: center;
  padding: 2rem 0;
  letter-spacing: 2px;
  font-weight: 600;
  border-bottom: 1px solid #333;
  margin-bottom: 0;
}

.youtube-embed {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.youtube-embed iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  display: block;
}

.youtube-cta {
  text-align: center;
  padding: 2rem 0;
}

.youtube-cta .btn {
  padding: 14px 32px;
  font-size: 14px;
  letter-spacing: 1px;
}

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

.video-card {
  background: var(--light-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.video-thumbnail {
  aspect-ratio: 16/9;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 48px;
}

.video-thumbnail-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail-img {
  transform: scale(1.05);
}

.video-info {
  padding: 1.5rem;
}

.video-info h3 {
  font-size: 18px;
  margin-bottom: 0.5rem;
}

.video-info p {
  color: var(--text-muted);
  font-size: 14px;
}

/* ========================================
   DONATE PAGE
   ======================================== */
.donate-header {
  background-color: var(--dark-bg);
  padding: 4rem 0;
  text-align: center;
}

.donate-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-style: italic;
  color: var(--text-light);
  letter-spacing: 8px;
  text-transform: uppercase;
}

.donate-quote-section {
  background-color: var(--dark-bg);
  padding: 0 0 2rem 0;
}

.donate-quote-card {
  background: var(--light-bg);
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 4rem;
  text-align: center;
  border-radius: 4px;
}

.donate-intro {
  font-size: 17px;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.donate-quote {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
  padding: 0;
  border: none;
}

.donate-attribution {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.donate-btn-simple {
  display: inline-block;
  padding: 14px 40px;
  background: var(--primary-color);
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition);
}

.donate-btn-simple:hover {
  background: var(--primary-hover);
}

.donate-image-section {
  width: 100%;
  overflow: hidden;
  background: var(--dark-bg);
}

.donate-image-section img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -25%;
}

/* Old donate styles for backwards compatibility */
.donate-section {
  background-color: var(--light-bg);
  padding: 4rem 0;
  text-align: center;
}

.donate-content {
  max-width: 600px;
  margin: 0 auto;
}

.donate-content h2 {
  font-size: 32px;
  margin-bottom: 1.5rem;
}

.donate-content > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.donate-list {
  text-align: left;
  display: inline-block;
  margin-bottom: 2rem;
}

.donate-list li {
  margin-bottom: 0.75rem;
  font-size: 15px;
}

.donate-list i {
  color: var(--primary-color);
  margin-right: 0.75rem;
}

.donate-btn {
  display: inline-block;
  padding: 16px 48px;
  background: var(--primary-color);
  color: var(--text-light);
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
}

.donate-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ========================================
   SEARCH MODAL
   ======================================== */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 12, 16, 0.97);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.search-modal.active {
  display: flex;
}

.search-modal-content {
  width: 100%;
  max-width: 600px;
  padding: 2rem;
}

.search-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 32px;
  cursor: pointer;
}

.search-form {
  display: flex;
  gap: 1rem;
}

.search-form input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-bottom: 2px solid var(--text-light);
  background: transparent;
  color: var(--text-light);
  font-size: 18px;
}

.search-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-form input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.search-form button {
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: var(--text-light);
  border: none;
  cursor: pointer;
}

.search-form button:hover {
  background: var(--primary-hover);
}

/* ========================================
   UTILITIES
   ======================================== */
.text-center { text-align: center; }
.text-white { color: var(--text-light); }
.bg-dark { background-color: var(--dark-bg); }
.bg-light { background-color: var(--light-bg); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.py-3 { padding-top: 3rem; padding-bottom: 3rem; }
.py-4 { padding-top: 4rem; padding-bottom: 4rem; }

.thank-you-message {
  color: #999;
  font-size: 14px;
}

.thank-you-banner {
  background-color: var(--light-bg);
  color: #999;
  font-size: 14px;
  font-style: italic;
  text-align: center;
  padding: 1rem 0;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .site-logo { font-size: 34px; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  
  .hero-title { font-size: 36px; }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .booking-widget {
    flex-direction: column;
  }
  
  .booking-steps {
    width: 100%;
    display: flex;
    overflow-x: auto;
    padding: 1rem;
    gap: 1rem;
    border-bottom: 1px solid #eee;
  }
  
  .step {
    flex-direction: column;
    padding: 0.5rem;
    text-align: center;
    min-width: 80px;
  }
  
  .step span {
    font-size: 11px;
    margin-top: 0.5rem;
  }
}

@media (max-width: 767px) {
  .site-logo { font-size: 22px; }
  
  .hero {
    min-height: 450px;
  }
  
  .hero-title { font-size: 28px; }
  .hero-description { font-size: 14px; }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .slide { height: 400px; }
  .slide-title { font-size: 24px; }
  .slide-description { font-size: 14px; }
  
  .date-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  h1 { font-size: 24px; }
  h2 { font-size: 22px; }
  h3 { font-size: 20px; }
}

