/* Hen Party Page Styles - Pure Black & White Theme */

/* Step Numbers - Black background with Accent Color text */
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #000000 !important;
  color: var(--accent) !important;
  font-size: 2rem;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: var(--space-lg);
  font-family: var(--font-body);
  position: relative;
}

/* Step Card Styling */
.step-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.step-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--text-dark);
}

.step-card p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 400px;
  margin: 0 auto var(--space-xl);
}

.step-card .btn {
  margin-top: auto;
}

/* Step Links */
.step-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition-base);
  margin-top: auto;
}

.step-link:hover {
  color: var(--text-dark);
  text-decoration: underline;
}

/* Theme Features - Most Popular with accent styling */
.theme-features {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.theme-features .feature {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  background-color: #f0f0f0;
  color: var(--text-dark);
}

/* Most Popular feature with black background and accent text */
.theme-features .feature:first-child {
  background-color: #000000 !important;
  color: var(--accent) !important;
}

/* Alternative: Add class .popular to Most Popular spans */
.theme-features .feature.popular {
  background-color: #000000 !important;
  color: var(--accent) !important;
}

/* Popular Badge - Black background with accent text */
.popular-badge {
  background-color: #000000 !important;
  color: var(--accent) !important;
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 25px;
  z-index: 10;
}

/* Pricing Card with Popular Badge */
.pricing-card {
  position: relative;
  padding-top: 2rem;
}

.pricing-card.popular {
  border: 2px solid #000000;
}

/* Form Submit Button - Black background with accent text */
.form-submit,
.btn.form-submit {
  background-color: #000000 !important;
  color: var(--accent) !important;
  border: 2px solid #000000 !important;
  padding: 1rem 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-base);
  cursor: pointer;
}

.form-submit:hover,
.btn.form-submit:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
  border-color: #000000 !important;
  transform: translateY(-2px);
}

/* How It Works Section */
.how-it-works {
  padding: var(--space-3xl) 0;
  background-color: #f8f8f8;
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: var(--space-md);
  color: var(--text-dark);
  font-size: 2.5rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* Hero Section */
.hero-hen {
  background: #ffffff;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e5e5e5;
}

.hero-hen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="50" cy="50" r="2" fill="%23000" opacity="0.03"/><circle cx="150" cy="150" r="3" fill="%23000" opacity="0.02"/><circle cx="80" cy="120" r="1" fill="%23000" opacity="0.04"/></svg>');
  pointer-events: none;
}

.hero-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.375rem;
  color: var(--text-light);
  margin-bottom: var(--space-xl);
  font-weight: 500;
  padding-right: var(--space-xl);
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.stat-item {
  text-align: center;
  padding: var(--space-lg);
  background: #f8f8f8;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  min-width: 100px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: #fff;
  border-color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.hero-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  position: relative;
  transition: all 0.3s ease;
  padding-bottom: 2px;
}

.hero-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--text-dark);
  transition: width 0.3s ease;
}

.hero-link:hover {
  opacity: 0.8;
}

.hero-link:hover::after {
  width: 100%;
}

/* Quirky Modern Buttons */
.btn {
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  font-family: var(--font-body);
}

.btn::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:hover::before {
  left: 100%;
}

.btn-primary {
  background: #000;
  color: #fff;
  border: 2px solid #000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: #333;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: #fff;
  color: #000;
  border: 2px solid #000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: #000;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: #000;
  border: 2px solid #000;
}

