/* Variant H: Gift Box Hero Inspiration */

/* Base styling - Deep blue like the gift box image */
:root {
  --primary: #0056b3;
  --primary-dark: #003875;
  --text-dark: #00171f;
  --bg-deep-blue: #0a4675;
  --bg-white: #ffffff;
  --border-light: #e6eef5;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --radius: 8px;
}

body.variant-h {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Hero section with deep blue background */
.voucher-hero {
  background: linear-gradient(135deg, #0a4675 0%, #084a7a 100%);
  padding: 80px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.voucher-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left side - Gift box visual */
.voucher-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.voucher-hero__gift-box {
  max-width: 500px;
  width: 100%;
  background: transparent;
  animation: float 3s ease-in-out infinite;
}

.voucher-hero__gift-box img {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
  /* PNG should blend naturally with blue background */
  mix-blend-mode: normal;
}

/* Floating animation for gift box */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Right side - Content */
.voucher-hero__content {
  color: var(--bg-white);
  padding-top: 2rem;
}

.voucher-hero__content h1 {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  margin-top: 0;
  color: var(--bg-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.voucher-hero__cta {
  margin-bottom: 2.5rem;
}

.voucher-hero__cta .btn {
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
  background: var(--bg-white) !important;
  color: var(--primary-dark) !important;
  border: none !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.voucher-hero__cta .btn:hover {
  background: #f5f5f5 !important;
  color: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Social icons */
.voucher-hero__social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.voucher-hero__social a {
  color: var(--bg-white);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.voucher-hero__social a:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Cards styling */
.voucher-badge-card,
.voucher-include-card,
.voucher-testimonial,
.voucher-faq__item {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.btn,
.btn-primary,
.btn-outline {
  border-radius: var(--radius);
}

.voucher-cta {
  background: linear-gradient(135deg, #0a4675 0%, #084a7a 100%);
  color: var(--bg-white);
}

/* Testimonials section with dark gradient and white cards */
.voucher-testimonials {
  position: relative;
  background: linear-gradient(140deg, #05284f, #0f4f82);
  color: var(--bg-white);
  overflow: hidden;
}

.voucher-testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.18), transparent 55%),
    radial-gradient(circle at 82% 30%, rgba(255, 255, 255, 0.12), transparent 60%);
}

.voucher-testimonials .container {
  position: relative;
  z-index: 1;
}

.voucher-testimonials h2 {
  color: var(--bg-white);
}

/* Keep testimonial cards white with dark text */
.voucher-testimonial {
  background: var(--bg-white) !important;
  color: var(--text-dark) !important;
}

.voucher-testimonial p {
  color: var(--text-dark) !important;
}

.voucher-testimonial strong {
  color: var(--text-dark) !important;
}

.voucher-testimonial span {
  color: #666 !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .voucher-hero {
    padding: 60px 0;
    min-height: auto;
  }

  .voucher-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  /* On mobile: Content on top, image below */
  .voucher-hero__content {
    order: 1;
    padding-top: 3rem;
  }

  .voucher-hero__visual {
    order: 2;
  }

  .voucher-hero__content h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .voucher-hero__gift-box {
    max-width: 350px;
  }

  .voucher-hero__cta {
    display: flex;
    justify-content: center;
  }

  .voucher-hero__social {
    justify-content: center;
  }
}

/* Tablet breakpoint */
@media (min-width: 769px) and (max-width: 1024px) {
  .voucher-hero__grid {
    gap: 40px;
  }

  .voucher-hero__content h1 {
    font-size: 2.75rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .voucher-hero__gift-box {
    max-width: 400px;
  }
}

/* Large desktop */
@media (min-width: 1200px) {
  .voucher-hero__grid {
    gap: 80px;
  }

  .voucher-hero__content h1 {
    font-size: 4rem;
  }
}
