/* =========================================
   1. ROOT & GLOBAL SETTINGS
   ========================================= */
:root {
  --logo-blue: #0b2a4a;
  --logo-yellow: #ffd400;
  --accent-red: #ef4444;
  --text-gray: #64748b;
  --bg-off-white: #f8f9fa;

  /* Spacing System */
  --section-padding: 90px;
  --container-width: 1200px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }
}

html,
body {
  max-width: 100%;
  overflow-x: hidden; /* Prevents horizontal scroll jank */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* ==========================================================
   HERO SECTION — PERFORMANCE & CONVERSION OPTIMIZED (BRIGHT & WHITE)
   ========================================================== */

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  /* Lightened base blue to keep the vibe energetic */
  background-color: #1a4f8a;
  isolation: isolate;
}

/* 1. The Poster Image (Immediate Visibility) */
.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

/* 2. The Video Layer */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-video.is-video-loaded .hero-bg-video {
  opacity: 1;
  z-index: 2;
}

.hero-video.is-video-loaded .hero-poster {
  /* Higher opacity for the fallback image keeps the background "filled" with color */
  opacity: 0.4;
}

/* 3. The Cinematic Overlay (High Transparency for Brightness) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0.05) 0%,
      /* Slight light leak in center */ rgba(11, 42, 74, 0.3) 100%
        /* Softened dark edges */
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      rgba(11, 42, 74, 0.4) 100% /* Lifted the bottom shadow */
    );
  z-index: 3;
}

/* 4. Content Architecture */
.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 1s cubic-bezier(0.2, 1, 0.3, 1) forwards 0.3s;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

/* MAIN HEADING - UPDATED FOR MAXIMUM BRIGHTNESS */
.hero-content h1 {
  color: #ffffff !important; /* Forces pure white */
  font-size: clamp(2.5rem, 8vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  /* Reduced shadow size to prevent the heading from looking "dirty" */
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 700px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 1); /* Full opacity white */
  margin-bottom: 3rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* 5. CTA & Trust Indicators */
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 48px;
  background-color: #ffcc00;
  color: #0b2a4a;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 40px rgba(255, 204, 0, 0.4);
}

.hero-cta svg {
  width: 20px;
  transition: transform 0.3s ease;
}

.hero-cta:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255, 204, 0, 0.5);
}

.hero-cta:hover svg {
  transform: translateX(5px);
}

.hero-trust-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff; /* Brighter trust text */
}

.trust-icons {
  color: #ffcc00;
  letter-spacing: 2px;
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Strategic Layout */
@media (max-width: 768px) {
  .hero-content {
    justify-content: center;
    padding-bottom: 2rem;
  }
  .hero-badge {
    font-size: 0.75rem;
  }
}

/* ==========================================================
   TRENDING TOURS — WORLD-CLASS PERFORMANCE EDITION
   ========================================================== */

.trending-tours {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  content-visibility: auto;
  contain-intrinsic-size: 1000px;
  background-color: #f8fbff;
  background-image:
    radial-gradient(at 0% 0%, rgba(56, 189, 248, 0.08) 0px, transparent 40%),
    radial-gradient(at 100% 100%, rgba(14, 165, 233, 0.05) 0px, transparent 40%);
}

.carousel-header {
  max-width: var(--container-width);
  margin: 0 auto 1.5rem auto;
  padding: 0 1rem;
}

.category-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--logo-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.category-heading::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--logo-yellow);
}

/* Section Head Styling */
.section-head.screenshot-style {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #0b2a4a;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-line {
  display: block;
  width: 60px;
  height: 4px;
  background-color: #e63946;
  margin: 20px auto;
  border-radius: 10px;
}

/* Carousel Architecture */
.tour-carousel-wrapper {
  position: relative;
  margin-bottom: 5rem;
  padding: 0 10px;
}

.tour-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 25px 25px 60px 25px;
  margin: 0 -25px -40px -25px;
  scrollbar-width: none;
  /* Hardware Acceleration */
  transform: translate3d(0, 0, 0);
}

.tour-carousel::-webkit-scrollbar {
  display: none;
}

/* The Destination Card */
.destination-card {
  flex: 0 0 auto;
  width: 380px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: center;
  box-shadow: 0 15px 35px rgba(11, 42, 74, 0.06);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(11, 42, 74, 0.03);
}

.destination-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 80px rgba(11, 42, 74, 0.12);
}

.card-img-wrapper {
  position: relative;
  height: 260px;
  width: 100%;
  overflow: hidden;
  background-color: #f1f5f9;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.destination-card:hover .card-img-wrapper img {
  transform: scale(1.1);
}

/* Glassmorphism Tags */
.card-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 204, 0, 0.9);
  backdrop-filter: blur(5px);
  color: #0b2a4a;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-tag.pulse {
  animation: tagPulse 2s infinite;
}

@keyframes tagPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 204, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
  }
}

/* Card Typography */
.card-content {
  padding: 25px;
}

.card-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0b2a4a;
  margin-bottom: 8px;
}

