/* Import ArsenicaTrial Font Family */
@import url('https://fonts.cdnfonts.com/css/arsenica-trial');

/* Import Quincy Regular Font */
@font-face {
  font-family: 'Quincy';
  src: url('quincy/quincyregular-ov678.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Import Montserrat Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&family=Dancing+Script:wght@700&display=swap');

/* ========================================
   BASE STYLES
   ======================================== */
:root {
  --primary-teal: #00A8A8;
  --dark-teal: #002B2B;
  --primary-gold: #F5C451;
  --dark-gold: #8B6B1D;
  --soft-cream: #EBE0D0;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Quincy', Arial, sans-serif;
  width: 100%;
}


/* ========================================
   HEADER
   ======================================== */
header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #E0703C;
  height: 84px;
  border-radius: 0 0 15px 15px;
  margin-bottom: -10px;
  z-index: 9999;
}

.header-notch {
  display: none;
}

.header-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  position: static;
  padding-left: 80px;
  /* account for right section width */
}

.logo {
  display: flex;
  align-items: center;
  color: #0b2c4d;
  font-weight: bold;
  font-size: 20px;
}

.logo img {
  height: 84px;
  width: 115px;
  margin-right: 50px;
}

nav {
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: flex-start;
}

nav a {
  text-decoration: none;
  color: #EBE0D0;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

nav a:hover {
  color: #FFFFFF;
}

/* Dropdown Container */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropbtn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropbtn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: #FFFFFF;
  min-width: 190px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 10px 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Show on Hover */
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.dropdown:hover .dropbtn i {
  transform: rotate(180deg);
}

/* Dropdown Links */
.dropdown-content a {
  color: #2F2F2F !important;
  padding: 12px 24px;
  text-decoration: none;
  display: block;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.dropdown-content a:hover {
  background-color: #F8F9FA;
  color: #E0703C !important;
  border-left-color: #E0703C;
  padding-left: 28px;
}

/* Connector to prevent dropdown from closing when moving mouse to it */
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}

#menuToggle,
.header-notch,
#sideDrawer,
#drawerOverlay {
  display: none !important;
}

.right-section {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  /* Increased to accommodate button */
  height: 100%;
  background-color: #363636;
  color: white;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
  /* Adjusted clip-path for wider section */
  border-bottom-right-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  z-index: 2;
  padding-right: 80px;
}

.buy-now-btn {
  background-color: #FF5E00;
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(255, 94, 0, 0.2);
}

.buy-now-btn:hover {
  background-color: #fa7225;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 94, 0, 0.4);
}

.buy-now-btn span {
  background: rgba(255, 255, 255, 0.2);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.right-section i {
  font-size: 22px;
  cursor: pointer;
}

/* ========================================
   HERO SECTION - SLIDER
   ======================================== */
.hero-section {
  position: relative;
  height: 100vh;
  margin-top: -12px;
  overflow: hidden;
  background: #0D0F12;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  z-index: 1;
}

.hero-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  z-index: 2;
}

.hero-main-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Left Content Styles */
.hero-content {
  flex: 1;
  max-width: 620px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease .4s;
}

.hero-slide.active .hero-content {
  opacity: 1;
  transform: translateX(0);
}


.hero-heading {
  color: #FFFFFF;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
  font-family: "Arsenica Trial", "Quincy", serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-heading span {
  display: inline-block;
  font-family: 'Quincy';
}

.hero-heading .white-italic {
  font-style: italic;
  font-weight: 600;
  font-family: 'Arsenica Trial';
}

.hero-desc {
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 80px;
}

.cta-btn {
  display: inline-flex;
  padding: 16px 40px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 50px;
  background: #D87D4A;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  box-shadow: 0 8px 20px rgba(216, 125, 74, 0.3);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(253, 133, 58, 0.4);
}

.cta-btn a {
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}


/* Navigation */
.hero-pagination {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #FF7637;
  width: 30px;
  border-radius: 10px;
}

/* Arrow Nav Removed */

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(var(--rot, 0deg));
  }

  50% {
    transform: translateY(-20px) rotate(calc(var(--rot, 0deg) + 2deg));
  }
}

/* ========================================
   SECTION 2 - WOW ACCORDION
   ======================================== */
.wow-section {
  background: #EBE0D0;
  padding: 68px 80px;
}

.wow-header {
  margin-bottom: 56px;
  text-align: left;
}

.wow-subheading {
  color: #E24800;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.16px;
  margin-top: 0;
  margin-bottom: 12px;
}

.wow-heading {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 46px;
  letter-spacing: -0.44px;
  margin-bottom: 56px;
}

.wow-heading span {
  color: #000;
  font-family: 'Arsenica Trial';
  font-size: 56px;
  font-style: italic;
  font-weight: 500;
  line-height: 46px;
  letter-spacing: -0.616px;
}

.wow-container {
  display: flex;
  gap: 64px;
  align-items: stretch;
  margin: 0 auto;
}

.wow-accordion {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
}

.wow-item {
  flex: 1;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  box-shadow: inset 0 -1px 0 0 rgba(26, 26, 26, 0.1);
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  font-size: 20px;
  font-style: normal;
  line-height: 24px;
  color: #111;
  background: transparent;
  border-radius: 0;
  text-align: left;
  min-height: 60px;
}

.wow-item:first-child {
  box-shadow: inset 0 1px 0 0 rgba(26, 26, 26, 0.1), inset 0 -1px 0 0 rgba(26, 26, 26, 0.1);
}

.wow-item.active {
  background-color: #B8E3E8 !important;
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px #003237;
}

.wow-item:hover:not(.active) {
  background-color: rgba(197, 229, 229, 0.3);
}

.wow-item[data-target="stay"].active {
  background: #FFD56C !important;
}

.wow-item[data-target="insurance"].active {
  background: #C7E4AE !important;
}

.wow-item[data-target="shopping"].active {
  background: #E0703C !important;
  color: #FFFFFF !important;
}

.wow-item[data-target="scratch"].active {
  background: #BE7C49 !important;
  color: #FFFFFF !important;
}

.wow-item[data-target="product"].active {
  background: #007A86 !important;
  color: #FFFFFF !important;
}

/* Individual Tab Themes Removed in favor of unified Figma design */

.or {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #E31E24;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  border-radius: 50%;
  margin: -16px auto;
  position: relative;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 2px solid #FDF8F4;
  /* Match section bg to sit cleanly on the line */
}

.wow-content {
  flex: 1;
  background: transparent;
  padding: 0;
}

.content-panel {
  display: none;
}

.content-panel.active {
  display: block;
  animation: fade .4s;
}

@keyframes fade {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}


.mobile-panel-info {
  display: none;
}

.revamped-panel {
  background: #ffffff;
  border-radius: 10px;
  padding: 27px 24px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  min-height: 562px;
  /* Add position relative for absolute button */
}

/* Banner Section */
.revamped-banner {
  background: #E0F4F4;
  border-radius: 10px;
  box-shadow: 6px 6px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.revamped-banner::after {
  content: '';
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 250px;
  height: 250px;
  background: #21A8B5;
  border-radius: 50%;
  opacity: 0.15;
  z-index: 1;
}

.revamped-banner .banner-content {
  position: relative;
  z-index: 2;
}

.revamped-banner h3 {
  color: #000;
  font-family: Quincy;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 24px;
}

.revamped-banner .tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.revamped-banner .tag {
  background: #002B2B;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: capitalize;
}


/* Feature Grid Section */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: #EAF2F2;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}


/* Asset Grid Section */
.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
  position: relative;
}

.asset-grid-inner {
  position: absolute;
  inset: 0;
  /* shorthand for top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; */
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  visibility: hidden;
  box-shadow: 6px 6px 4px 0 rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.asset-grid-btn {
  background: #E26831;
  color: #FFFFFF;
  border: none;
  border-radius: 100px;
  height: 56px;
  width: min(276px, 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(226, 104, 49, 0.3);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  outline: none;
  padding: 0 24px;
}

.asset-grid-btn:hover {
  background: #f17843;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(226, 104, 49, 0.4);
}

.asset-grid-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* Theme-specific button overrides for Shopping, Scratch, and Product */
.revamped-panel.theme-shopping .asset-grid-btn,
.revamped-panel.theme-scratch .asset-grid-btn,
.revamped-panel.theme-product .asset-grid-btn {
  background: #FDE5D1;
  color: #E26831;
  box-shadow: 0 10px 25px rgba(253, 229, 209, 0.4);
}

.revamped-panel.theme-shopping .asset-grid-btn:hover,
.revamped-panel.theme-scratch .asset-grid-btn:hover,
.revamped-panel.theme-product .asset-grid-btn:hover {
  background: #fce1ca;
}


.asset-grid-btn:hover i {
  transform: translateX(4px);
}


.asset-grid-inner:hover {
  background: rgba(0, 0, 0, 0.5);
}

.content-panel.active:hover .asset-card {
  opacity: 0;
  visibility: hidden;
}

.content-panel.active:hover .asset-grid-inner {
  opacity: 1;
  visibility: visible;
  /* Reset translate to 0 normally, but hover state of asset-grid-inner handles its own transform */
}



/* Standard Mobile Buttons hidden on desktop */
.mobile-only-btn {
  display: none;
}

/* Desktop Explore Button Styles */
.desktop-only-btn {
  display: none;
  /* Hidden by default, shown on desktop */
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: #FFFFFF;
  color: #000000;
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  align-items: center;
  gap: 10px;
}

@media (min-width: 769px) {
  .desktop-only-btn {
    display: flex;
  }
}

.content-panel.active:hover .desktop-only-btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.desktop-only-btn:hover {
  background: #F5921E;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 146, 30, 0.3);
}

.asset-card {
  background: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  cursor: default;
  min-height: 80px;
}

.asset-card i {
  font-size: 24px;
  color: #FFFFFF;
  opacity: 0.9;
  width: 32px;
  text-align: center;
}

.asset-card .asset-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.asset-card .asset-title {
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.asset-card .asset-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
}

.asset-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  background: #252525;
}


/* Theme Overrides - Holiday Stay (Yellow) */
.revamped-panel.theme-yellow {
  --theme-banner-bg: #F3CA52;
  --theme-banner-shape-left: rgba(222, 159, 0, 0.50);
  --theme-banner-shape-right: #F5921E;
  --theme-panel-bg: #FAF6ED;
  --theme-text-dark: #1A1A1A;
  --theme-card-bg: #FDF8F4;
  --theme-card-border: rgba(245, 146, 30, 0.2);
  --theme-accent: #F5921E;
  background: var(--theme-panel-bg);
}

.revamped-panel.theme-yellow .revamped-banner {
  background: var(--theme-banner-bg);
  position: relative;
  overflow: hidden;
}

.revamped-panel.theme-yellow .revamped-banner::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  height: 240px;
  background: var(--theme-banner-shape-left);
  border-radius: 50%;
  opacity: 1;
  z-index: 1;
}