.btn-outline:hover {
  background: #000;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Fun animated button for special actions */
.btn-fun {
  background: linear-gradient(45deg, #000, #333);
  color: #fff;
  border: none;
  position: relative;
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.btn-fun:hover {
  animation: none;
  background: linear-gradient(45deg, #333, #000);
  transform: translateY(-3px) scale(1.05);
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  filter: grayscale(100%) contrast(110%) brightness(105%);
  transition: all 0.3s ease;
}

.hero-image img:hover {
  filter: grayscale(100%) contrast(120%) brightness(110%);
  transform: scale(1.02);
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  background-color: #ffffff;
  border-top: 1px solid #e5e5e5;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  max-width: 1400px;
  margin: 0 auto;
}

/* Increase gap on desktop to make room for arrows */
@media (min-width: 1024px) {
  .steps-grid {
    gap: 80px;
  }
}

.step-card {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
  border-top: 3px solid transparent;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-top-color: var(--text-dark);
}

/* Arrow between cards on desktop */
@media (min-width: 1024px) {
  .step-card:not(:nth-child(3n))::after {
    content: '→';
    position: absolute;
    right: -45px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #ccc;
    font-weight: 300;
    z-index: 1;
  }
  
  /* Alternative arrow design using CSS */
  .step-card:not(:nth-child(3n))::before {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: #e5e5e5;
    z-index: 0;
  }
}

.step-number {
  position: absolute;
  top: -15px;
  left: var(--space-lg);
  background: var(--text-dark);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.step-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  margin-top: var(--space-md);
  color: var(--text-dark);
}

.step-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.step-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--text-dark);
  padding-bottom: 2px;
  transition: all var(--transition-base);
}

.step-link:hover {
  opacity: 0.7;
}

/* Themes Showcase Section */
.themes-showcase {
  padding: 100px 0;
  background: white;
}

.themes-showcase h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

.theme-categories {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.category-btn {
  padding: var(--space-sm) var(--space-lg);
  border: 2px solid var(--text-dark);
  background: transparent;
  color: var(--text-dark);
  border-radius: var(--radius-full);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: 0.9375rem;
}

.category-btn.active,
.category-btn:hover {
  background: var(--text-dark);
  color: white;
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xxl);
}

.theme-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
  position: relative;
}

.theme-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.theme-card.featured {
  border: 3px solid var(--text-dark);
}

.theme-card.specialist {
  border: 3px solid #666;
}

.theme-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--text-dark);
  color: white;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 3;
}

.theme-card.specialist::before {
  content: 'SPECIALIST';
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: #666;
  color: white;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 3;
}

.theme-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.theme-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(110%) brightness(105%);
  transition: all 0.3s ease;
}

.theme-card:hover .theme-image img {
  filter: grayscale(100%) contrast(120%) brightness(110%);
  transform: scale(1.05);
}

.theme-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.3), transparent);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: var(--space-md);
}

.theme-price {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.125rem;
}

.theme-content {
  padding: var(--space-lg);
}

.theme-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-dark);
}

.theme-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.theme-features {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.feature {
  background: rgba(0, 0, 0, 0.05);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-dark);
}

.theme-btn {
  display: inline-block;
  background: #000;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  border: 2px solid #000;
  position: relative;
  overflow: hidden;
}

.theme-btn::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;
}

.theme-btn:hover::before {
  left: 100%;
}

.theme-btn:hover {
  background: #333;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.view-all-themes {
  text-align: center;
}

/* Also Available Section */
.also-available {
  margin: 40px 0;
  padding: 30px;
  background: #f8f8f8;
  border-radius: 15px;
  border: 1px solid #e5e5e5;
}

.also-available.hidden {
  display: none;
}

.also-available-header {
  margin-bottom: 20px;
  text-align: center;
}

.also-available-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.also-available-count {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin: 0;
}

.also-available-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.theme-tag {
  background: white;
  border: 2px solid #e5e5e5;
  border-radius: 25px;
  padding: 8px 16px;
  font-size: 0.875rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.theme-tag:hover {
  border-color: #000;
  background: #000;
  color: white;
  transform: translateY(-2px);
}

/* All Themes List */
.all-themes {
  padding: 80px 0;
  background: #f8f8f8;
  border-top: 1px solid #e5e5e5;
}

.all-themes h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: var(--space-xxl);
  color: var(--text-dark);
}

.themes-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}

.theme-column h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--text-dark);
  padding-bottom: var(--space-sm);
}

.theme-column ul {
  list-style: none;
  padding: 0;
}

.theme-column ul li {
  margin-bottom: var(--space-sm);
}

.theme-column ul a {
  color: var(--text-light);
  text-decoration: none;
  transition: all var(--transition-base);
  display: block;
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
}

.theme-column ul a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-dark);
  transform: translateX(5px);
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: white;
}

.pricing h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto var(--space-xxl);
}

.pricing-card {
  background: white;
  border: 2px solid #eee;
  border-radius: var(--radius-lg);
  padding: var(--space-xxl);
  text-align: center;
  position: relative;
  transition: all var(--transition-base);
}

.pricing-card.featured {
  border-color: var(--text-dark);
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-dark);
  color: white;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}

.price-subtitle {
  color: var(--text-light);
  margin-bottom: var(--space-xl);
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: var(--space-xl);
}

.pricing-features li {
  padding: var(--space-sm) 0;
  color: var(--text-light);
  border-bottom: 1px solid #eee;
}

.pricing-btn {
  display: inline-block;
  background: #000;
  color: white;
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid #000;
  position: relative;
  overflow: hidden;
}

.pricing-btn::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;
}

.pricing-btn:hover::before {
  left: 100%;
}

