/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #ff6b35;
  --secondary-color: #4299e1;
  --success-color: #48bb78;
  --warning-color: #f6e05e;
  --dark: #2d3748;
  --dark-light: #4a5568;
  --gray: #718096;
  --light-gray: #e2e8f0;
  --bg-light: #f7fafc;
  --white: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Dark Mode Colors */
[data-theme="dark"] {
  --dark: #e2e8f0;
  --dark-light: #cbd5e0;
  --gray: #a0aec0;
  --light-gray: #2d3748;
  --bg-light: #1a202c;
  --white: #0f1419;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.6);
}

/* Dark mode specific adjustments */
[data-theme="dark"] .navbar {
  background: #1a202c;
  border-bottom: 1px solid #2d3748;
}

[data-theme="dark"] .hero,
[data-theme="dark"] .page-header,
[data-theme="dark"] .pricing-highlight,
[data-theme="dark"] .stats-section,
[data-theme="dark"] .cta-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 100%);
}

[data-theme="dark"] .hero h1,
[data-theme="dark"] .hero p,
[data-theme="dark"] .page-header h1,
[data-theme="dark"] .page-header p,
[data-theme="dark"] .pricing-highlight h2,
[data-theme="dark"] .pricing-highlight p,
[data-theme="dark"] .stats-section .stat-number,
[data-theme="dark"] .stats-section .stat-label,
[data-theme="dark"] .cta-content h2,
[data-theme="dark"] .cta-content p {
  color: #f7fafc;
}

[data-theme="dark"] .feature-card,
[data-theme="dark"] .info-card,
[data-theme="dark"] .info-box,
[data-theme="dark"] .expect-card,
[data-theme="dark"] .occasion-card,
[data-theme="dark"] .gift-card,
[data-theme="dark"] .gift-occasion,
[data-theme="dark"] .offer-item,
[data-theme="dark"] .timeline-content,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .voucher-card {
  background: #1a202c;
  border: 1px solid #2d3748;
}

[data-theme="dark"] .feature-card h3,
[data-theme="dark"] .info-card h3,
[data-theme="dark"] .info-box h3,
[data-theme="dark"] .expect-card h3,
[data-theme="dark"] .occasion-card h3,
[data-theme="dark"] .gift-card h3,
[data-theme="dark"] .gift-occasion h3,
[data-theme="dark"] .offer-item h3,
[data-theme="dark"] .timeline-content h3,
[data-theme="dark"] .testimonial-text,
[data-theme="dark"] .faq-item h3,
[data-theme="dark"] .voucher-card h3,
[data-theme="dark"] .features h2,
[data-theme="dark"] .what-we-offer h2,
[data-theme="dark"] .perfect-for h2,
[data-theme="dark"] .home-how-it-works h2,
[data-theme="dark"] .testimonials h2,
[data-theme="dark"] .additional-info h2,
[data-theme="dark"] .why-gift h2,
[data-theme="dark"] .perfect-gift-for h2,
[data-theme="dark"] .how-it-works h2,
[data-theme="dark"] .faq-section h2,
[data-theme="dark"] .voucher-section h2,
[data-theme="dark"] .voucher-purchase h2,
[data-theme="dark"] .form-intro h2 {
  color: #e2e8f0;
}

[data-theme="dark"] .feature-card p,
[data-theme="dark"] .info-card p,
[data-theme="dark"] .info-box p,
[data-theme="dark"] .expect-card p,
[data-theme="dark"] .occasion-card p,
[data-theme="dark"] .gift-card p,
[data-theme="dark"] .gift-occasion p,
[data-theme="dark"] .offer-item p,
[data-theme="dark"] .timeline-content p,
[data-theme="dark"] .testimonial-author,
[data-theme="dark"] .faq-item p,
[data-theme="dark"] .form-intro p,
[data-theme="dark"] .form-subtitle {
  color: #a0aec0;
}

[data-theme="dark"] .price-teaser {
  background: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
}

[data-theme="dark"] .footer {
  background: #0f1419;
  border-top: 1px solid #2d3748;
}

[data-theme="dark"] .footer p {
  color: #a0aec0;
}

[data-theme="dark"] .voucher-features li {
  color: #cbd5e0;
  border-bottom-color: #2d3748;
}

[data-theme="dark"] .voucher-price {
  color: #ff6b35;
}