.revamped-panel.theme-yellow .revamped-banner::after {
  content: '';
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  background: var(--theme-banner-shape-right);
  border-radius: 50%;
  opacity: 0.8;
  z-index: 1;
  left: auto;
}

.revamped-panel.theme-yellow .revamped-banner h3 {
  color: var(--theme-text-dark);
  position: relative;
  z-index: 2;
  font-family: 'Quincy', serif;
}

.revamped-panel.theme-yellow .tag {
  background: #000000;
  color: #FFFFFF;
  position: relative;
  z-index: 2;
}

.revamped-panel.theme-yellow .feature-card {
  border-color: var(--theme-card-border);
  background: var(--theme-card-bg);
}

.revamped-panel.theme-yellow .feature-card i,
.revamped-panel.theme-yellow .feature-card .feature-value {
  color: var(--theme-text-dark);
}

.revamped-panel.theme-yellow .feature-card .feature-value {
  font-family: 'Quincy', serif;
  font-weight: 700;
}

.revamped-panel.theme-yellow .asset-card .asset-overlay {
  background: linear-gradient(to right, rgba(245, 146, 30, 0.6), transparent);
}

.revamped-panel.theme-yellow .asset-grid-inner {
  background: #FFD56C;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}


/* Insurance Theme (Revised Sage Green) */
.revamped-panel.theme-insurance {
  --theme-banner-bg: #C7E4AE;
  --theme-banner-shape-left: #85A56B;
  --theme-banner-shape-right: #6F8F55BF;
  --theme-text-dark: #1A3317;
  --theme-card-bg: #EBF2E8;
  --theme-card-border: #1A3317;

}

.revamped-panel.theme-insurance .revamped-banner {
  background: var(--theme-banner-bg);
  position: relative;
  overflow: hidden;
  border: none;
}

.revamped-panel.theme-insurance .revamped-banner::before {
  content: '';
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 400px;
  height: 300px;
  background: var(--theme-banner-shape-left);
  border-radius: 50%;
  opacity: 0.7;
  z-index: 1;
}

.revamped-panel.theme-insurance .revamped-banner::after {
  content: '';
  position: absolute;
  right: -50px;
  top: -20px;
  width: 320px;
  height: 320px;
  background: var(--theme-banner-shape-right);
  border-radius: 50%;
  opacity: 1;
  z-index: 1;
  transform: scale(1.2);
}

.revamped-panel.theme-insurance .revamped-banner h3 {
  color: var(--theme-text-dark);
  position: relative;
  z-index: 2;
  font-family: 'Quincy', serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
}

.revamped-panel.theme-insurance .tag {
  background: var(--theme-text-dark);
  color: #FFFFFF;
  position: relative;
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.revamped-panel.theme-insurance .feature-card {
  background: var(--theme-card-bg);
  border: 1.5px solid var(--theme-card-border);
  border-radius: 12px;
  padding: 12px 16px;
}

.revamped-panel.theme-insurance .feature-card i {
  color: var(--theme-text-dark);
  font-size: 20px;
  margin-bottom: 4px;
}

.revamped-panel.theme-insurance .feature-card .feature-value {
  color: var(--theme-text-dark);
  font-family: 'Quincy', serif;
  font-size: 26px;
  font-weight: 700;
  margin: 0;
}

.revamped-panel.theme-insurance .feature-card .feature-label {
  color: var(--theme-text-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
}

/* Redesigning Asset Grid for Insurance */
.revamped-panel.theme-insurance .asset-card {
  border: none;
}

.revamped-panel.theme-insurance .asset-card .asset-overlay {
  background: linear-gradient(to left, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  justify-content: flex-end;
  padding: 12px 20px;
  backdrop-filter: none;
}

.revamped-panel.theme-insurance .asset-card .asset-title {
  text-align: right;
  max-width: 140px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
}

.revamped-panel.theme-insurance .asset-grid-inner {
  background: #C7E4AE;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}


/* Shopping Theme (Orange/Warm) */
.revamped-panel.theme-shopping {
  --theme-panel-bg: #EDE7DA;
  --theme-banner-bg: #D36A3E;
  --theme-banner-shape: #C05A2F;
  --theme-text-dark: #1A1A1A;
  --theme-card-bg: #F2DDC6;
  --theme-card-border: #93644D;
  --theme-accent: #C05A2F;
}

.revamped-panel.theme-shopping .revamped-banner {
  background: var(--theme-banner-bg);
  position: relative;
  overflow: hidden;
}

.revamped-panel.theme-shopping .revamped-banner::before {
  content: '';
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 220px;
  background: var(--theme-banner-shape);
  border-radius: 50%;
  opacity: 0.8;
  z-index: 1;
}

.revamped-panel.theme-shopping .revamped-banner::after {
  content: '';
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  background: var(--theme-banner-shape);
  border-radius: 50%;
  opacity: 0.8;
  z-index: 1;
  left: auto;
  /* Override any potential left positioning from global styles */
}

.revamped-panel.theme-shopping .revamped-banner h3 {
  color: #FFFFFF;
}

.revamped-panel.theme-shopping .tag {
  background: #1C1917;
  color: #FFFFFF;
}

.revamped-panel.theme-shopping .feature-card {
  border-color: rgba(147, 100, 77, 0.2);
  background: var(--theme-card-bg);
}

.revamped-panel.theme-shopping .feature-card i,
.revamped-panel.theme-shopping .feature-card .feature-value {
  color: var(--theme-text-dark);
}

.revamped-panel.theme-shopping .asset-card .asset-overlay {
  background: linear-gradient(to right, rgba(74, 38, 0, 0.6), transparent);
}

.revamped-panel.theme-shopping .asset-grid-inner {
  background: #E0703C;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}


/* Scratch Card Theme (Brown/Gold) */
.revamped-panel.theme-scratch {
  --theme-panel-bg: #FDF8F4;
  --theme-banner-bg: linear-gradient(135deg, #BE7C4D 0%, #8B5A2B 100%);
  --theme-banner-shape: #6B3A1A;
  --theme-text-dark: #1A1A1A;
  --theme-card-bg: #F2E9DE;
  --theme-card-border: rgba(107, 58, 26, 0.2);
  --theme-accent: #6B3A1A;
}

.revamped-panel.theme-scratch .revamped-banner {
  background: var(--theme-banner-bg);
  position: relative;
  overflow: hidden;
}

.revamped-panel.theme-scratch .revamped-banner::before {
  content: '';
  position: absolute;
  left: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  background: var(--theme-banner-shape);
  border-radius: 50%;
  opacity: 0.6;
  z-index: 1;
}

.revamped-panel.theme-scratch .revamped-banner::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 240px;
  height: 240px;
  background: var(--theme-banner-shape);
  border-radius: 50%;
  opacity: 0.5;
  z-index: 1;
}

.revamped-panel.theme-scratch .revamped-banner h3 {
  color: #FFFFFF;
  position: relative;
  z-index: 2;
  font-family: 'Quincy', serif;
}

.revamped-panel.theme-scratch .tag {
  background: #1A1A1A;
  color: #FFFFFF;
  position: relative;
  z-index: 2;
}

.revamped-panel.theme-scratch .feature-card {
  border-color: var(--theme-card-border);
  background: var(--theme-card-bg);
}

.revamped-panel.theme-scratch .feature-card .feature-value {
  color: var(--theme-text-dark);
  font-family: 'Quincy', serif;
  font-weight: 700;
}

.revamped-panel.theme-scratch .asset-card .asset-overlay {
  background: linear-gradient(to right, rgba(107, 58, 26, 0.7), transparent);
}


.revamped-panel.theme-scratch .feature-card i,
.revamped-panel.theme-scratch .feature-card .feature-value {
  color: var(--theme-text-dark);
}

.revamped-panel.theme-scratch .asset-card .asset-overlay {
  background: linear-gradient(to right, rgba(61, 43, 31, 0.6), transparent);
}

.revamped-panel.theme-scratch .asset-grid-inner {
  background: #BE7C49;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}


/* Free Product Theme (Deep Teal) */
.revamped-panel.theme-product {
  --theme-panel-bg: #006D7D;
  --theme-banner-bg: #006D7D;
  --theme-banner-shape: #004953;
  --theme-text-light: #FFFFFF;
  --theme-card-bg: #EDFBFC;
  --theme-card-border: #EDFBFC;
  --theme-accent: #004953;
}

.revamped-panel.theme-product .revamped-banner {
  background: var(--theme-banner-bg);
  position: relative;
  overflow: hidden;
}

.revamped-panel.theme-product .revamped-banner::before {
  content: '';
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 220px;
  background: var(--theme-banner-shape);
  border-radius: 50%;
  opacity: 0.8;
  z-index: 1;
}

.revamped-panel.theme-product .revamped-banner::after {
  content: '';
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  background: var(--theme-banner-shape);
  border-radius: 50%;
  opacity: 0.8;
  z-index: 1;
  left: auto;
}

.revamped-panel.theme-product .revamped-banner h3 {
  color: var(--theme-text-light);
  position: relative;
  z-index: 2;
}

.revamped-panel.theme-product .tag {
  background: #1A1A1A;
  color: #FFFFFF;
  position: relative;
  z-index: 2;
}

.revamped-panel.theme-product .feature-card {
  border-color: rgba(0, 73, 83, 0.1);
  background: var(--theme-card-bg);
}

.revamped-panel.theme-product .feature-card i,
.revamped-panel.theme-product .feature-card .feature-value {
  color: #1A1A1A;
}

.revamped-panel.theme-product .asset-card .asset-overlay {
  background: linear-gradient(to right, rgba(0, 109, 125, 0.8), transparent);
}

.revamped-panel.theme-product .asset-grid-inner {
  background: #007A86;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}


/* Movie Theme (Teal/Cyan) */
.revamped-panel.theme-movies {
  --theme-banner-bg: #B8E3E8;
  --theme-banner-shape: #21A8B5;
  --theme-text-dark: #002B2B;
  --theme-card-border: #3FB6BF;
  --theme-accent: #3FB6BF;
}

.revamped-panel.theme-movies .revamped-banner {
  background: var(--theme-banner-bg);
}

.revamped-panel.theme-movies .revamped-banner::before {
  content: '';
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  background: #21A8B580;
  border-radius: 50%;
  opacity: 1;
  z-index: 1;
}

.revamped-panel.theme-movies .revamped-banner::after {
  background: #21A8B580;
  opacity: 1;
}




.revamped-panel.theme-movies .revamped-banner h3 {
  color: var(--theme-text-dark);
}

.revamped-panel.theme-movies .feature-card {
  border-color: rgba(63, 182, 191, 0.3);
  background: #ffffff;
}


.revamped-panel.theme-movies .feature-card i,
.revamped-panel.theme-movies .feature-card .feature-value {
  color: var(--theme-text-dark);
}

.revamped-panel.theme-movies .asset-card .asset-overlay {
  background: linear-gradient(to right, rgba(0, 43, 43, 0.6), transparent);
}

.revamped-panel.theme-movies .asset-grid-inner {
  background: #B8E3E8;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}



/* ========================================
   SECTION 3 - PROCESS
   ======================================== */
.process {
  background-color: #E08550;
  text-align: center;
  padding: 68px 80px;
}

.subheading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 1%;
  text-align: center;
  color: #2D2723;
  margin-bottom: 10px;
}

.process .heading {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 50px;
  font-family: Montserrat, sans-serif;
  color: #2D2723;
}

.process .heading span {
  color: #2D2723;
  font-family: "Arsenica Trial";
  font-size: 56px;
  font-style: italic;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.616px;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
}

.step {
  max-width: 250px;
}

.process-icons {
  width: 100px;
  height: 100px;
  background: #F8F4F1;
  color: #2D2723;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 40px;
  margin: 0 auto 20px;
}

.process-icons svg path,
.process-icons svg circle,
.process-icons svg rect,
.process-icons svg ellipse {
  fill: #2D2723 !important;
}

.process-icons svg path[stroke],
.process-icons svg [stroke] {
  stroke: #2D2723 !important;
}

.step-connector {
  width: 80px;
  height: 2px;
  background: transparent;
  border-top: 2px dashed #D9D9D9;
  position: relative;
  align-self: flex-start;
  margin-top: 132px;
  flex-shrink: 0;
}

.step-connector::before,
.step-connector::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #2D2723;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.step-connector::before {
  left: -4px;
}

.step-connector::after {
  right: -4px;
}

.step-title {
  color: rgba(45, 39, 35, 0.7);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -1.1%;
  text-align: center;
  vertical-align: middle;
}

.step h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -2%;
  text-align: center;
  vertical-align: middle;
  color: #2D2723;
  margin: 10px 0;
}

.desc {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -1.1%;
  text-align: center;
  vertical-align: middle;
  color: #2D2723;
}

/* ========================================
   SECTION 4 - REVIEWS
   ======================================== */
.reviews {
  background-color: #E0703C;
  padding: 68px 80px;
  position: relative;
  overflow: hidden;
}

.ellipse-tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.15);
  border-bottom-right-radius: 100%;
  pointer-events: none;
  z-index: 1;
}

.ellipse-br {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.15);
  border-top-left-radius: 100%;
  pointer-events: none;
  z-index: 1;
}

.reviews-container {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.reviews-header {
  text-align: left;
  margin-bottom: 60px;
}

.reviews-subheading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.16px;
  color: #692100;
  margin-bottom: 16px;
}

.reviews-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 0;
}

.reviews-heading-main {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 60px;
  color: white;
  margin: 0;
}

.reviews-heading-secondary {
  font-family: 'Arsenica Trial';
  font-weight: 500;
  font-style: italic;
  font-size: 56px;
  line-height: 60px;
  letter-spacing: -0.528px;
  color: white;
  margin: 0;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}

.stat-card {
  height: 136px;
  background: #AE440A;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  transition: opacity 0.8s ease;
}

.stat-number {
  color: #EBE0D0;
  text-align: center;
  font-family: Quincy;
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.52px;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.14px;
  color: white;
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}

.reviews-wrapper {
  display: flex;
  gap: 30px;
  transition: transform 0.3s ease-out;
}

.review-card {
  flex: 0 0 calc((100% - (2 * 30px)) / 3);
  background-color: #EBE0D0;
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  box-sizing: border-box;
}

.review-text {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: -0.2px;
  margin: 0;
  padding-bottom: 28px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: -0.16px;
  padding-bottom: 28px;
}


.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars i {
  color: #ffc04b;
  font-size: 24px;
}

.carousel-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 40px;
  padding-right: 20px;
}

.nav-btn {
  width: 40px;
  height: 40px;
  background: #EBE0D0;
  border: 2px solid #8D370F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
  background-color: #f5f5f5;
}

.nav-btn i {
  color: #333333;
  font-size: 20px;
}

/* ========================================
   SECTION 5 - DESTINATIONS
   ======================================== */
.destinations {
  padding: 10px 50px;
  background: #EBE0D0;
}

.destinations-subheading {
  color: #E24800;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.16px;
  align-self: stretch;
  margin: 0 0 16px 0;
}

.destinations-heading {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 56px;
  letter-spacing: -0.44px;
  margin: 0 0 12px 0;
}

.destinations-heading span {
  color: #000;
  font-family: 'Arsenica Trial';
  font-size: 56px;
  font-style: italic;
  font-weight: 500;
  line-height: 56px;
  letter-spacing: -0.616px;
}

.description {
  color: #4A4A4A;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.2px;
  margin: 10px 0 40px;
}

.destinations-scroller {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 240px;
  gap: 24px;
}

.destinations-grid,
.destinations-slider {
  display: contents;
}

.destinations-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 16.91%, rgba(137, 137, 137, 0.00) 48.97%, rgba(37, 37, 37, 0.64) 70.32%);
  box-shadow: 6px 8px 6.4px 0 rgba(70, 41, 0, 0.40);
  cursor: pointer;
}