.pricing-btn:hover {
  background: #333;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.pricing-guarantee {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-lg);
  background: #f8f9fa;
  border-radius: var(--radius-md);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: #f8f8f8;
  border-top: 1px solid #e5e5e5;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.testimonial-card {
  background: white;
  padding: calc(var(--space-xxl) * 2);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  font-size: 4rem;
  color: rgba(0, 0, 0, 0.1);
  font-family: serif;
  line-height: 1;
}

.testimonial-rating {
  margin-bottom: var(--space-lg);
  font-size: 1.125rem;
  padding-top: 10px;
  padding-left: 20px;
}

.testimonial-card blockquote {
  margin: 0 0 var(--space-lg) 0;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1.125rem;
}

.testimonial-card cite {
  display: block;
  font-style: normal;
  padding-left: 20px;
  padding-bottom: 10px;
  margin-top: var(--space-md);
}

.testimonial-card cite strong {
  color: var(--text-dark);
  font-weight: 600;
}

.testimonial-card .location {
  display: block;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: var(--space-xs);
}

/* FAQ Section */
.faq {
  padding: 40px 0;
  background: white;
}

.faq h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: var(--space-xxl);
  color: var(--text-dark);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.faq-item {
  margin-bottom: var(--space-lg);
  border: 1px solid #eee;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item summary {
  padding: var(--space-lg);
  background: #fafafa;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: var(--space-lg);
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 300;
  transition: transform var(--transition-base);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  padding: var(--space-lg);
  border-top: 1px solid #eee;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Final CTA Section */
.final-cta {
  padding: 100px 0;
  background: var(--text-dark);
  color: white;
  text-align: center;
}

.final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  color: white;
}

.final-cta p {
  font-size: 1.25rem;
  margin-bottom: var(--space-xxl);
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.btn-large {
  padding: var(--space-lg) var(--space-xxl);
  font-size: 1.125rem;
}

.final-cta .btn-primary {
  background: white;
  color: var(--text-dark);
}

.final-cta .btn-primary:hover {
  background: #f8f9fa;
}

.final-cta .btn-secondary {
  border-color: white;
  color: white;
}

.final-cta .btn-secondary:hover {
  background: white;
  color: var(--text-dark);
}

.contact-info {
  margin-top: var(--space-xl);
}

.contact-info a {
  color: white;
  text-decoration: underline;
}

.small-text {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-top: var(--space-sm);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    padding: 0 var(--space-lg);
  }
  
  .themes-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .theme-categories {
    flex-direction: column;
    align-items: center;
  }
  
  .themes-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .step-card,
  .theme-card,
  .pricing-card,
  .testimonial-card {
    padding: var(--space-lg);
  }
}

/* Theme filtering animation */
.theme-card {
  transition: all 0.3s ease;
}

.theme-card.hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

/* Venues Section */
.venues-section {
  padding: 100px 0;
  background: #f8f8f8;
  border-top: 1px solid #e5e5e5;
}

.venues-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

.venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.venue-card {
  background: white;
  padding: var(--space-xl);
  border-radius: 20px;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.venue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: #000;
}

.venue-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.venue-address {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: #f8f8f8;
  border-radius: 12px;
}

.venue-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.venue-features li {
  padding: var(--space-sm) 0;
  color: var(--text-light);
  font-size: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.venue-features li:last-child {
  border-bottom: none;
}

.venue-note {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-lg);
  background: rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

.venue-note p {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin: 0;
}

.venue-note strong {
  color: var(--text-dark);
}

/* Contact Form Section */
.contact-form-section {
  padding: 100px 0;
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
}

.form-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.form-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.form-image img {
  width: 200px;
  height: auto;
  margin-bottom: var(--space-xl);
  filter: grayscale(100%) contrast(120%);
}

.form-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: -1px;
}

.form-text p {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 40px;
  padding: 0 40px;
}