[data-theme="dark"] .pricing-feature {
  background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .pricing-feature span {
  color: #f7fafc;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-bottom: 70px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Main Content Wrapper */
.main-content {
  flex: 1;
}

/* Promotional Banner */
.promo-banner {
  background: linear-gradient(135deg, #e30613 0%, #ff6b35 100%);
  color: var(--white);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.promo-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.promo-text {
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.4;
}

.promo-text strong {
  font-weight: 700;
  color: #fff;
}

.promo-close {
  position: absolute;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: all 0.3s ease;
  border-radius: 4px;
  line-height: 1;
  opacity: 0.8;
}

.promo-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Navigation */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

/* When promo banner is visible, navbar should stick below it */
body:has(.promo-banner:not([style*="display: none"])) .navbar {
  top: 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
}

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

/* Theme Toggle Button */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: all 0.3s ease;
  border-radius: 8px;
  line-height: 1;
}

.theme-toggle:hover {
  background: var(--bg-light);
  transform: scale(1.1);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* Show sun icon in light mode, moon in dark mode */
[data-theme="light"] .moon-icon {
  display: none;
}

[data-theme="dark"] .sun-icon {
  display: none;
}

[data-theme="light"] .sun-icon {
  display: block;
}

[data-theme="dark"] .moon-icon {
  display: block;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white);
  padding: 4rem 0;
  min-height: 500px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-graphic svg {
  width: 100%;
  height: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 1rem;
}

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

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

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

.btn-secondary:hover {
  background: var(--light-gray);
}

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

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

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: var(--bg-light);
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.feature-card p {
  color: var(--gray);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: var(--white);
}

.cta-section .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-graphic svg {
  width: 100%;
  height: auto;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.25rem;
  opacity: 0.9;
}

.header-cta {
  margin-top: 2rem;
}

/* Booking Info Section */
.booking-info {
  padding: 3rem 0;
  background: var(--bg-light);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.info-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
}

.info-card svg {
  margin-bottom: 1rem;
}

.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.info-card p {
  color: var(--gray);
}

/* Booking Form Section */
.booking-form-section {
  padding: 4rem 0;
  background: var(--white);
}

.form-wrapper {
  margin: 0 auto;
}

/* Additional Info */
.additional-info {
  padding: 4rem 0;
  background: var(--bg-light);
}

.additional-info h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

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

.info-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.info-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.info-box p {
  color: var(--gray);
  line-height: 1.6;
}

/* Voucher Section */
.voucher-section {
  padding: 4rem 0;
  background: var(--white);
}

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

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

.voucher-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  position: relative;
  border: 2px solid var(--light-gray);
  display: flex;
  flex-direction: column;
}

.voucher-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.voucher-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.voucher-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.voucher-icon {
  text-align: center;
  margin: 1rem 0;
}

.voucher-card h3 {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dark);
}

.voucher-price {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.voucher-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.voucher-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light-gray);
  color: var(--dark);
}

.voucher-features li:before {
  content: "✓ ";
  color: var(--success-color);
  font-weight: 700;
  margin-right: 0.5rem;
}

.voucher-card .btn {
  width: 100%;
  text-align: center;
}

/* How it Works */
.how-it-works {
  padding: 4rem 0;
  background: var(--bg-light);
}

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

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.step p {
  color: var(--gray);
  line-height: 1.6;
}

/* Voucher Purchase Form */
.voucher-purchase {
  padding: 4rem 0;
  background: var(--white);
}

.purchase-wrapper {
  margin: 0 auto;
}

.purchase-wrapper h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--dark);
}

.voucher-form {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

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

.form-group textarea {
  resize: vertical;
}

.form-actions {
  margin-top: 2rem;
  text-align: center;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

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

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.faq-item p {
  color: var(--gray);
  line-height: 1.6;
}

/* Pricing Highlight Section */
.pricing-highlight {
  padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white);
  text-align: center;
}

.pricing-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pricing-subtext {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

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

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.pricing-feature span {
  font-size: 1rem;
  text-align: left;
}

/* What to Expect Section */
.what-to-expect {
  padding: 4rem 0;
  background: var(--bg-light);
}

.what-to-expect h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark);
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.expect-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
}

.expect-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.expect-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.expect-card p {
  color: var(--gray);
  line-height: 1.6;
}

/* Perfect For Section */
.perfect-for {
  padding: 4rem 0;
  background: var(--white);
}

.perfect-for h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark);
}

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.occasion-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 12px;
  transition: transform 0.3s;
}

.occasion-card:hover {
  transform: translateY(-5px);
}

.occasion-card svg {
  margin-bottom: 1.5rem;
}

.occasion-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.occasion-card p {
  color: var(--gray);
  line-height: 1.6;
}

/* Form Intro */
.form-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.form-intro h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.form-intro p {
  font-size: 1.125rem;
  color: var(--gray);
}

.form-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

/* Why Gift Section */
.why-gift {
  padding: 4rem 0;
  background: var(--bg-light);
}

.why-gift h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark);
}

.gift-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.gift-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s;
}

.gift-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.gift-card svg {
  margin-bottom: 1.5rem;
}

.gift-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.gift-card p {
  color: var(--gray);
  line-height: 1.6;
}

/* Perfect Gift For Section */
.perfect-gift-for {
  padding: 4rem 0;
  background: var(--white);
}

.perfect-gift-for h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark);
}