.state-tag {
  display: none;
}

.manali-card {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.mysore-card {
  grid-column: 3 / 5;
  grid-row: 1 / 2;
}

.amritsar-card {
  grid-column: 5 / 7;
  grid-row: 1 / 2;
}

.ooty-card {
  grid-column: 3 / 5;
  grid-row: 2 / 3;
}

.jaipur-card {
  grid-column: 5 / 7;
  grid-row: 2 / 3;
}

.agra-card {
  grid-column: 1 / 4;
  grid-row: 3 / 4;
}

.puri-card {
  grid-column: 4 / 7;
  grid-row: 3 / 4;
}

.destinations-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destinations-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 30px;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 50%;
}

.destinations-overlay h3 {
  margin: 0;
  color: #FFF;
  font-family: 'Arsenica Trial';
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.36px;
}

.destinations-overlay p {
  margin: 4px 0 12px;
  color: #DDD;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.16px;
}

.destinations-overlay a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #FFF;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.destinations-overlay a:hover {
  color: #FFB600;
  gap: 8px;
}

.destinations-cta {
  text-align: center;
  margin-top: 40px;
}

.destinations-cta a {
  background: #FF7637;
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 118, 55, 0.3);
  text-decoration: none;
  display: inline-block;
}

.destinations-cta a:hover {
  background: #e66a31;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 118, 55, 0.4);
}

/* ========================================
   SECTION 4 - MOVIE CAROUSEL
   ======================================== */