.card-content p {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 22px;
  font-weight: 500;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

.price {
  font-size: 0.85rem;
  color: #64748b;
}
.price strong {
  font-size: 1.25rem;
  color: #0b2a4a;
  display: block;
  margin-top: 2px;
}

.cta {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0b2a4a;
  border-bottom: 3px solid #ffcc00;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.destination-card:hover .cta {
  color: #e63946;
  border-color: #e63946;
}

/* Premium Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  z-index: 20;
  font-size: 1.4rem;
  color: #0b2a4a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-btn:hover {
  background: #0b2a4a;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.left {
  left: -28px;
}
.carousel-btn.right {
  right: -28px;
}

/* Mobile Optimization */
@media (max-width: 1100px) {
  .carousel-btn {
    display: none;
  }
  .tour-carousel-wrapper {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .destination-card {
    width: 310px;
  }
  .card-img-wrapper {
    height: 210px;
  }
  .trending-tours {
    padding: 60px 0;
  }
  .section-title {
    font-size: 2rem;
  }
}

/* ==========================================================
   SPIRITUAL JOURNEYS — DIVINE SAFFRON EDITION
   ========================================================== */

.spiritual-carousel {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  isolation: isolate;

  /* Performance */
  content-visibility: auto;
  contain-intrinsic-size: 600px;

  /* Divine Saffron Base */
  background-color: #fffbeb;
  background-image:
    radial-gradient(
      circle at 50% 50%,
      rgba(245, 158, 11, 0.08) 0%,
      transparent 60%
    ),
    repeating-conic-gradient(
      from 0deg at 50% 50%,
      transparent 0deg,
      transparent 15deg,
      rgba(245, 158, 11, 0.03) 15deg,
      rgba(245, 158, 11, 0.03) 16deg
    );
  background-attachment: scroll;
}

.spiritual-carousel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(245, 158, 11, 0.5) 50%,
    transparent 100%
  );
  opacity: 0.8;
}

.spiritual-carousel-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.featured-slider-viewport {
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 28px;
  padding: 30px 10px 80px 10px;
  margin-bottom: -60px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.carousel-card {
  flex: 0 0 auto;
  width: 520px;
  height: 340px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  scroll-snap-align: center;
  background-color: #f3f4f6; /* LCP Placeholder */
  box-shadow: 0 15px 35px rgba(11, 42, 74, 0.1);
  transition: all 0.6s var(--ease-out-expo);
  border: 1px solid rgba(245, 158, 11, 0.1);
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
  display: block;
}

.carousel-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(11, 42, 74, 0.2);
}

.carousel-card:hover img {
  transform: scale(1.1);
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(0, 0, 0, 0.85) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  z-index: 2;
}

.carousel-overlay h3 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.carousel-overlay .usp {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

/* Floating Quote Button */
.carousel-cta {
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: 85px;
  height: 85px;
  background: var(--logo-yellow);
  color: var(--logo-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 10;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.5s var(--ease-out-expo);
}

.carousel-card:hover .carousel-cta {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 1024px) {
  .carousel-card {
    width: 440px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .carousel-card {
    width: 85vw;
    height: 260px;
  }
  .spiritual-carousel {
    /* Simple gradient for mobile */
    background-image: radial-gradient(
      circle at 50% 50%,
      rgba(251, 191, 36, 0.1) 0%,
      transparent 70%
    );
  }
  .carousel-cta {
    opacity: 1;
    transform: scale(1);
    width: 60px;
    height: 60px;
    font-size: 9px;
    right: 15px;
    bottom: 15px;
  }
}

/* ==========================================================
   BLOG HUB — MINT BREEZE EDITION (LCP FIXED)
   ========================================================== */

.blog-hub {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;

  /* Performance */
  content-visibility: auto;
  contain-intrinsic-size: 900px;

  /* Mint Breeze Base */
  background-color: #f0fdf4;
  background-image:
    radial-gradient(at 0% 0%, rgba(74, 222, 128, 0.1) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(34, 197, 94, 0.05) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(255, 255, 255, 0.8) 0%, transparent 60%);
  background-attachment: scroll;
}

.blog-hub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(34, 197, 94, 0.3) 50%,
    transparent 100%
  );
  opacity: 0.6;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 24px;
}

/* Base Card Logic */
.bento-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  background-color: #e2e8f0; /* Fallback loading color */
  transition: all 0.5s var(--ease-out-expo);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* Fix Safari border radius clipping */
  transform: translateZ(0);
}

/* NEW: Image Tag Handling (Replaces Background-Image for LCP) */
.bento-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; /* Behind content */
  transition: transform 0.6s ease;
  will-change: transform;
}

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(11, 42, 74, 0.15);
}

.bento-card:hover .bento-bg-img {
  transform: scale(1.08);
}

/* Overlay & Content */
.bento-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.8)
  );
  z-index: 1;
  pointer-events: none;
}

.bento-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px;
  z-index: 2;
  color: #fff;
  width: 100%;
}