.form-stats {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.form-stats .stat-item {
  text-align: center;
  padding: var(--space-md);
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  min-width: 80px;
  transition: all 0.3s ease;
}

.form-stats .stat-item:hover {
  background: #f8f8f8;
  border-color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-container {
  background: #f8f8f8;
  padding: 48px;
  border-radius: 20px;
  border: 1px solid #e5e5e5;
  max-width: none;
}

.form-header {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.form-header p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

.hen-party-form {
  max-width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 18px 20px;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: white;
  transition: all 0.3s ease;
  color: var(--text-dark);
  min-height: 56px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23666" stroke-width="2"><polyline points="6,9 12,15 18,9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px;
  padding-right: 50px;
}

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

.form-submit {
  width: 100%;
  margin-top: var(--space-lg);
  padding: 20px 32px;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Scroll animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  animation: fadeInUp 0.6s ease forwards;
}

/* Mobile responsiveness for form */
@media (max-width: 768px) {
  .form-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .form-container {
    padding: var(--space-xl);
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .form-image img {
    width: 200px;
  }
  
  .form-text h2 {
    font-size: 2rem;
  }
}

/* Pricing Section */
.pricing-section {
  background: #fafafa;
  padding: var(--space-xxl) 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  text-align: center;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-xxl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: white;
  border: 2px solid #e5e5e5;
  border-radius: var(--radius-lg);
  padding: var(--space-xxl);
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: var(--text-dark);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-dark);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  padding-top: var(--space-lg);
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

.price {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.price-period {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 4px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg) 0;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid #f5f5f5;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
  margin: 0;
}

.pricing-info {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;
}

.pricing-info p {
  margin: 0 0 var(--space-md) 0;
  color: var(--text-light);
  line-height: 1.6;
}

.pricing-info p:last-child {
  margin-bottom: 0;
}

.pricing-info strong {
  color: var(--text-dark);
}

/* Pricing Section Mobile */
@media (max-width: 768px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
}

/* View All Themes Button */
.view-all-themes {
  margin-top: 60px;
  text-align: center;
}

/* Themes Showcase Section */
.themes-showcase h2 {
  margin-bottom: 60px;
}

/* All Themes Section */
.all-themes h2 {
  margin-bottom: 60px;
}

/* Teachers Section */
.teachers-section {
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #f5f5f5 100%);
  padding: var(--space-xxl) 0;
  margin-bottom: 80px;
  position: relative;
}

.teachers-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23000" opacity="0.02"/><circle cx="80" cy="80" r="1.5" fill="%23000" opacity="0.03"/><circle cx="60" cy="30" r="0.8" fill="%23000" opacity="0.02"/></svg>');
  pointer-events: none;
}

.teachers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xxl);
}

.teacher-card {
  background: white;
  border: 2px solid #e5e5e5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.teacher-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #000000, #333333, #000000);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.teacher-card:hover::before {
  opacity: 1;
}

.teacher-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--text-dark);
}

.teacher-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.teacher-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.teacher-card:hover .teacher-image img {
  filter: grayscale(0%);
}

.teacher-content {
  padding: calc(var(--space-xl) * 1.5);
  padding-bottom: calc(var(--space-xl) * 2);
}

.teacher-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 var(--space-sm) 0;
  color: var(--text-dark);
  position: relative;
}

.teacher-content h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--text-dark), transparent);
  transition: width 0.3s ease;
}

.teacher-card:hover .teacher-content h3::after {
  width: 80px;
}

.teacher-specialty {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 0 var(--space-md) 0;
  font-style: italic;
}

.teacher-bio {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0 0 var(--space-lg) 0;
  font-size: 0.95rem;
}

.teacher-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.teacher-skills .skill {
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.3s ease;
}

.teacher-card:hover .teacher-skills .skill {
  background: var(--text-dark);
  color: white;
  border-color: var(--text-dark);
}

/* Teachers Section Mobile */
@media (max-width: 768px) {
  .teachers-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .teacher-image {
    height: 240px;
  }
  
  .teacher-content {
    padding: var(--space-lg);
  }
}

/* Testimonials Section Enhancement */
.testimonials {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #f5f5f5 100%);
  padding: calc(var(--space-xxl) * 1.5) 0 80px 0 !important;
  position: relative;
  border-top: 1px solid #e5e5e5;
  margin-bottom: var(--space-xxl);
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.testimonials .container {
  padding-bottom: 40px;
}

/* Enhanced Testimonial Cards */
.testimonial-card {
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card:nth-child(1) {
  animation: slideInLeft 0.8s ease-out;
}

.testimonial-card:nth-child(2) {
  animation: slideInBottom 0.8s ease-out 0.2s;
  animation-fill-mode: both;
}

.testimonial-card:nth-child(3) {
  animation: slideInRight 0.8s ease-out 0.4s;
  animation-fill-mode: both;
}

.testimonial-card:nth-child(4) {
  animation: slideInBottom 0.8s ease-out 0.6s;
  animation-fill-mode: both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Star Rating Enhancement */
.testimonial-rating {
  color: #000000;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  letter-spacing: 2px;
  filter: grayscale(100%);
}

/* Quote Enhancement */
.testimonial-card blockquote {
  position: relative;
  padding-left: 20px;
}

/* FAQ Section */
.faq h2 {
  margin-bottom: 60px;
}

.testimonial-card blockquote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--text-dark), transparent);
  opacity: 0.2;
}