.movies-carousel-section {
  background: #F4F0E6;
  padding: 68px 80px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.movies-container {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.movies-header {
  text-align: left;
}

.movies-subheading {
  color: #E65100;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.movies-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0;
  line-height: 1.1;
}

.movies-heading .italic-serif {
  font-family: 'Quincy', serif;
  font-style: italic;
  font-weight: 500;
}

/* 3D Carousel Container */
.movie-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  /* Adjusted height */
  perspective: 2000px;
}

.movie-track-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.movie-track {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slide Styling - Image container + Meta below */
.movie-slide {
  position: absolute;
  width: 420px;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-align: left;
  /* Remove overflow:hidden to allow info below and shadows */
}

.movie-poster {
  width: 100%;
  height: 236px;
  /* 16:9 Aspect Ratio */
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.movie-info {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease;
  padding-left: 4px;
}

.movie-title {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #1A1A1A;
  margin: 0 0 8px 0;
}

.movie-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.movie-badge {
  background: #F2F2F2;
  color: #4A4A4A;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
}

.movie-meta {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px;
  color: #666666;
  font-weight: 400;
}

/* Carousel States with Scaling and Blur */
.movie-slide.active {
  transform: translate3d(0, 0, 250px) scale(1.2);
  z-index: 10;
  opacity: 1;
  filter: blur(0);
}

.movie-slide.active .movie-poster {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.movie-slide.prev {
  transform: translate3d(-340px, 0, 0) scale(0.95) rotateY(15deg);
  z-index: 5;
  opacity: 0.5;
  filter: blur(2px);
}

.movie-slide.next {
  transform: translate3d(340px, 0, 0) scale(0.95) rotateY(-15deg);
  z-index: 5;
  opacity: 0.5;
  filter: blur(2px);
}

.movie-slide.far-prev {
  transform: translate3d(-620px, 0, -100px) scale(0.8) rotateY(25deg);
  z-index: 2;
  opacity: 0.2;
  filter: blur(4px);
}

.movie-slide.far-next {
  transform: translate3d(620px, 0, -100px) scale(0.8) rotateY(-25deg);
  z-index: 2;
  opacity: 0.2;
  filter: blur(4px);
}

.movie-slide.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ========================================
   SECTION 5 - SHOP & POINTS
   ======================================== */
.shop-points-section {
  background: #E88C5D;
  padding: 68px 80px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.shop-points-container {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.shop-points-header {
  margin-bottom: 60px;
  text-align: left;
}

.shop-points-label {
  color: #1A1A1A;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.shop-points-heading {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0;
  line-height: 1.1;
}

.shop-points-subheading {
  font-family: 'Inter', sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: #1A1A1A;
  margin: 8px 0 0 0;
}

.shop-points-subheading .italic-serif {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
}

/* Shop Carousel Container */
.shop-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
  perspective: 2000px;
  padding: 0;
  margin-top: 50px;
}

.shop-track-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-track {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-slide {
  position: absolute;
  width: 320px;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.shop-card {
  background: #FFFFFF;
  border: 1px solid #000000;
  border-radius: 20px;
  padding: 24px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  position: relative;
  height: 100%;
  transition: all 0.3s ease;
}

.shop-card-badge {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: #E88C5D;
  color: #1A1A1A;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}

.shop-card-image {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.shop-card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.shop-card-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shop-card .product-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #1A1A1A;
  margin: 0;
}

.shop-rating-badge {
  background: #2D6A4F;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  width: fit-content;
}

.shop-card .price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 4px;
}

.shop-card .current-price {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1A1A1A;
}


/* Carousel States updated for 5 items */
.shop-slide.active {
  transform: translate3d(0, 0, 150px) scale(1.15);
  z-index: 10;
  opacity: 1;
}

.shop-slide.prev {
  transform: translate3d(-300px, 0, 0) scale(0.9);
  z-index: 5;
  opacity: 0.6;
  filter: blur(1px);
}

.shop-slide.next {
  transform: translate3d(300px, 0, 0) scale(0.9);
  z-index: 5;
  opacity: 0.6;
  filter: blur(1px);
}

.shop-slide.far-prev {
  transform: translate3d(-550px, 0, -100px) scale(0.75);
  opacity: 0.3;
  z-index: 2;
  filter: blur(2px);
}

.shop-slide.far-next {
  transform: translate3d(550px, 0, -100px) scale(0.75);
  opacity: 0.3;
  z-index: 2;
  filter: blur(2px);
}

.shop-slide.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Navigation Buttons */
.shop-nav-btn {
  background: #D45D25;
  color: #FFFFFF;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.shop-nav-btn:hover {
  background: #E65100;
}

.shop-nav-btn.prev {
  left: 30px;
}

.shop-nav-btn.next {
  right: 30px;
}

.shop-cta {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.white-pill-btn {
  padding: 16px 40px;
  background: #FDEEE3;
  color: #1A1A1A;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid #1A1A1A;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.white-pill-btn:hover {
  background: #1A1A1A;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Nav Buttons - Orange circular matching Figma */
.movie-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FF7637;
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  z-index: 30;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 118, 55, 0.3);
  transform: translateY(-50%);
}

.movie-nav-btn:hover {
  background: #E65100;
}

.movie-nav-btn.prev {
  left: 40px;
}

.movie-nav-btn.next {
  right: 40px;
}

/* CTA - Matching Figma Pill Design */

.orange-pill-btn {
  display: inline-flex;
  padding: 18px 48px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 60px;
  background: #FF7637;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 118, 55, 0.2);
}

.orange-pill-btn:hover {
  background: #E65100;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(255, 118, 55, 0.3);
}

.orange-pill-btn span i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.orange-pill-btn:hover span i {
  transform: translateX(5px);
}

/* ========================================
    SECTION 7 - FAQ
    ======================================== */
.faq-section {
  background: #EBE3D5;
  /* Updated background to match Figma approx */
  padding: 68px 80px;
}

.sub-heading {
  color: #F15A29;
  /* Updated to brand orange from Figma */
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.main-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #231F20;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* Active/Open state */
.faq-item.active {
  background: #F08756 !important;
  box-shadow: 0 12px 30px rgba(240, 135, 86, 0.3) !important;
}

.faq-question {
  width: 100%;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #231F20;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question {
  color: #FFFFFF !important;
}

.arrow-circle {
  background-color: #F3F4F6;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

/* State when active */
.faq-item.active .arrow-circle {
  background-color: #FFFFFF !important;
}

.faq-item.active .arrow-circle svg path {
  fill: #F08756 !important;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
  padding: 0 40px;
  opacity: 0;
  pointer-events: none;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  /* Big enough for the text */
  padding-top: 0px;
  padding-bottom: 30px;
  opacity: 1;
  pointer-events: auto;
}

.faq-item.active .faq-answer p {
  color: #FFFFFF !important;
}

.faq-answer p {
  color: #4B5563;
  line-height: 1.6;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 400;
}



/* ========================================
    FOOTER SECTION
    ======================================== */
.footer {
  background: linear-gradient(0deg, #17100A 21.12%, #C6531E 94.55%, #EBE0D0 98.86%);
  padding: 80px 80px 40px 80px;
  position: relative;
  overflow: hidden;
  color: #EBE0D0;
}

.footer-container {
  margin: 0px 8px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer-left {
  flex: 1;
}

.footer-left h2 {
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 500;
  font-style: normal;
  line-height: 40px;
  color: #EFB627;
  margin: 0 0 8px 0;
}

.footer-left h2 span {
  font-family: Montserrat, sans-serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 59px;
  color: #EFB627;
  display: block;
  margin-top: 5px;
}

.footer-tagline {
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  color: #EFB627;
  margin: 24px 0 32px 0;
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.footer-icons {
  width: 44px;
  height: 44px;
  border: 1px solid #EBE0D0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 18px;
  background: rgba(235, 224, 208, 0.04);
  color: #EBE0D0;
  text-decoration: none;
}

.footer-icons:hover {
  background: rgba(235, 224, 208, 0.1);
  border-color: #EBE0D0;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-links h4 {
  color: #EBE0D0;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  color: #EBE0D0;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.5px;
  margin-bottom: 14px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-links li a {
  color: inherit;
  text-decoration: none;
}

.footer-links li:hover {
  color: #EFB627;
}

.footer-contact h4 {
  color: #EBE0D0;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact li {
  color: #EBE0D0;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.5px;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact li i {
  margin-top: 4px;
}

.footer-contact li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact li a:hover {
  color: #EFB627;
}

.footer-contact address {
  font-style: normal;
}

.footer-right-col {
  max-width: 320px;
}

.footer-subscribe {
  width: 100%;
}

.footer-subscribe h4 {
  color: #EBE0D0;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 16.5px;
  letter-spacing: 1.32px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-subscribe p {
  color: #EBE0D0;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26.1px;
  margin-bottom: 24px;
}

.subscribe-form {
  border-radius: 40px;
  margin: 20px 0px;
}

.subscribe-form button {
  background: #E25D1F;
  border-bottom: 2px solid #E25D1F;
  color: #EBE0D0;
  border-radius: 40px;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  outline: none;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.subscribe-form button:hover {
  border-radius: 40px;
  border-bottom: 2px solid #C9C9C9;
  background: linear-gradient(182deg, #FF8851 1.89%, #D04200 53.67%, #772A06 98.57%);
}

.footer-subscribe small {
  color: #EBE0D0;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.2px;
  display: block;
}

.footer-contact-details {
  margin-top: 40px;
}

.footer-address,
.footer-email,
.footer-mobile {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #EBE0D0;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 20px;
}

.footer-address strong,
.footer-email strong,
.footer-mobile strong {
  color: #EBE0D0;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.footer-email a,
.footer-mobile a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-email a:hover,
.footer-mobile a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(235, 224, 208, 0.1);
  margin: 80px auto 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: rgba(235, 224, 208, 0.6);
}

.bottom-links {
  display: flex;
  gap: 32px;
}

.bottom-links a,
.bottom-links span {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: rgba(235, 224, 208, 0.6);
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: none;
}

.bottom-links a:hover,
.bottom-links span:hover {
  color: #FFB800;
}

/* Mobile and Tablet Responsiveness */
@media (max-width: 1024px) {
  .wow-container {
    gap: 32px !important;
  }
}

@media (max-width: 768px) {

  /* Global Adjustments */
  .wow-section {
    padding: 40px 20px !important;
  }

  /* Header Mobile */
  header {
    height: 48px !important;
    border-radius: 0 0 12px 12px !important;
    margin-bottom: 0 !important;
  }

  .header-container {
    padding: 0 20px !important;
    justify-content: space-between !important;
    position: relative !important;
    max-width: 100% !important;
    display: flex !important;
    align-items: center !important;
  }

  .logo {
    padding-left: 0 !important;
    flex-shrink: 0 !important;
  }

  .logo img {
    height: 60px !important;
    width: auto !important;
  }

  .header-notch {
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    top: 0 !important;
    transform: translateX(-50%) !important;
    width: 100px !important;
    height: 24px !important;
    background: #2f2f2f !important;
    border-radius: 0 0 12px 12px !important;
    z-index: 5 !important;
  }

  nav,
  .right-section {
    display: none !important;
  }

  /* Side Drawer */
  .side-drawer {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    right: -320px !important;
    width: 280px !important;
    height: 100% !important;
    background: #EBE0D0 !important;
    z-index: 10001 !important;
    flex-direction: column !important;
    padding: 30px 20px !important;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1) !important;
  }

  .side-drawer.open {
    right: 0 !important;
  }

  .drawer-overlay {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 10000 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
  }

  .drawer-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .drawer-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 40px !important;
  }

  .close-drawer {
    font-size: 32px !important;
    color: #2b2b2b !important;
  }

  .drawer-nav {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .drawer-nav a,
  .drawer-dropbtn {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #2b2b2b !important;
    text-decoration: none !important;
  }

  /* Section 2 Slider */
  .wow-container {
    flex-direction: column !important;
    gap: 30px !important;
  }

  .wow-accordion {
    display: none !important;
  }

  .wow-content {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    width: 100% !important;
    gap: 0 !important;
    padding-bottom: 30px !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .wow-content::-webkit-scrollbar {
    display: none !important;
  }

  .content-panel {
    display: block !important;
    flex: 0 0 100% !important;
    min-width: 100% !important;
    scroll-snap-align: start !important;
    box-sizing: border-box !important;
  }

  .revamped-panel {
    padding: 15px !important;
  }

  .mobile-panel-info {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    padding-bottom: 14px !important;
  }

  .category-icon-wrapper {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }

  .category-icon-wrapper i {
    font-size: 20px !important;
    color: var(--theme-text-dark, #1A1A1A) !important;
  }

  .category-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    text-align: left !important;
  }

  .category-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1A1A1A !important;
    line-height: 1.2 !important;
    margin: 0 !important;
  }

  .category-subtitle {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #666666 !important;
    line-height: 1.2 !important;
    margin: 0 !important;
  }

  /* General Stacking */
  .hero-section {
    /*padding: 100px 20px 40px !important;*/
    padding: 0px !important;
    min-height: auto !important;
    text-align: left !important;
  }

  .hero-heading {
    font-size: 38px !important;
    margin-bottom: 20px !important;
    text-align: left !important;
  }

  .hero-desc {
    font-size: 16px !important;
    margin: 0 0 24px 0 !important;
    text-align: left !important;
    max-width: 100% !important;
  }

  .hero-container {
    padding: 20px;
  }

  .process-card .steps {
    flex-direction: column !important;
    gap: 40px !important;
  }



  .stats-cards {
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
  }

  .destinations-top,
  .destinations-bottom {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .destinations-card.large {
    grid-column: span 1 !important;
    height: 250px !important;
  }

  /* Section 4 Movies Mobile */
  .movies-carousel-section {
    padding: 60px 20px !important;
  }

  .movies-heading {
    font-size: 36px !important;
  }

  .movies-heading .italic-serif {
    font-size: 40px !important;
  }

  .movie-slide {
    width: 280px !important;
  }

  .movie-poster {
    height: 157px !important;
    /* 280 * 9 / 16 */
    border-radius: 16px !important;
  }

  .movie-title {
    font-size: 18px !important;
  }

  .movie-slide.active {
    transform: translate3d(0, 0, 100px) scale(1.1) !important;
  }

  .movie-slide.prev {
    transform: translate3d(-180px, 0, 0) scale(0.85) rotateY(10deg) !important;
  }

  .movie-slide.next {
    transform: translate3d(180px, 0, 0) scale(0.85) rotateY(-10deg) !important;
  }

  .movie-slide.far-prev,
  .movie-slide.far-next {
    display: none !important;
  }

  .movie-nav-btn {
    width: 32px !important;
    height: 32px !important;
  }

  .movie-nav-btn.prev {
    left: 10px !important;
  }

  .movie-nav-btn.next {
    right: 10px !important;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 28px !important;
  }

  .stats-cards {
    grid-template-columns: 1fr !important;
  }
}


/* End of CSS */

/* ========================================
   SECTION 6 - SCRATCH CARD REWARDS
   ======================================== */
.scratch-card-section {
  background: #EBE0D0;
  padding: 68px 80px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.scratch-card-container {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.scratch-card-header {
  text-align: left;
}

.scratch-label {
  color: #FF7637;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.scratch-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0;
  line-height: 1.1;
}

.scratch-heading .italic-serif {
  font-family: 'Arsenica Trial', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
}

/* Scratch Carousel Container */
.scratch-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 650px;
  perspective: 2000px;
  padding: 0;
}

.scratch-track-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scratch-track {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scratch-slide {
  position: absolute;
  width: 320px;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.scratch-card {
  background: #FFFFFF;
  border: 1px solid #000000;
  border-radius: 20px;
  padding: 24px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  position: relative;
  height: 100%;
  transition: all 0.3s ease;
}

.scratch-card-image {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
}

.scratch-card-image img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.scratch-card-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 25px;
  text-align: left;
}

.scratch-card-info .product-title {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.2px;
  margin: 0;
}

.scratch-card-info .price-row {
  color: #181615;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.24px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 4px;
}

.scratch-card .current-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
}

.scratch-badge {
  background: #BE7C4D;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 4px;
  width: fit-content;
  text-transform: uppercase;
}

/* Carousel States for 5 items */
.scratch-slide.active {
  transform: translate3d(0, 0, 200px) scale(1.15);
  z-index: 10;
  opacity: 1;
}

.scratch-slide.prev {
  transform: translate3d(-340px, 0, 0) scale(0.9);
  z-index: 5;
  opacity: 0.7;
  filter: blur(1px);
}

.scratch-slide.next {
  transform: translate3d(340px, 0, 0) scale(0.9);
  z-index: 5;
  opacity: 0.7;
  filter: blur(1px);
}

.scratch-slide.far-prev {
  transform: translate3d(-616px, 0, -100px) scale(0.75);
  opacity: 0.4;
  z-index: 2;
  filter: blur(2px);
}

.scratch-slide.far-next {
  transform: translate3d(616px, 0, -100px) scale(0.75);
  opacity: 0.4;
  z-index: 2;
  filter: blur(2px);
}

.scratch-slide.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Navigation Buttons */
.scratch-nav-btn {
  position: absolute;
  top: 40%;
  background: #FF7637;
  color: #FFFFFF;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(255, 118, 55, 0.3);
}

.scratch-nav-btn:hover {
  background: #E65100;
}

.scratch-nav-btn.prev {
  left: 5px;
}

.scratch-nav-btn.next {
  right: 5px;
}

.scratch-cta {
  display: flex;
  justify-content: center;
}

.orange-pill-cta {
  display: inline-flex;
  padding: 18px 48px;
  background: #FF7637;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  border-radius: 100px;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 118, 55, 0.2);
}

.orange-pill-cta:hover {
  background: #E65100;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(255, 118, 55, 0.3);
}

@media (max-width: 768px) {
  .scratch-card-section {
    padding: 28px 0px;
  }

  .scratch-card-header {
    padding-left: 20px;
    margin-bottom: 40px;
  }

  .scratch-heading {
    font-size: 32px;
  }

  .scratch-heading .italic-serif {
    font-size: 36px;
  }

  .scratch-carousel-container {
    height: 480px;
    margin-top: 30px;
  }

  .scratch-slide {
    width: 260px;
  }

  .scratch-nav-btn {
    width: 40px;
    height: 40px;
  }

  .scratch-nav-btn.prev {
    left: 10px;
  }

  .scratch-nav-btn.next {
    right: 10px;
  }

  .scratch-slide.prev {
    transform: translate3d(-266px, 0, 0) scale(0.8);
  }

  .scratch-slide.next {
    transform: translate3d(266px, 0, 0) scale(0.8);
  }

  .scratch-slide.far-prev,
  .scratch-slide.far-next {
    display: none;
  }
}

/* ========================================
   SECTION 7 - FREE PRODUCT
   ======================================== */
.free-product-section {
  background-color: #E67E22;
  padding: 68px 80px;
  text-align: center;
  position: relative;
}

.free-product-container {
  margin: 0 auto;
}

.free-product-header {
  margin-bottom: 60px;
  text-align: left;
}

.free-product-label {
  color: #692100;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.16px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.free-product-heading {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 56px;
  letter-spacing: -0.528px;
  margin: 0 0 64px 0;
}

.free-product-heading .italic-serif {
  color: #000;
  font-family: 'Arsenica Trial';
  font-size: 56px;
  font-style: italic;
  font-weight: 500;
  line-height: 62px;
  letter-spacing: -0.616px;
}

.free-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.free-product-card {
  text-align: left;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.free-product-card:hover {
  transform: translateY(-5px);
}

.free-product-image {
  background-color: #F5F5F5;
  border-radius: 20px;
  overflow: hidden;
  height: auto;
  aspect-ratio: 1 / 1;
  margin-bottom: 24px;
  border: 1px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.free-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.free-product-info .product-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 12px 0;
}

.free-product-info .rating-badge {
  display: inline-flex;
  align-items: center;
  background-color: #2D8A4E;
  color: white;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

.free-product-info .price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.free-product-info .old-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1A1A1A;
  text-decoration: line-through;
}

.free-product-info .free-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
}

.free-product-cta {
  display: flex;
  justify-content: center;
}

.free-product-section .white-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 48px;
  background-color: #EBE0D0;
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.free-product-section .white-pill-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  background-color: #FFFFFF;
}

.free-product-section .white-pill-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.free-product-carousel-container {
  position: relative;
  width: 100%;
}

.free-product-nav-btn {
  display: none;
}

/* Mobile and Tablet Responsiveness */
@media (max-width: 1024px) {
  .wow-container {
    gap: 32px !important;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   TABLET - All Sections
   (769px - 1024px) iPad / Tablet
   ======================================== */
@media (min-width: 769px) and (max-width: 1024px) {

  /* ---- HEADER ---- */
  header {
    height: 68px !important;
  }

  .header-container {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }

  .logo img {
    height: 60px !important;
    width: auto !important;
    margin-right: 24px !important;
  }

  nav {
    gap: 16px !important;
  }

  nav a {
    font-size: 13px !important;
  }

  .buy-now-btn,
  .right-section .cta-btn {
    padding: 10px 18px !important;
    font-size: 13px !important;
  }

  /* ---- HERO SECTION ---- */
  .hero-section {
    height: auto !important;
    min-height: 520px !important;
  }

  .hero-container {
    padding: 0 40px !important;
  }

  .hero-heading {
    font-size: 44px !important;
    line-height: 1.1 !important;
    margin-bottom: 16px !important;
  }

  .hero-desc {
    font-size: 16px !important;
    margin-bottom: 28px !important;
  }

  .hero-cta-wrapper {
    margin-bottom: 48px !important;
  }

  .cta-btn a {
    font-size: 15px !important;
  }

  /* ---- SECTION 2 - WOW (Horizontal Tabs on Tablet) ---- */
  .wow-section {
    padding: 48px 24px !important;
  }

  .wow-header {
    margin-bottom: 24px !important;
  }

  .wow-heading {
    font-size: 28px !important;
    line-height: 34px !important;
    margin-bottom: 0 !important;
  }

  .wow-heading span {
    font-size: 36px !important;
  }

  .wow-subheading {
    font-size: 12px !important;
  }

  /* Container stacks vertically — tabs on top, content below */
  .wow-container {
    flex-direction: column !important;
    gap: 20px !important;
  }

  /* Accordion becomes horizontal scrollable tab bar */
  .wow-accordion {
    width: 100% !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 8px !important;
    padding: 4px 0 6px !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .wow-accordion::-webkit-scrollbar {
    display: none !important;
  }

  /* Hide the OR separator in horizontal layout */
  .or {
    display: none !important;
  }

  .wow-item {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: fit-content !important;
    padding: 10px 20px !important;
    font-size: 13px !important;
    min-height: 40px !important;
    border-radius: 8px !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
    box-shadow: inset 0 0 0 1px rgba(26, 26, 26, 0.15) !important;
  }

  /* Content takes full width */
  .wow-content {
    width: 100% !important;
    flex: 1 !important;
  }

  .content-panel {
    display: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .content-panel.active {
    display: block !important;
    width: 100% !important;
  }

  .revamped-panel {
    min-height: auto !important;
    padding: 20px !important;
    border-radius: 16px !important;
  }

  .revamped-banner {
    min-height: 110px !important;
    padding: 16px 18px !important;
  }

  .revamped-banner h3 {
    font-size: 22px !important;
    line-height: 28px !important;
    margin-bottom: 12px !important;
  }

  .revamped-banner .tag {
    font-size: 11px !important;
    padding: 7px 14px !important;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
  }

  .feature-card {
    padding: 12px 8px !important;
  }

  .feature-card .feature-value {
    font-size: 14px !important;
  }

  .feature-card .feature-label {
    font-size: 11px !important;
  }

  .asset-grid {
    gap: 10px !important;
  }

  .asset-grid-btn {
    font-size: 13px !important;
    height: 44px !important;
    width: min(200px, 90%) !important;
  }

  /* ---- SECTION 3 - PROCESS ---- */
  .section3.process {
    padding: 48px 40px !important;
  }

  .process .heading {
    font-size: 32px !important;
    margin-bottom: 36px !important;
  }

  .process .heading span {
    font-size: 42px !important;
  }

  .process .subheading {
    font-size: 13px !important;
  }

  .steps {
    gap: 24px !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
  }

  .step {
    max-width: 200px !important;
  }

  .step h3 {
    font-size: 18px !important;
  }

  .step .desc {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }

  .step-connector {
    width: 40px !important;
    margin-top: 80px !important;
  }

  .process-icons {
    font-size: 32px !important;
  }

  .process-icons svg {
    width: 40px !important;
    height: 40px !important;
  }

  /* ---- SECTION 4 - MOVIES CAROUSEL ---- */
  .section4.movies-carousel-section {
    padding: 48px 40px !important;
  }

  .movies-heading {
    font-size: 44px !important;
  }

  .movies-heading .italic-serif {
    font-size: 48px !important;
  }

  .movies-subheading {
    font-size: 13px !important;
  }

  .movie-carousel {
    height: 380px !important;
    perspective: 1400px !important;
  }

  .movie-slide {
    width: 280px !important;
  }

  .movie-nav-btn {
    width: 36px !important;
    height: 36px !important;
  }

  .movie-nav-btn.prev {
    left: 20px !important;
  }

  .movie-nav-btn.next {
    right: 20px !important;
  }

  .movies-cta {
    margin-top: 32px !important;
  }

  /* ---- SECTION 5 - SHOP POINTS ---- */
  .section5.shop-points-section {
    padding: 48px 40px !important;
  }

  .shop-points-heading {
    font-size: 34px !important;
    line-height: 1.15 !important;
  }

  .shop-points-subheading {
    font-size: 20px !important;
  }

  .shop-points-label {
    font-size: 13px !important;
  }

  .shop-carousel-container {
    height: 420px !important;
  }

  .shop-nav-btn {
    width: 36px !important;
    height: 36px !important;
  }

  /* ---- SECTION 6 - SCRATCH CARD ---- */
  .section6.scratch-card-section {
    padding: 48px 40px !important;
  }

  .scratch-heading {
    font-size: 36px !important;
  }

  .scratch-heading .italic-serif {
    font-size: 40px !important;
  }

  .scratch-label {
    font-size: 13px !important;
  }

  .scratch-carousel-container {
    height: 460px !important;
  }

  .scratch-nav-btn {
    width: 36px !important;
    height: 36px !important;
  }

  /* ---- SECTION 7 - FREE PRODUCT ---- */
  .section7.free-product-section {
    padding: 48px 40px !important;
  }

  .free-product-heading {
    font-size: 36px !important;
    margin-bottom: 40px !important;
  }

  .free-product-heading .italic-serif {
    font-size: 42px !important;
  }

  .free-product-label {
    font-size: 13px !important;
  }

  .free-product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 40px !important;
  }

  /* ---- SECTION 8 - DESTINATIONS ---- */
  .section8.destinations {
    padding: 48px 40px !important;
  }

  .destinations-subheading {
    font-size: 13px !important;
  }

  .destinations-heading {
    font-size: 32px !important;
    line-height: 1.2 !important;
  }

  .destinations-heading span {
    font-size: 42px !important;
  }

  .destinations-cta {
    margin-top: 32px !important;
  }

  /* ---- SECTION 9 - REVIEWS ---- */
  .section9.reviews {
    padding: 48px 40px !important;
  }

  .reviews-heading-main {
    font-size: 32px !important;
  }

  .reviews-heading-secondary {
    font-size: 36px !important;
  }

  .reviews-subheading {
    font-size: 13px !important;
  }

  .stats-cards {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .stat-card {
    height: 110px !important;
    border-radius: 20px !important;
  }

  .stat-number {
    font-size: 28px !important;
  }

  .stat-label {
    font-size: 11px !important;
  }

  .review-card {
    flex: 0 0 calc(50% - 16px) !important;
    min-height: auto !important;
    padding: 20px !important;
  }

  /* ---- SECTION 10 - FAQ ---- */
  .section10.faq-section {
    padding: 48px 40px !important;
  }

  .faq-section .main-heading {
    font-size: 36px !important;
  }

  .faq-section .sub-heading {
    font-size: 13px !important;
  }
}

@media (max-width: 768px) {

  /* Global Adjustments */
  .section2.wow-section,
  .section3.process,
  .section4.movies-carousel-section,
  .section5.shop-points-section,
  .section8.destinations,
  .section9.reviews {
    padding: 54px 32px 60px 32px !important;
  }

  /* Section 10 - FAQ Mobile */
  .section10.faq-section {
    padding: 80px 0 !important;
  }

  .faq-container {
    padding: 0 20px !important;
  }

  .faq-section .sub-heading {
    font-size: 14px !important;
    color: #FF7A00 !important;
    margin-bottom: 12px !important;
  }

  .faq-section .main-heading {
    font-size: 32px !important;
    color: #000000 !important;
    margin-bottom: 40px !important;
  }

  .faq-list {
    gap: 16px !important;
  }

  .faq-item {
    border-radius: 40px !important;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05) !important;
  }

  .faq-question {
    padding: 16px 20px !important;
    font-size: 16px !important;
    color: #000000 !important;
  }

  .faq-answer {
    padding: 0 20px !important;
  }

  .faq-item.active .faq-answer {
    padding-bottom: 20px !important;
  }

  .faq-answer p {
    font-size: 14px !important;
    color: #333333 !important;
    margin-top: 12px !important;
  }


  /* Header Mobile Force */
  header {
    height: 48px !important;
    border-radius: 0 0 12px 12px !important;
    margin-bottom: 0 !important;
    position: relative !important;
    top: auto !important;
    z-index: 9999 !important;
  }

  .buy-now-btn {
    display: none !important;
  }

  .header-container {
    padding: 0 20px !important;
    justify-content: space-between !important;
    position: relative !important;
    max-width: 100% !important;
    display: flex !important;
    align-items: center !important;
  }

  .logo {
    padding-left: 0 !important;
    flex-shrink: 0 !important;
  }

  .header-notch {
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    top: 0 !important;
    transform: translateX(-50%) !important;
    width: 100px !important;
    height: 24px !important;
    background: #2f2f2f !important;
    border-radius: 0 0 12px 12px !important;
    z-index: 5 !important;
  }

  nav,
  .right-section,
  #nav {
    display: none !important;
  }

  #menuToggle {
    display: flex !important;
    align-items: center !important;
    color: #000000 !important;
    font-size: 24px !important;
    cursor: pointer !important;
    z-index: 10 !important;
    width: 48px !important;
    height: 48px !important;
    margin-right: 0 !important;
    /* Remove negative margin to prevent going off-screen */
  }

  /* Side Drawer Force */
  #sideDrawer {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    right: -320px !important;
    width: 280px !important;
    height: 100% !important;
    background: #EBE0D0 !important;
    z-index: 10001 !important;
    flex-direction: column !important;
    padding: 30px 20px !important;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1) !important;
  }

  #sideDrawer.open {
    right: 0 !important;
  }

  #drawerOverlay {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 10000 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
  }

  #drawerOverlay.active {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .drawer-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 40px !important;
  }

  .drawer-header .logo img {
    display: none;
  }

  .close-drawer {
    font-size: 32px !important;
    color: #2b2b2b !important;
    cursor: pointer !important;
  }

  .drawer-nav {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .drawer-nav a,
  .drawer-dropbtn {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #2b2b2b !important;
    text-decoration: none !important;
    font-family: 'Montserrat', sans-serif !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: pointer !important;
  }

  .drawer-dropdown-content {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0 0 20px;
  }

  .drawer-dropdown.active .drawer-dropdown-content {
    display: flex;
  }

  .drawer-dropdown.active .drawer-dropbtn i {
    transform: rotate(180deg);
  }

  .drawer-footer {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: auto;
  }

  .drawer-socials {
    display: flex;
    gap: 20px;
    font-size: 24px;
    color: #2b2b2b;
  }

  .drawer-cta {
    width: 100%;
    padding: 14px;
    background: #E0703C;
    color: #fff;
    border: none;
    border-radius: 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-top: 30px;
  }

  /* Section 2 Slider Design Update */
  .section2.wow-section {
    padding: 48px 20px !important;
    background: #E8D5C4 !important;
  }

  .wow-header {
    margin-bottom: 24px !important;
    text-align: center !important;
  }

  .wow-subheading {
    font-size: 12px !important;
    margin-bottom: 8px !important;
  }

  .wow-heading {
    font-size: 26px !important;
    line-height: 32px !important;
    margin-bottom: 0 !important;
    letter-spacing: -0.3px !important;
  }

  .wow-heading span {
    font-size: 34px !important;
    line-height: 32px !important;
  }

  .wow-container {
    flex-direction: column !important;
    gap: 30px !important;
  }

  .wow-accordion {
    display: none !important;
  }

  .wow-content {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    width: 100% !important;
    gap: 16px !important;
    padding: 0 0 10px 0 !important;
    align-items: stretch !important;
    /* For equal height */
    -webkit-overflow-scrolling: touch !important;
  }

  .wow-content::-webkit-scrollbar {
    display: none !important;
  }

  .content-panel {
    display: flex !important;
    flex: 0 0 calc(100% - 36px) !important;
    min-width: calc(100% - 36px) !important;
    scroll-snap-align: start !important;
    box-sizing: border-box !important;
    height: auto !important;
  }

  .revamped-panel {
    background: #FFFFFF !important;
    border: 1px solid rgba(0, 0, 0, 0.10) !important;
    border-radius: 24px !important;
    padding: 20px 18px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    gap: 16px !important;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.07) !important;
    margin: 0 !important;
  }

  /* Keep theme panel backgrounds white on mobile */
  .revamped-panel.theme-yellow,
  .revamped-panel.theme-movies,
  .revamped-panel.theme-insurance,
  .revamped-panel.theme-shopping,
  .revamped-panel.theme-scratch,
  .revamped-panel.theme-product {
    background: #FFFFFF !important;
  }

  .revamped-banner {
    padding: 18px !important;
    min-height: auto !important;
    border-radius: 16px !important;
  }

  .revamped-banner h3 {
    font-size: 20px !important;
    line-height: 26px !important;
    margin-bottom: 12px !important;
    color: #121212 !important;
    min-height: auto !important;
  }

  .theme-shopping .revamped-banner h3,
  .theme-scratch .revamped-banner h3,
  .theme-product .revamped-banner h3 {
    color: #FFFFFF !important;
  }

  .revamped-banner .tags {
    gap: 8px !important;
  }

  .revamped-banner .tag {
    font-size: 11px !important;
    padding: 6px 12px !important;
  }

  .feature-grid {
    gap: 8px !important;
  }

  .feature-card {
    padding: 10px 6px !important;
    min-height: auto !important;
  }

  .feature-card i {
    font-size: 18px !important;
  }

  .feature-card .feature-value {
    font-size: 14px !important;
  }

  .feature-card .feature-label {
    font-size: 10px !important;
  }

  .asset-grid {
    display: none !important;
  }

  /* Explore Button Style */
  .explore-btn {
    width: 100% !important;
    padding: 14px !important;
    background: #E46927 !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 50px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    cursor: pointer !important;
    margin-top: 4px !important;
  }

  /* Pagination Style */
  .wow-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
  }

  .wow-dot {
    width: 8px;
    height: 8px;
    background: #D9D9D9;
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .wow-dot.active {
    background: #E46927;
    width: 24px;
    border-radius: 4px;
  }

  .wow-index {
    margin-left: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #4B4B4B;
  }

  /* New Hero Slider Mobile Styles */
  .hero-section {
    height: auto !important;
    min-height: auto !important;
    padding: 0 !important;
    margin-top: -10px;
  }

  .hero-slider {
    height: auto !important;
  }

  .hero-track {
    height: auto !important;
  }

  .hero-slide {
    height: auto !important;
    min-height: auto !important;
    align-items: flex-start !important;
  }

  .hero-main-container {
    flex-direction: column !important;
    gap: 40px !important;
    text-align: center !important;
  }

  .hero-content {
    max-width: 100% !important;
    text-align: center !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .hero-subheading {
    font-size: 11px !important;
    margin-bottom: 12px !important;
  }

  .hero-heading {
    font-size: 42px !important;
    line-height: 1.1 !important;
    margin-bottom: 16px !important;
  }

  .hero-desc {
    font-size: 16px !important;
    line-height: 1.5 !important;
    margin: 0 auto 32px auto !important;
    max-width: 100% !important;
    opacity: 0.9 !important;
    min-height: 155px;
  }

  .hero-cta-wrapper {
    align-items: center !important;
  }

  .cta-btn {
    width: 100% !important;
  }

  .hero-arrow {
    display: none !important;
    /* Hide arrows on small mobile to avoid clutter */
  }

  .hero-pagination {
    bottom: 20px !important;
  }

  .process-card .steps {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .step-connector {
    width: 2px !important;
    height: 40px !important;
    background: transparent !important;
    border-left: 2px dashed #D9D9D9 !important;
    align-self: center !important;
    margin-top: 0 !important;
    flex-shrink: 0 !important;
    position: relative !important;
  }

  .step-connector::before,
  .step-connector::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: auto !important;
  }

  .step-connector::before {
    top: -4px !important;
  }

  .step-connector::after {
    bottom: -4px !important;
  }

  .stats-cards {
    gap: 12px !important;
    overflow: visible !important;
    position: relative !important;
    justify-content: center !important;
    transition: all 0.5s ease;
  }

  /* Section 9 Reviews Header & Typography Mobile */
  .reviews-header {
    margin-bottom: 32px !important;
  }

  .reviews-subheading {
    font-size: 14px !important;
    color: #333333 !important;
    margin-bottom: 24px !important;
    letter-spacing: 0.16px !important;
  }

  .reviews-heading-main,
  .reviews-heading-secondary {
    font-size: 48px !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
  }

  .stat-number {
    font-size: 32px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }

  .stat-label {
    font-size: 12px !important;
    line-height: 1.2 !important;
  }

  .stat-card {
    flex: 0 0 calc(50% - 6px) !important;
    width: auto !important;
    max-width: none !important;
    height: 100px !important;
    padding: 12px !important;
    border-radius: 20px !important;
    transition: opacity 0.8s ease, visibility 0.8s, transform 0.8s ease !important;
  }

  .review-card {
    flex: 0 0 100% !important;
    padding: 24px !important;
    border-radius: 24px !important;
    min-height: 220px !important;
  }

  .review-text {
    font-size: 14px !important;
    line-height: 1.4 !important;
    padding-bottom: 20px !important;
  }

  .review-author {
    font-size: 12px !important;
    line-height: 1.2 !important;
    padding-bottom: 12px !important;
  }

  .review-stars i {
    font-size: 18px !important;
  }

  .reviews-wrapper {
    gap: 0 !important;
  }

  .stat-card.fade-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    position: absolute !important;
    pointer-events: none !important;
    transform: scale(0.95);
  }

  .stat-card.fade-visible {
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    pointer-events: auto !important;
    transform: scale(1);
  }

  /* Section 5 - Shop & Points Mobile */
  .section5.shop-points-section {
    padding: 60px 16px !important;
    background: #E88C5D !important;
  }

  .shop-points-header {
    text-align: left !important;
    margin-bottom: 32px !important;
  }

  .shop-points-label {
    font-size: 11px !important;
    margin-bottom: 8px !important;
    letter-spacing: 0.15em !important;
  }

  .shop-points-heading {
    font-size: 26px !important;
    line-height: 1.1 !important;
  }

  .shop-points-subheading {
    font-size: 30px !important;
    margin-top: 4px !important;
  }

  .shop-carousel-container {
    height: 440px !important;
    padding: 0 !important;
    perspective: 1200px !important;
    margin-top: 32px !important;
  }

  .shop-slide {
    width: 240px !important;
  }

  .shop-card {
    padding: 20px !important;
    border-radius: 16px !important;
  }

  .shop-card-image {
    height: 140px !important;
    margin-bottom: 16px !important;
  }

  .shop-card .product-title {
    font-size: 16px !important;
  }

  .shop-rating-badge {
    font-size: 10px !important;
    padding: 3px 6px !important;
  }

  .shop-card .current-price {
    font-size: 18px !important;
  }


  .shop-slide.prev {
    transform: translate3d(-180px, 0, -50px) scale(0.85) !important;
  }

  .shop-slide.next {
    transform: translate3d(180px, 0, -50px) scale(0.85) !important;
  }

  .shop-slide.far-prev {
    transform: translate3d(-340px, 0, -100px) scale(0.7) !important;
    opacity: 0.2 !important;
  }

  .shop-slide.far-next {
    transform: translate3d(340px, 0, -100px) scale(0.7) !important;
    opacity: 0.2 !important;
  }

  .shop-nav-btn {
    width: 50px !important;
    height: 40px !important;
    font-size: 10px !important;
  }

  .shop-nav-btn.prev {
    left: 4px !important;
  }

  .shop-nav-btn.next {
    right: 4px !important;
  }

  .white-pill-btn {
    width: 100% !important;
    padding: 14px 20px !important;
    font-size: 14px !important;
  }

  /* Section 8 Redesign (previously section 5 in CSS) */
  .section8.destinations {
    text-align: center;
    padding: 60px 16px !important;
    background: #F2E8D9 !important;
  }

  .destinations-subheading {
    text-align: center;
    margin: 0 auto 12px auto !important;
  }

  .destinations-heading {
    font-size: 24px !important;
    line-height: 32px !important;
    text-align: center;
    margin-bottom: 8px !important;
  }

  .destinations-heading span {
    font-size: 32px !important;
    line-height: 36px !important;
  }

  .destinations .description {
    text-align: center;
    font-size: 14px !important;
    margin-bottom: 32px !important;
  }

  .destinations-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
  }

  .destinations-slider {
    display: flex !important;
    overflow-x: auto !important;
    gap: 16px !important;
    scroll-snap-type: x mandatory !important;
    padding: 0 0 20px 0 !important;
    margin: 0 -16px !important;
    padding-left: 16px !important;
    -webkit-overflow-scrolling: touch;
  }

  .destinations-slider::-webkit-scrollbar {
    display: none !important;
  }

  .destinations-card {
    width: 100% !important;
    height: 180px !important;
    border-radius: 20px !important;
    flex-shrink: 0 !important;
    position: relative;
    overflow: hidden;
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .destinations-slider .destinations-card {
    flex: 0 0 85% !important;
    width: 85% !important;
    scroll-snap-align: start !important;
  }

  .destinations-scroller {
    display: block !important;
    overflow: visible !important;
  }

  .state-tag {
    display: none !important;
  }

  .destinations-overlay h3 {
    font-size: 18px !important;
  }

  .destinations-overlay p {
    font-size: 12px !important;
  }

  /* Footer Mobile Redesign */
  .footer {
    padding: 50px 16px 32px !important;
  }

  .footer-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
    align-items: start !important;
  }

  .footer-left {
    text-align: left !important;
    grid-row: 1 !important;
    grid-column: 1 !important;
  }

  .footer-left h2 {
    font-size: 14px !important;
    line-height: 1.2 !important;
    margin-bottom: 2px !important;
    color: #FFFFFF !important;
    font-weight: 500 !important;
  }

  .footer-left h2 span {
    font-size: 32px !important;
    line-height: 1 !important;
    display: block !important;
    margin-top: 2px !important;
    color: #EFB627 !important;
    font-weight: 700 !important;
  }

  .footer-tagline {
    font-size: 16px !important;
    line-height: 1.2 !important;
    margin: 8px 0 15px 0 !important;
    color: #FFFFFF !important;
    font-family: 'Quincy', serif !important;
    font-style: italic !important;
  }

  .social-icons {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    justify-content: flex-start !important;
    gap: 12px !important;
  }

  .footer-icons svg {
    width: 18px !important;
    height: 18px !important;
  }

  .footer-right-col {
    display: contents !important;
  }

  .footer-subscribe {
    margin-top: 5px !important;
    text-align: left !important;
    grid-row: 1 !important;
    grid-column: 2 !important;
  }

  .footer-subscribe h4 {
    color: #FFFFFF !important;
    font-size: 9px !important;
    margin-bottom: 4px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
  }

  .footer-subscribe p {
    font-size: 11px !important;
    margin-bottom: 10px !important;
    color: #FFFFFF !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
  }

  .subscribe-form button {
    width: 100% !important;
    font-size: 14px !important;
    padding: 10px 15px !important;
    background: #FF7637 !important;
    color: white !important;
    border-radius: 50px !important;
    border: none !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important;
  }

  .footer-subscribe small {
    font-size: 8px !important;
    opacity: 0.6;
    display: block;
    margin-top: 4px;
  }

  .footer-contact-details {
    margin-top: 25px !important;
    grid-row: 3 !important;
    grid-column: 1 / 3 !important;
  }

  .footer-address,
  .footer-email,
  .footer-mobile {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
    color: #FFFFFF !important;
    opacity: 0.8 !important;
    margin-bottom: 15px !important;
  }

  .footer-address strong,
  .footer-email strong,
  .footer-mobile strong {
    font-weight: 700 !important;
    display: block !important;
    margin-bottom: 2px !important;
  }

  /* Links Grid */
  .footer-links {
    grid-row: 2 !important;
    grid-column: 1 / 3 !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
    margin-top: 15px !important;
  }

  .footer-links-col1,
  .footer-links-col2,
  .footer-links-col3 {
    width: 100% !important;
  }

  .footer-links h4 {
    color: #FFFFFF !important;
    margin-bottom: 10px !important;
    font-size: 9px !important;
    text-transform: uppercase;
    opacity: 0.5;
    letter-spacing: 0.5px;
  }

  .footer-links li {
    font-size: 11px !important;
    margin-bottom: 6px !important;
    white-space: nowrap;
  }

  /* Divider & Bottom Section */
  .footer-divider {
    height: 1px !important;
    background: rgba(235, 224, 208, 0.2) !important;
    margin: 40px 0 !important;
    width: 100% !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 24px !important;
    text-align: center !important;
    margin-top: 0 !important;
    border-top: none !important;
    padding-top: 0 !important;
  }

  .footer-bottom p {
    font-size: 12px !important;
    color: #FFFFFF !important;
    opacity: 0.6 !important;
    order: 2 !important;
  }

  .bottom-links {
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
    order: 1 !important;
    flex-wrap: wrap !important;
  }

  .bottom-links a,
  .bottom-links span {
    font-size: 12px !important;
    color: #FFFFFF !important;
    opacity: 0.8 !important;
    text-decoration: none !important;
  }

  /* Section 4 - Movie Carousel Mobile */
  .section4.movies-carousel-section {
    padding: 60px 24px !important;
    background: #FDF9F0 !important;
  }

  .movies-header {
    margin-bottom: 40px !important;
    text-align: left !important;
  }

  .movies-subheading {
    font-size: 14px !important;
    color: #FF7A00 !important;
    margin-bottom: 12px !important;
    font-weight: 700 !important;
    text-align: left !important;
  }

  .movies-heading {
    font-size: 36px !important;
    line-height: 1.1 !important;
    color: #1A1A1A !important;
    font-weight: 700 !important;
    text-align: left !important;
  }

  .movie-carousel {
    height: 250px !important;
    padding: 0 !important;
    perspective: 1200px !important;
    margin-top: 20px !important;
  }

  .movie-slide {
    width: 260px !important;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .movie-poster {
    height: 146px !important;
    border-radius: 20px !important;
    margin-bottom: 16px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
  }

  .movie-info {
    opacity: 0 !important;
    transform: translateY(10px) !important;
    transition: all 0.4s ease !important;
    padding-left: 0 !important;
  }

  .movie-slide.active .movie-info {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .movie-title {
    font-size: 20px !important;
    margin-bottom: 6px !important;
    font-weight: 600 !important;
    color: #1A1A1A !important;
  }

  .movie-meta-row {
    gap: 8px !important;
  }

  .movie-badge {
    padding: 3px 8px !important;
    font-size: 10px !important;
    border-radius: 4px !important;
  }

  .movie-meta {
    font-size: 12px !important;
  }

  .movie-slide.active {
    transform: translate3d(0, 0, 150px) scale(1.1) !important;
    z-index: 10 !important;
  }

  .movie-slide.prev {
    transform: translate3d(-140px, 0, -100px) scale(0.9) !important;
    opacity: 0.6 !important;
    filter: blur(1px) !important;
  }

  .movie-slide.next {
    transform: translate3d(140px, 0, -100px) scale(0.9) !important;
    opacity: 0.6 !important;
    filter: blur(1px) !important;
  }

  .movie-nav-btn {
    width: 50px !important;
    height: 40px !important;
    background: #FF7A00 !important;
    color: #FFFFFF !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3) !important;
    z-index: 20 !important;
    border: none !important;
    transform: translateY(-50%) !important;
    top: 35% !important;
    /* Positioned near poster height */
  }

  .movie-nav-btn.prev {
    left: 10px !important;
  }

  .movie-nav-btn.next {
    right: 10px !important;
  }

  .movies-cta {
    margin: 40px 0 0 0;
  }

  .orange-pill-btn {
    width: 100% !important;
    font-size: 16px !important;
    padding: 18px 24px !important;
    justify-content: center !important;
    border-radius: 50px !important;
    display: flex !important;
    align-items: center !important;
    background: #FF7A00 !important;
    color: white !important;
    text-decoration: none !important;
    font-weight: 600 !important;
  }


  /* Section 7 - Free Product Mobile Carousel */
  .section7.free-product-section {
    padding: 60px 0 !important;
    background-color: #D88C5E !important;
    overflow: hidden;
  }

  .free-product-container {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .free-product-header {
    text-align: left !important;
    margin-bottom: 24px !important;
    padding: 0 24px !important;
  }

  .free-product-label {
    font-size: 14px !important;
    color: #000000 !important;
    margin-bottom: 8px !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
  }

  .free-product-heading {
    font-size: 36px !important;
    line-height: 1.1 !important;
    margin-bottom: 12px !important;
  }

  .free-product-heading .italic-serif {
    font-size: 40px !important;
    font-family: 'Arsenica Trial', serif !important;
  }

  .free-product-carousel-container {
    padding: 0 !important;
    position: relative;
    width: 100%;
  }

  .free-product-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 16px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
    margin-bottom: 40px !important;
    padding: 10px 10% 20px 10% !important;
    /* Significant horizontal padding for centering */
  }

  .free-product-grid::-webkit-scrollbar {
    display: none !important;
  }

  .free-product-card {
    flex: 0 0 80% !important;
    /* Smaller width for peeking cards */
    scroll-snap-align: center !important;
    /* Centering the card */
    background: #F5F5F5 !important;
    border-radius: 20px !important;
    padding: 16px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1) !important;
    cursor: pointer !important;
  }

  .free-product-image {
    height: 240px !important;
    background: transparent !important;
    border: none !important;
    margin-bottom: 16px !important;
    box-shadow: none !important;
  }

  .free-product-image img {
    border-radius: 12px !important;
  }

  .free-product-info {
    text-align: left !important;
  }

  .free-product-info .product-title {
    font-size: 18px !important;
    margin-bottom: 8px !important;
  }

  .free-product-info .rating-badge {
    background-color: #2D8A4E !important;
    border-radius: 50px !important;
    padding: 4px 12px !important;
    font-size: 12px !important;
    margin-bottom: 12px !important;
  }

  .free-product-info .price-row {
    font-size: 20px !important;
  }

  /* Navigation Buttons */
  .free-product-nav-btn {
    display: flex !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 40px !important;
    height: 40px !important;
    background-color: #C74B16 !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 10 !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
  }

  .free-product-nav-btn.prev {
    left: 10px !important;
  }

  .free-product-nav-btn.next {
    right: 10px !important;
  }

  .free-product-cta .white-pill-btn {
    width: calc(100% - 48px) !important;
    margin: 0 24px !important;
    box-sizing: border-box !important;
    justify-content: center !important;
    text-align: center !important;
  }
}


@media (max-width: 480px) {
  .hero-heading {
    font-size: 34px !important;
  }
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .hide-desktop {
    display: none !important;
  }
}