.card-icon-box {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.bento-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.bento-card p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Special Grid Spans */
.grid-wide {
  grid-column: span 2;
}

/* Featured Center Card */
.featured-center {
  grid-column: span 2;
  grid-row: span 2;
  background: #0b2a4a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.featured-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
  background-size: 200% 200%;
  animation: blogGradient 8s infinite ease;
  opacity: 0.9;
  z-index: 0;
}

.featured-center .card-content {
  position: relative;
  padding: 40px;
  height: auto;
}

.featured-center h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 15px 0;
  line-height: 1.1;
}

.badge-pill {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-text-link {
  margin-top: 20px;
  display: inline-block;
  padding: 12px 30px;
  background: #fff;
  color: #0b2a4a;
  border-radius: 50px;
  font-weight: 700;
  transition: 0.3s ease;
}

/* Arrow Decoration */
.card-arrow {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  z-index: 5;
}

.bento-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

@keyframes blogGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    display: flex;
    flex-direction: column;
    padding: 0 10px;
  }
  .bento-card {
    min-height: 220px;
  }
  .featured-center h2 {
    font-size: 1.8rem;
  }
  .blog-hub {
    /* Simplified mobile gradient */
    background-image: radial-gradient(
      at 0% 0%,
      rgba(74, 222, 128, 0.08) 0px,
      transparent 60%
    );
  }
}

/* ==========================================================
   WHY SECTION — THE DELIGHT TRIPS EDGE (STYLE & PERFORMANCE)
   ========================================================== */

.why-vertical {
  padding: 100px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 500px;
}

/* 1. Enhanced Mandala Logic */
.mandala-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  /* World-class subtle dot grid + radial focus */
  background-image: radial-gradient(
    rgba(11, 42, 74, 0.05) 1.5px,
    transparent 1.5px
  );
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

/* 2. Header & Trust Pill */
.trust-pill {
  display: inline-block;
  background: rgba(255, 204, 0, 0.1);
  color: #0b2a4a;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255, 204, 0, 0.3);
}

/* 3. The Grid (Bento Style) */
.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
  position: relative;
  z-index: 5;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* 4. The Why Box (Card) */
.why-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 35px 20px;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #f1f5f9;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.02),
    0 2px 4px -1px rgba(0, 0, 0, 0.01);
}

.why-box:hover {
  transform: translateY(-12px);
  background: #ffffff;
  border-color: #ffcc00;
  box-shadow: 0 25px 50px -12px rgba(11, 42, 74, 0.12);
}

/* Icon Container Animation */
.icon-wrapper {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 20px;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}

.why-box:hover .icon-wrapper {
  background: #ffcc00;
  transform: rotate(10deg);
}

.why-box img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Typography Refinement */
.why-box h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0b2a4a;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.why-box p {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
}

/* 5. Responsive World-Class Layout */
@media (max-width: 1200px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .why-vertical {
    padding: 60px 0;
  }
  .why-box {
    padding: 25px 15px;
  }
}

@media (max-width: 480px) {
  /* Strategic "Stack" for Small Mobile to keep readability */
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-box {
    flex-direction: row;
    text-align: left;
    padding: 20px;
    gap: 20px;
  }
  .icon-wrapper {
    margin-bottom: 0;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }
  .icon-wrapper img {
    width: 28px;
    height: 28px;
  }
  .why-box h3 {
    font-size: 1rem;
    margin-bottom: 2px;
  }
}

/* ==========================================================
   NEWSLETTER SECTION
   ========================================================== */

.newsletter-section {
  margin: 4rem auto 6rem;
  padding: 0 1.5rem;
  max-width: var(--container-width);

  /* Performance */
  content-visibility: auto;
  contain-intrinsic-size: 300px;
}

.newsletter-card {
  background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  border-radius: 24px;
  padding: 4rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.newsletter-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.newsletter-text {
  flex: 1;
  z-index: 2;
}

.newsletter-text h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.newsletter-text p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 450px;
}

.newsletter-form {
  flex: 1;
  display: flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px;
  border-radius: 12px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
  max-width: 500px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.newsletter-form input {
  flex-grow: 1;
  background: transparent;
  border: none;
  padding: 12px 15px;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.newsletter-btn {
  background: #fff;
  color: #b21f1f;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  background: #f8f9fa;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 900px) {
  .newsletter-card {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
    gap: 30px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-btn {
    width: 100%;
  }
}

/* =========================================
   COOKIE BANNER
   ========================================= */

.cookie-banner-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 12px;
  pointer-events: none;
  transform: translateY(-150%);
  transition: transform 0.6s var(--ease-out-expo);
}

.cookie-banner-wrapper.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  gap: 16px;
  text-align: center;
}

@media (min-width: 768px) {
  .cookie-container {
    flex-direction: row;
    max-width: 1100px;
    text-align: left;
    padding: 12px 24px;
    justify-content: space-between;
  }
}

.cookie-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
  }
}

.cookie-actions {
  display: flex;
  gap: 8px;
  width: 100%;
  justify-content: center;
}

@media (min-width: 768px) {
  .cookie-actions {
    width: auto;
  }
}

.btn-primary {
  background-color: var(--logo-blue);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-text {
  background-color: transparent;
  color: var(--text-gray);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
}

.btn-text:hover {
  background-color: #f1f5f9;
  color: var(--logo-blue);
}

/* Utility Helper */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