.gift-occasions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.gift-occasion {
  text-align: center;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 12px;
  transition: transform 0.3s;
}

.gift-occasion:hover {
  transform: translateY(-5px);
}

.occasion-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.gift-occasion h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.gift-occasion p {
  color: var(--gray);
  line-height: 1.6;
}

/* Price Teaser Section */
.price-teaser {
  padding: 2rem 0;
  background: var(--primary-color);
  text-align: center;
  color: var(--white);
}

.price-badge {
  display: inline-block;
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.price-per {
  font-size: 1.25rem;
  opacity: 0.9;
}

.price-description {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* What We Offer Section */
.what-we-offer {
  padding: 4rem 0;
  background: var(--white);
}

.what-we-offer h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark);
}

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

.offer-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 12px;
  transition: all 0.3s;
}

.offer-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.offer-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.offer-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.offer-item p {
  color: var(--gray);
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1.125rem;
  opacity: 0.9;
}

/* Home How It Works Section */
.home-how-it-works {
  padding: 4rem 0;
  background: var(--bg-light);
}

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

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 20px;
  bottom: 20px;
  width: 3px;
  background: var(--primary-color);
}

.timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 2.5rem;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 8px var(--primary-color);
  z-index: 1;
}

.timeline-content {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.timeline-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.timeline-content p {
  color: var(--gray);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 0;
  background: var(--white);
}

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

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

.testimonial-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--warning-color);
}

.testimonial-text {
  font-style: italic;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: var(--gray);
  text-align: right;
}

/* Footer */
.footer {
  background: #1a202c;
  color: #e2e8f0;
  margin-top: auto;
  position: relative;
}

.footer-content {
  padding: 4rem 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--success-color));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-description {
  color: #a0aec0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #e2e8f0;
  transition: all 0.3s ease;
}

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

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #a0aec0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding: 1.5rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: #a0aec0;
  font-size: 0.9rem;
}

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

.footer-legal a {
  color: #a0aec0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--white);
}

/* Dark mode footer adjustments */
[data-theme="dark"] .footer {
  background: #0f1419;
  border-top: 1px solid #2d3748;
}

[data-theme="dark"] .footer-bottom {
  background: rgba(0, 0, 0, 0.4);
}

/* Sticky Contact Bar */
.sticky-contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 70px;
  background: var(--white);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  border-top: 3px solid var(--primary-color);
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.contact-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  gap: 1rem;
  height: 100%;
}

.contact-bar-item {
  flex: 0 0 auto;
}

.contact-bar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0.8rem;
  text-decoration: none;
  color: var(--dark);
  transition: all 0.3s ease;
  border-radius: 8px;
}

.contact-bar-link:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
}

.contact-bar-link svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.contact-bar-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.contact-bar-label {
  font-size: 0.7rem;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-bar-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}

.contact-bar-button .btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* WhatsApp specific styling */
.contact-bar-item:nth-child(2) .contact-bar-link:hover {
  background: #25D366;
  color: white;
}

.contact-bar-item:nth-child(2) .contact-bar-link:hover .contact-bar-label,
.contact-bar-item:nth-child(2) .contact-bar-link:hover .contact-bar-value {
  color: white;
}

/* Dark mode sticky contact bar */
[data-theme="dark"] .sticky-contact-bar {
  background: #1a202c;
  border-top-color: var(--primary-color);
}

[data-theme="dark"] .contact-bar-link {
  color: #e2e8f0;
}

[data-theme="dark"] .contact-bar-link:hover {
  background: #2d3748;
}

[data-theme="dark"] .contact-bar-value {
  color: #e2e8f0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-cta {
    justify-content: center;
  }

  .features h2,
  .cta-content h2,
  .voucher-section h2,
  .how-it-works h2,
  .faq-section h2 {
    font-size: 1.75rem;
  }

  .cta-section .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .voucher-card.featured {
    transform: scale(1);
  }

  .voucher-card.featured:hover {
    transform: translateY(-5px);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .expect-grid,
  .occasions-grid,
  .gift-occasions-grid {
    grid-template-columns: 1fr;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    padding-left: 60px;
  }

  .timeline-marker {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    box-shadow: 0 0 0 3px var(--white), 0 0 0 6px var(--primary-color);
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .testimonials h2,
  .what-we-offer h2,
  .home-how-it-works h2 {
    font-size: 1.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    gap: 1rem;
  }

  .promo-banner {
    padding: 0.6rem 0;
  }

  .promo-text {
    font-size: 0.85rem;
    padding-right: 2rem;
  }

  .contact-bar-content {
    flex-wrap: wrap;
    padding: 0.5rem 0;
  }

  .contact-bar-text {
    display: none;
  }

  .contact-bar-link {
    padding: 0.5rem;
  }

  .contact-bar-item {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
  }

  .contact-bar-button .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .nav-brand span {
    display: none;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-cta {
    flex-direction: column;
  }
}
