* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}

/* Updated base fonts and color variables to match design specs */
body {
  font-family: "Raleway", sans-serif;
}

.hero-title,
.section-title,
.section-title-white,
.section-title-red {
  font-family: "Winky Rough", sans-serif;
}

:root {
  --green: #03a550;
  --yellow: #eddb13;
  --red: #eb2127;
  --blue: #29abe2;
  /* --pink: #bd3257; */
  --pink: var(--red);
  --dark-gray: #4a4a4a;
  --light-gray: #f5f5f5;
}

body {
  font-family: "Raleway", sans-serif;
  overflow-x: hidden;
}

/* Header */
.header {
  background: white;
  padding: 15px 0;
  /* Removed excessive shadow */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 100;
}

.logo {
  height: 75px;
}

.nav-link-register {
  color: var(--dark-gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
}

.nav-link-register:hover {
  color: var(--green);
}

.nav-item {
  margin-right: 20px;
}

.nav-item:hover {
  background: var(--light-gray);
  border-radius: 8px;
}

.nav-link:hover {
  font-weight: 800;
  color: var(--green);
}

/* Simplified button shadows to match design */
.btn-login {
  background: var(--yellow);
  color: var(--dark-gray);
  border: none;
  padding: 12px 35px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: capitalize;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.5);
  position: relative;
}

.btn-login:hover {
  transform: translateY(2px);
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.btn-login:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
}

.hamburger-menu {
  background: var(--yellow);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.5);
}

.hamburger-menu span {
  width: 22px;
  height: 3px;
  background: var(--dark-gray);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger-menu:hover {
  transform: translateY(2px);
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

/* Simplified hero button shadow */
.btn-hero {
  background: var(--yellow);
  color: var(--dark-gray);
  border: none;
  padding: 15px 45px;
  border-radius: 30px;
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.btn-hero.buy-now {
  padding: 5px 20px;
  font-size: 16px;
}

.btn-hero:hover {
  transform: translateY(3px);
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.btn-hero:active {
  transform: translateY(5px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
}

/* Simplified download button shadow */
.btn-download {
  background: var(--red);
  color: white;
  border: none;
  padding: 14px 40px;
  border-radius: 28px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: capitalize;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
  margin-top: 30px;
}

.btn-download:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-download:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
}

/* Simplified Buy Now button shadow */
.btn-buy-now {
  background: white;
  color: var(--dark-gray);
  border: none;
  padding: 8px 20px;
  border-radius: 18px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: capitalize;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-buy-now:hover {
  transform: translateY(1px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-buy-now:active {
  transform: translateY(2px);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

/* Simplified Know More button shadow */
.btn-know-more {
  background: white;
  color: var(--dark-gray);
  border: none;
  padding: 12px 45px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: capitalize;
  /* box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15); */
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.5);
  display: block;
  margin: 50px auto 0;
}

.btn-know-more:hover {
  transform: translateY(2px);
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.btn-know-more:active {
  transform: translateY(3px);
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

/* Primary Button Styles */
.btn-primary-yellow {
  background: var(--yellow);
  color: var(--dark-gray);
  border: none;
  padding: 12px 35px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: capitalize;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary-red {
  background: var(--red);
  color: white;
  border: none;
  padding: 12px 35px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: capitalize;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Simplified secondary button shadow */
.btn-secondary-white {
  background: white;
  color: var(--dark-gray);
  border: none;
  padding: 10px 25px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: capitalize;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-secondary-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  background: #f8f9fa;
}

.btn-shadow {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.btn-shadow:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-load-more {
  display: block;
  margin: 0 auto;
  padding: 12px 40px;
  font-size: 15px;
}

.user-icon {
  color: var(--dark-gray);
  font-size: 20px;
}

/* Hero Section */
/* Adjusted padding for better spacing */
.hero-section {
  background: var(--blue);
  padding: 60px 0 50px;
  position: relative;
  overflow: visible;
  padding-bottom: 250px;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 27rem;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--pink);
  clip-path: polygon(0 71%, 96% 69%, 47% 58%, 0 89%);
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 1300px) {
  .hero-section::after {
    clip-path: polygon(0 71%, 100% 67%, 40% 56%, 0 89%);
  }
}

@media (max-width: 992px) {
  .hero-section::after {
    clip-path: polygon(0 71%, 150% 61%, 50% 48%, 0 58%);
  }
}

@media (max-width: 768px) {
  .hero-section::after {
    clip-path: polygon(0 71%, 175% 61%, 50% 39%, 0 54%);
  }
}

@media (max-width: 576px) {
  .hero-section::after {
    clip-path: polygon(0 71%, 224% 61%, 50% 32%, 0 45%);
  }
}

@media (max-width: 410px) {
  .hero-section::after {
    clip-path: polygon(0 71%, 224% 61%, 50% 32%, 0 45%);
  }
}

@media (max-width: 400px) {
  .hero-section::after {
    clip-path: polygon(0 71%, 224% 45%, 50% 30%, 0 40%);
  }
}

/* Updated star positioning to be fixed within viewport for always visible effect */
.floating-stars {
  /* position: fixed; */
  /* width: 100%; */
  /* height: 100vh; */
  pointer-events: none;
  z-index: 100;
  top: 0;
  left: 0;
}

.floating-stars-left {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  top: 0; /* Added */
  left: 0; /* Added */
}

/* Updated star styles - no rotation, only hover effect */
.star {
  position: absolute;
  transition: transform 0.3s ease;
}

/* Large star on left side - fixed to section */
.star-large-left {
  top: 12%;
  left: -8%;
  width: 400px;
  height: 400px;
}

/* Added floating animations for right side stars */
.star-1 {
  top: 5%;
  right: -1%;
  width: 45px;
  height: 45px;
  animation: float-gentle 4s ease-in-out infinite;
}

.star-2 {
  top: 10%;
  right: 1%;
  width: 60px;
  height: 60px;
  animation: float-bounce 5s ease-in-out infinite 0.5s;
}

.star-3 {
  top: 18%;
  right: 5%;
  width: 60px;
  height: 60px;
  animation: float-sway 6s ease-in-out infinite 1s;
}

.star-4 {
  top: 16%;
  right: -1%;
  width: 55px;
  height: 55px;
  animation: float-drift 5.5s ease-in-out infinite 1.5s;
}

.star-5 {
  top: 65%;
  right: 8%;
  width: 45px;
  height: 45px;
  animation: float-gentle 4.5s ease-in-out infinite 2s;
}

.star-6 {
  top: 15%;
  right: 25%;
  width: 40px;
  height: 40px;
  animation: float-bounce 5.2s ease-in-out infinite 0.8s;
}

.star-7 {
  top: 23%;
  right: 2%;
  width: 60px;
  height: 60px;
  animation: float-sway 5.8s ease-in-out infinite 1.2s;
}

.star-8 {
  top: 27%;
  right: 7%;
  width: 60px;
  height: 60px;
  animation: float-drift 6.2s ease-in-out infinite 0.3s;
}

/* Only rotate on hover */
.star:hover {
  transform: rotate(180deg);
}

/* Removed old float animation */

/* Added multiple floating animation keyframes for variety */
@keyframes float-gentle {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) translateX(8px) rotate(5deg);
  }
  50% {
    transform: translateY(-25px) translateX(0px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) translateX(-8px) rotate(-5deg);
  }
}

@keyframes float-bounce {
  0%,
  100% {
    transform: translateY(0px) scale(1) rotate(0deg);
  }
  30% {
    transform: translateY(-30px) scale(1.05) rotate(10deg);
  }
  50% {
    transform: translateY(-20px) scale(1) rotate(0deg);
  }
  70% {
    transform: translateY(-30px) scale(1.05) rotate(-10deg);
  }
}

@keyframes float-sway {
  0%,
  100% {
    transform: translateX(0px) translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateX(15px) translateY(-20px) rotate(8deg);
  }
  50% {
    transform: translateX(0px) translateY(-30px) rotate(0deg);
  }
  75% {
    transform: translateX(-15px) translateY(-20px) rotate(-8deg);
  }
}

@keyframes float-drift {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-18px) translateX(-10px) rotate(-6deg);
  }
  66% {
    transform: translateY(-28px) translateX(10px) rotate(6deg);
  }
}

/* Hero subtitle animation styles */
/* Updated hero subtitle animation with 3D flip effect */
.hero-subtitle-container {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  perspective: 1000px;
  overflow: visible;
}

.hero-subtitle-wrapper {
  position: absolute;
  width: 100%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.hero-subtitle {
  /* font-family: "Raleway", sans-serif; */
  font-family: "Winky Rough", sans-serif;
  
  /* font-size: 16px;
  font-weight: 700; */

  font-size: 36px;
  font-weight: 700;


  line-height: 1.6;
  color: #ffffff;
  text-align: center;
  width: 100%;
  margin: 0;
  transform: rotateX(90deg);
  opacity: 0;
  transition: none;
}

.hero-subtitle .highlight {
  background: var(--yellow);
  color: var(--dark-gray);
  padding: 0 15px;
  display: inline-block;
}

.hero-subtitle.flip-in {
  animation: flipIn 0.8s ease forwards;
}

.hero-subtitle.flip-out {
  animation: flipOut 0.8s ease forwards;
}

@keyframes flipIn {
  0% {
    transform: rotateX(90deg);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipOut {
  0% {
    transform: rotateX(0deg);
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: rotateX(-90deg);
    opacity: 0;
  }
}

.hero-content {
  text-align: center;
  color: white;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Updated hero title font and spacing */
.hero-title {
  font-family: "Winky Rough", sans-serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title .highlight {
  background: var(--yellow);
  color: var(--dark-gray);
  padding: 0 15px;
  display: inline-block;
}

/* Updated subtitle font to Raleway */
/* .hero-subtitle {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
  color: #ffffff;
} */

/* Adjusted gallery spacing */
.image-gallery-container {
  margin-top: 50px;
  overflow: hidden;
  position: relative;
}

.image-gallery-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  white-space: nowrap;
}

.row-1 {
  animation: slideLeft 30s linear infinite;
}

.row-2 {
  animation: slideRight 30s linear infinite;
}

/* Updated animations for seamless infinite loop */
@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-400px * 5 - 15px * 5));
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(calc(-400px * 5 - 15px * 5));
  }
  100% {
    transform: translateX(0);
  }
}

/* Reduced shadow on gallery images */
.image-gallery-row img {
  width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); */
  flex-shrink: 0;
}

.diagonal-cross-container {
  position: absolute;
  top: 27rem;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 50;
}

/* Simplified band shadow */
.diagonal-band {
  position: absolute;
  width: 250%;
  height: 100px;
  background: var(--pink);
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  display: flex;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  z-index: 50;
}

.band-1 {
  top: 55%;
  left: -75%;
  transform: translateY(-50%) rotate(-24deg);
  transform-origin: center;
}

.band-2 {
  top: 55%;
  left: -75%;
  transform: translateY(-50%) rotate(12deg);
  transform-origin: center;
}

.band-text-wrapper {
  display: flex;
  white-space: nowrap;
  animation: scroll 35s linear infinite;
}

/* Updated band text font to Winky Rough */
.band-text {
  font-family: "Winky Rough", sans-serif;
  color: var(--yellow);
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  padding: 0 30px;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Catalogue Section */
/* Adjusted padding for better spacing */
.catalogue-section {
  background: var(--pink);
  padding: 120px 0 0;
  text-align: center;
  color: white;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.catalogue-section::before {
  content: "";
  position: absolute;
  bottom: 71%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  clip-path: polygon(0 71%, 0 100%, 51% 50%, 0 68%);
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 1550px) {
  .catalogue-section::before {
    clip-path: polygon(0 71%, 0 90%, 51% 50%, 0 68%);
  }
}

@media (max-width: 1150px) {
  .catalogue-section::before {
    clip-path: polygon(0 71%, 0 80%, 51% 50%, 0 68%);
  }
}

@media (max-width: 992px) {
  .catalogue-section{
    padding: 50px 0;
  }
  
  .catalogue-section::before {
    clip-path: polygon(0 75%, 0 85%, 0 55%, 0 72%);
  }
}

.catalogue-title {
  font-family: "Winky Rough", sans-serif;
  font-size: 72px;
  font-weight: 900;
  margin-bottom: 50px;
  text-transform: uppercase;
  line-height: 1.1;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.catalogue-content {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Changed from center to space-between for equal distribution */
  gap: 40px; /* Reduced gap for better balance */
  position: relative;
  margin-top: 60px;
}

.catalogue-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto; /* Changed to auto width to center button naturally */
  justify-content: center;
  z-index: 10;
  min-width: 200px; /* Added minimum width for button container */
}

.btn-catalogue-download {
  background: var(--yellow);
  color: var(--dark-gray);
  border: none;
  padding: 16px 50px;
  border-radius: 30px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: capitalize;
  /* box-shadow: 0 6px 0 #a52020, 0 8px 20px rgba(0, 0, 0, 0.3); */
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.5);
  position: relative;
  display: block; /* Added from updates */
  margin: 0 auto; /* Added from updates */
}

.btn-catalogue-download:hover {
  transform: translateY(2px);
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.btn-catalogue-download:active {
  transform: translateY(6px);
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.catalogue-item {
  position: relative;
  transition: transform 0.05s ease-out;
  will-change: transform;
  flex: 1; /* Added flex property to make side items take equal space */
}

/* Video button styles for catalogue items */
.video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(235, 33, 39, 0.9);
  border: 3px solid white;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 32px;
  color: white;
}

/* .catalogue-item:hover .video-btn {
  opacity: 1;
} */

.video-btn:hover {
  background: rgba(235, 33, 39, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.catalogue-item-left {
  transform: rotate(19deg);
  top: 20%;
}

.catalogue-item-left img {
  width: 300px;
  height: 360px;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.3s ease;
}

.catalogue-item-left img:hover {
  transform: scale(1.03);
}

.catalogue-item-right {
  transform: rotate(-21deg);
}

.catalogue-item-right img {
  width: 440px;  /* Increased width */
  height: 250px; /* Decreased height */
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.3s ease;
}

.catalogue-item-right img:hover {
  transform: scale(1.03);
}

/* Catalogue stars */
.catalogue-stars {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.cat-star {
  position: absolute;
  width: 50px;
  height: 50px;
  animation: float 3s ease-in-out infinite;
}

.cat-star-1 {
  top: -100px;
  left: 50px;
  width: 45px;
  height: 45px;
  animation-delay: 0s;
}

.cat-star-2 {
  top: 0;
  left: 80px;
  width: 55px;
  height: 55px;
  animation-delay: 0.5s;
}

.cat-star-3 {
  top: 100px;
  left: 40px;
  width: 50px;
  height: 50px;
  animation-delay: 1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Updated section title font and spacing */
.section-title {
  font-family: "Winky Rough", sans-serif;
  font-size: 62px;
  font-weight: 900;
  margin-bottom: 30px;
  text-transform: uppercase;
  line-height: 1.2;
}

.catalogue-images {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* The `.catalogue-item` rule was already updated above for flex: 1 */

/* Reduced shadow on catalogue images */
.catalogue-item-1 img {
  width: 220px;
  height: 280px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transform: rotate(-12deg);
  transition: transform 0.3s;
  top: 20%;
  left: 20%;
}

.catalogue-item-1 img:hover {
  transform: rotate(-8deg) scale(1.05);
}

.catalogue-item-2 img {
  width: 220px;
  height: 280px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transform: rotate(12deg);
  transition: transform 0.3s;
}

.catalogue-item-2 img:hover {
  transform: rotate(8deg) scale(1.05);
}

/* Products Section */
/* Adjusted padding for better spacing */
.products-section {
  background: var(--pink);
  padding: 0 0 80px;
}

/* Updated section title fonts */
.section-title-white {
  font-family: "Winky Rough", sans-serif;
  font-size: 62px;
  font-weight: 700;
  text-align: center;
  color: white;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* Updated subtitle font to Raleway */
.section-subtitle-white {
  font-family: "Raleway", sans-serif;
  text-align: center;
  color: white;
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 400;
  opacity: 0.95;
}

.category-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.category-tabs {
  display: inline-flex;
  gap: 0;
  border-bottom: 3px solid rgba(255, 255, 255, 0.3);
  position: relative;
}

.category-tab {
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 15px 40px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  color: rgba(255, 255, 255, 0.6);
  text-transform: capitalize;
  position: relative;
  margin-bottom: -3px;
}

.category-tab.active {
  color: white;
  border-bottom-color: white;
}

.category-tab:hover {
  color: white;
}

/* Adjusted product grid spacing */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  padding: 0 20px;
}

/* Reduced shadow on product cards */
.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.product-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-gray);
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0;
}

/* Add this to your styles.css */

/* Blur effect for non-early-bird tickets */
.blurred-ticket {
  position: relative;
}

.blurred-ticket::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  pointer-events: none;
  z-index: 1;
}

.blurred-ticket .product-content,
.blurred-ticket .product-price,
.blurred-ticket .product-button {
  position: relative;
  z-index: 0;
}

.blurred-ticket .product-button {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}
.wishlist-icon {
  font-size: 20px;
  color: var(--dark-gray);
  cursor: pointer;
  transition: all 0.3s;
}

.wishlist-icon:hover {
  color: var(--red);
  transform: scale(1.2);
}

.product-image {
  background: #e8e9eb;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.product-placeholder {
  font-size: 50px;
  color: #b8b9bb;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: var(--dark-gray);
}

.price-period {
  font-size: 14px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Features Section */
/* Adjusted padding for better spacing */
.features-section {
  background: #fafafa;
  padding: 80px 0;
}

/* Updated section title font */
.section-title-red {
  font-family: "Winky Rough", sans-serif;
  font-size: 62px;
  font-weight: 700;
  text-align: center;
  color: var(--red);
  margin-bottom: 15px;
  text-transform: uppercase;
  padding: 0 1rem;
}

/* Updated subtitle font to Raleway */
.section-subtitle-dark {
  font-family: "Raleway", sans-serif;
  text-align: center;
  color: #111111;
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 400;
}

/* Adjusted spacing between feature content */
.features-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  margin-top: 50px;
  margin-bottom: 50px;
  align-items: center;
}

/* Reduced shadow on feature images */
.feature-image {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 15px 15px 0px rgba(142, 11, 15, 0.3);
}

/* Adjusted feature list spacing */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  flex-shrink: 0;
}

.feature-icon.red {
  background: var(--red);
}

.feature-icon.white {
  background: white;
  color: var(--red);
}

.feature-text h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark-gray);
}

/* Updated feature text font to Raleway */
.feature-text p {
  font-family: "Raleway", sans-serif;
  color: #666;
  line-height: 1.7;
  font-size: 15px;
}

/* Adjusted large images spacing */
.large-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

/* Reduced shadow on large images */
.large-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Added red banner section styles */
.banner-section {
  padding: 120px 62px 120px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  /* text-align: center; */
  text-align: end;
}

.red-banner {
  background-image: url("images/JM_Bannerf-04.webp");
  background-color: var(--red);
}

.banner-content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.banner-title {
  font-family: "Winky Rough", sans-serif;
  font-size: 62px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.2;
}

.banner-subtitle {
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
  opacity: 0.95;
}

.btn-banner {
  background: white;
  color: var(--dark-gray);
  border: none;
  padding: 15px 50px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: capitalize;
  box-shadow: 4px 4px 0 rgba(237, 219, 19, 1);
}

.btn-banner:hover {
  transform: translateY(-2px);
  box-shadow: 2px 2px 0 rgba(237, 219, 19, 1);
}

/* Testimonials Section */
/* Updated testimonials section with proper background image handling and pixel-perfect styling */
.testimonials-section {
  background-image: url("images/JM_Bannerf-03.webp");
  background-size: cover;
  /* background-position: center center; */
  background-repeat: no-repeat;
  background-color: #03a550;
  padding: 80px 0 100px;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 700px;
}

/* Removed overlay to show background image clearly */
.testimonials-section .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

.testimonials-wrapper {
  position: relative;
}

.testimonials-carousel-container {
  overflow: hidden;
  width: 100%;
}

/* Updated testimonials grid layout */
.testimonials-grid {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  margin-top: 60px;
  transition: transform 0.5s ease;
}

/* Dark green cards matching reference design */
/* Updated testimonial card sizing to show 3 cards at once */
.testimonial-card {
  background: rgba(6, 91, 46, 1);
  border-radius: 10px;
  padding: 30px 25px;
  box-shadow: 12px 15px 0 rgba(44, 130, 85, 1);
  transition: transform 0.3s;
  min-height: 200px;
  flex: 0 0 calc(33.333% - 20px);
  min-width: calc(33.333% - 20px);
  flex-shrink: 0;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  /* box-shadow: 7px 9px 0 rgba(44, 130, 85, 1); */
}

/* Updated header layout to match reference - horizontal layout */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
}

/* White circular avatar */
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  flex-shrink: 0;
}

/* Info section with name and company */
.testimonial-info {
  flex: 1;
}

.testimonial-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
  color: white;
}

.testimonial-company {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Rating positioned on the right */
.testimonial-rating {
  font-size: 16px;
  font-weight: 700;
  color: white;
  position: absolute;
  right: 0;
  top: 0;
}

.stars {
  color: var(--yellow);
}

.testimonial-text {
  font-family: "Raleway", sans-serif;
  line-height: 1.7;
  color: white;
  font-size: 16px;
  margin: 0;
}

/* Navigation controls - dots on left, arrows on right */
.testimonial-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Updated dot styles - active dot is elongated */
.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 45px;
  height: 15px;
  border-radius: 10px;
  background: rgba(35, 35, 35, 0.8);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Arrow navigation buttons */
.testimonial-arrows {
  display: flex;
  gap: 15px;
}

.arrow-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid transparent;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.arrow-btn:hover {
  background: white;
  color: #03a550;
  transform: scale(1.1);
}

/* Footer */
/* Adjusted padding */
.footer {
  background: var(--green);
  color: white;
  padding: 70px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 5rem;
  margin-bottom: 20px;
}

/* Updated footer text font to Raleway */
.footer-brand p {
  font-family: "Raleway", sans-serif;
  margin-bottom: 20px;
  opacity: 0.9;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icons.dark a {
  background: rgba(255, 255, 255, 0.2);
  color: black;  
}

.social-icons a:hover {
  background: white;
  color: var(--green);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

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

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  font-family: "Raleway", sans-serif;
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-column ul li a:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-links a {
  font-family: "Raleway", sans-serif;
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-bottom-links a:hover {
  opacity: 1;
}

/* Adding styles for star cursor particles */
.cursor-star-particle {
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.8)) drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
  animation: twinkle 0.5s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% {
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.8)) drop-shadow(0 0 10px rgba(255, 215, 0, 0.5)) brightness(1);
  }
  100% {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 1)) drop-shadow(0 0 15px rgba(255, 215, 0, 0.7)) brightness(1.3);
  }
}

.custom-cursor-glow {
  mix-blend-mode: screen;
}

/* Hide default cursor for a more immersive experience (optional) */
/* body {
  cursor: none;
} */

/* Keep cursor normal on interactive elements */
a,
button,
input,
textarea,
select,
.hamburger-menu,
.category-tab,
.wishlist-icon {
  cursor: pointer !important;
}

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */

/* Large screens (max-width: 1200px) */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 52px;
  }

  .section-title,
  .section-title-white,
  .section-title-red,
  .banner-title {
    font-size: 48px;
  }

  .catalogue-title {
    font-size: 60px;
  }

  /* Adjust large star for large screens */
  .star-large-left {
    width: 300px;
    height: 300px;
    left: -6%;
  }

  /* Adjust catalogue images */
  .catalogue-item-left img {
    width: 260px;
    height: 320px;
  }

  .catalogue-item-right img {
    width: 370px;
    height: 210px;
  }
}

/* Medium-large screens (max-width: 992px) */
@media (max-width: 992px) {
  .diagonal-cross-container {
    top: 20rem;
  }

  /* Diagonal bands responsive */
  .diagonal-band {
    height: 70px;
  }

  .band-text {
    font-size: 22px;
    padding: 0 20px;
  }

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

  .features-content {
    grid-template-columns: 1fr;
  }

  /* Testimonial cards 2-up on tablet */
  .testimonial-card {
    flex: 0 0 calc(50% - 15px);
    min-width: calc(50% - 15px);
  }

  .large-images {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 48px;
  }

  .image-gallery-row img {
    width: 300px;
    height: 225px;
  }

  /* Update gallery animation for smaller images */
  @keyframes slideLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-300px * 5 - 15px * 5));
    }
  }

  @keyframes slideRight {
    0% {
      transform: translateX(calc(-300px * 5 - 15px * 5));
    }
    100% {
      transform: translateX(0);
    }
  }

  .section-title,
  .section-title-white,
  .section-title-red {
    font-size: 32px;
  }

  .banner-title {
    font-size: 36px;
  }

  /* Hide large left star on tablets */
  .star-large-left {
    width: 200px;
    height: 200px;
    left: -10%;
    top: 5%;
  }

  /* Scale down right floating stars */
  .star-1,
  .star-2,
  .star-3,
  .star-4,
  .star-7,
  .star-8 {
    width: 35px;
    height: 35px;
  }

  /* Hide catalogue side stars on tablet */
  .catalogue-stars {
    display: none;
  }

  /* Catalogue section responsive - stack layout */
  .catalogue-content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .catalogue-item {
    flex: none;
  }

  .catalogue-item-left,
  .catalogue-item-right {
    transform: none !important;
  }

  .catalogue-item-left img {
    width: 220px;
    height: 400px;
  }
  
  /* Right image stays landscape on tablet */
  .catalogue-item-right img {
    width: 400px;
    height: 230px;
  }

  .catalogue-center {
    order: -1;
    margin-bottom: 20px;
  }

  .catalogue-title {
    font-size: 48px;
  }

  /* Category tabs scroll horizontally */
  .category-tabs-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 15px;
    margin: 0 -15px 50px;
    scrollbar-width: none;
  }

  .category-tabs-wrapper::-webkit-scrollbar {
    display: none;
  }

  .category-tabs {
    display: flex;
    flex-wrap: nowrap;
    min-width: max-content;
    padding-bottom: 5px;
  }

  .category-tab {
    padding: 12px 25px;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Banner section responsive */
  .banner-section {
    padding: 80px 30px;
    text-align: center;
  }

  .banner-subtitle {
    font-size: 16px;
  }

  .banner-subtitle br {
    display: none;
  }
}

/* Tablet screens (max-width: 768px) */
@media (max-width: 768px) {
  /* Video modal styles */
  .video-modal-content {
    width: 95%;
  }

  .video-modal-content iframe {
    height: 400px !important;
  }

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

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
  }

  .hero-title {
    font-size: 44px;
  }

  .catalogue-images {
    gap: 30px;
  }

  .band-text {
    font-size: 18px;
    padding: 0 15px;
  }

  /* Diagonal bands smaller on mobile */
  .diagonal-band {
    height: 55px;
  }

  .banner-title {
    font-size: 28px;
  }

  .btn-banner {
    padding: 12px 35px;
    font-size: 15px;
  }

  .testimonials-section {
    padding: 60px 0 80px;
    min-height: auto;
    background-size: cover;
    background-position: center;
  }

  /* Single testimonial card on mobile */
  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 25px 20px;
  }

  .testimonial-controls {
    flex-direction: column;
    gap: 30px;
  }

  /* Hide large left star on mobile */
  .star-large-left {
    display: none;
  }

  /* Make right stars smaller and reposition */
  .floating-stars {
    display: none;
  }

  /* Adjust diagonal bands container position */
  .diagonal-cross-container {
    top: 16rem;
  }

  /* Catalogue section adjustments */
  .catalogue-section {
    padding: 0 0 75px 0;
  }

  .catalogue-section::before {
    display: none;
  }

  .catalogue-title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .catalogue-content {
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
  }

  .catalogue-item-left img {
    width: 180px;
    height: 400px;
    border-radius: 16px;
  }

  .catalogue-item-right img {
    width: 400px;
    height: 230px;
    border-radius: 16px;
  }

  .btn-catalogue-download {
    padding: 14px 35px;
    font-size: 16px;
  }

  /* Section titles smaller on mobile */
  .section-title-white,
  .section-title-red {
    font-size: 28px;
    padding: 0 15px;
  }

  .section-subtitle-white,
  .section-subtitle-dark {
    font-size: 14px;
    padding: 0 15px;
  }

  .section-subtitle-white br,
  .section-subtitle-dark br {
    display: none;
  }

  /* Features section responsive */
  .features-section {
    padding: 60px 0;
  }

  .feature-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }

  .feature-text h3 {
    font-size: 18px;
  }

  .feature-text p {
    font-size: 14px;
  }

  /* Feature image shadow smaller on mobile */
  .feature-image {
    box-shadow: 10px 10px 0px rgba(142, 11, 15, 0.3);
  }

  /* Testimonials title and subtitle */
  .testimonials-section .section-title-white {
    font-size: 28px;
  }

  .testimonials-section .section-subtitle-white {
    font-size: 14px;
  }

  .testimonials-section .section-subtitle-white br {
    display: none;
  }

  /* Gallery images smaller on mobile */
  .image-gallery-row img {
    width: 220px;
    height: 165px;
  }

  @keyframes slideLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-220px * 5 - 15px * 5));
    }
  }

  @keyframes slideRight {
    0% {
      transform: translateX(calc(-220px * 5 - 15px * 5));
    }
    100% {
      transform: translateX(0);
    }
  }

  /* Footer responsive */
  .footer {
    padding: 50px 0 25px;
  }

  .footer-logo {
    height: 4rem;
  }

  .footer-brand {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .social-icons.dark {
    justify-content: start;
  }

  .footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-column ul li {
    margin-bottom: 12px;
  }

  /* Header logo smaller on mobile */
  .logo {
    height: 55px;
  }
}

/* Small mobile screens (max-width: 576px) */
@media (max-width: 576px) {
  .hero-section {
    padding: 40px 0 50px;
    padding-bottom: 200px;
  }

  .hero-title {
    font-size: 40px;
    padding: 0 10px;
  }

  .hero-title .highlight {
    padding: 0 8px;
  }

  .hero-subtitle {
    font-size: 14px;
    padding: 0 15px;
  }

  .hero-subtitle br {
    display: none;
  }

  .btn-hero {
    padding: 12px 30px;
    font-size: 12px;
  }

  /* Hide diagonal bands on very small screens for cleaner look */
  .diagonal-cross-container {
    top: 14rem;
  }

  .diagonal-band {
    height: 45px;
  }

  .band-text {
    font-size: 14px;
    padding: 0 10px;
    letter-spacing: 1px;
  }

  /* Gallery container adjustments */
  .image-gallery-container {
    margin-top: 30px;
  }

  .image-gallery-row img {
    width: 180px;
    height: 135px;
    border-radius: 8px;
  }

  .image-gallery-row {
    gap: 10px;
  }

  @keyframes slideLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-180px * 5 - 10px * 5));
    }
  }

  @keyframes slideRight {
    0% {
      transform: translateX(calc(-180px * 5 - 10px * 5));
    }
    100% {
      transform: translateX(0);
    }
  }

  /* Catalogue section small mobile */
  .catalogue-section {
    padding: 0 0 75px 0;
  }

  .catalogue-title {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .catalogue-content {
    gap: 20px;
    margin-top: 20px;
    padding: 0 15px;
  }

  .catalogue-item-left img {
    width: 265px;
    height: 265px;
  }

  /* Right image compact landscape on mobile */
  .catalogue-item-right img {
    width: 280px;
    height: 160px;
  }

  .btn-catalogue-download {
    padding: 12px 28px;
    font-size: 14px;
  }

  /* Products section small mobile */
  .products-section {
    padding: 0 0 60px;
  }

  .products-grid {
    padding: 0 15px;
    gap: 20px;
  }

  .product-card {
    padding: 15px;
  }

  .product-footer {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

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

  .btn-know-more {
    padding: 10px 35px;
    font-size: 14px;
    margin-top: 30px;
  }

  /* Category tabs smaller on mobile */
  .category-tab {
    padding: 10px 18px;
    font-size: 13px;
  }

  /* Features section small mobile */
  .features-section {
    padding: 50px 0;
  }

  .features-content {
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .feature-item {
    gap: 15px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .feature-text h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .feature-text p {
    font-size: 13px;
  }

  .feature-image {
    box-shadow: 8px 8px 0px rgba(142, 11, 15, 0.3);
  }

  /* Banner section small mobile */
  .banner-section {
    padding: 60px 20px;
  }

  .banner-title {
    font-size: 24px;
  }

  .banner-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .btn-banner {
    padding: 12px 30px;
    font-size: 13px;
  }

  /* Testimonials small mobile */
  .testimonials-section {
    padding: 50px 0 60px;
  }

  .testimonials-grid {
    margin-top: 40px;
    margin-bottom: 40px;
    gap: 20px;
  }

  .testimonial-card {
    padding: 20px 15px;
    box-shadow: 8px 10px 0 rgba(44, 130, 85, 1);
  }

  .testimonial-avatar {
    width: 40px;
    height: 40px;
  }

  .testimonial-info h3 {
    font-size: 16px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .testimonial-controls {
    gap: 20px;
  }

  .dot {
    width: 12px;
    height: 12px;
  }

  .dot.active {
    width: 35px;
    height: 12px;
  }

  .arrow-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  /* Footer small mobile */
  .footer {
    padding: 40px 0 20px;
  }

  .footer-content {
    gap: 30px;
    margin-bottom: 30px;
  }

  .footer-logo {
    height: 3.5rem;
  }

  .footer-brand p {
    font-size: 18px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .footer-column h4 {
    font-size: 18px;
  }

  .footer-column ul li a {
    font-size: 14px;
  }

  .footer-bottom {
    padding-top: 20px;
  }

  .footer-bottom p {
    font-size: 13px;
  }

  .footer-bottom-links {
    gap: 15px;
  }

  .footer-bottom-links a {
    font-size: 13px;
  }

  /* Header small mobile */
  .header {
    padding: 10px 0;
  }

  .logo {
    height: 45px;
  }

  .hamburger-menu {
    width: 40px;
    height: 40px;
  }

  .hamburger-menu span {
    width: 18px;
    height: 2px;
  }
}

/* Extra small screens (max-width: 400px) */
@media (max-width: 400px) {
  /* Video modal styles */
  .video-modal-content {
    width: 100%;
    max-width: none;
  }
  .video-modal-content iframe {
    height: 300px !important;
  }

  .hero-title {
    font-size: 31px;
  }

  .hero-subtitle {
    font-size: 12px;
  }

  .catalogue-title {
    font-size: 26px;
  }

  .catalogue-item-left img,
  .catalogue-item-right img {
    width: 265px;
    height: 265px;
  }

  .section-title-white,
  .section-title-red {
    font-size: 24px;
  }

  .banner-title {
    font-size: 22px;
  }

  .image-gallery-row img {
    width: 150px;
    height: 112px;
  }

  @keyframes slideLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-150px * 5 - 10px * 5));
    }
  }

  @keyframes slideRight {
    0% {
      transform: translateX(calc(-150px * 5 - 10px * 5));
    }
    100% {
      transform: translateX(0);
    }
  }
}

/* FAQ section styles */
/* Enhanced FAQ section with modern styling */
.faq-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 100px 0;
  border-top: 5px solid var(--pink);
  position: relative;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(237, 219, 19, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(235, 33, 39, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.faq-section .section-title-red {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.faq-section .section-subtitle-dark {
  text-align: center;
  font-size: 18px;
  color: var(--dark-gray);
  opacity: 0.8;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.faq-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.faq-item {
  border: 3px solid var(--pink);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 10px;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(235, 33, 39, 0.15);
}

.faq-item.active {
  border-color: var(--red);
  background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
  box-shadow: 0 8px 20px rgba(235, 33, 39, 0.2);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-gray);
  font-family: "Raleway", sans-serif;
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
}

.faq-question::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--pink);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

/* .faq-item.active .faq-question::before {
  transform: scaleY(1);
  background: var(--yellow);
} */

.faq-item.active .faq-question {
  background: var(--red);
  color: white;
  padding-left: 28px;
}

.faq-question:hover {
  background: linear-gradient(90deg, #fff5f5 0%, #ffffff 100%);
}

.faq-item.active .faq-question:hover {
  background: linear-gradient(90deg, var(--red) 0%, #c41e23 100%);
}

.faq-question span {
  flex: 1;
  padding-right: 20px;
}

.faq-question .faq-icon-wrapper {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question .faq-icon-wrapper {
  background: var(--yellow);
  transform: rotate(180deg);
}

.faq-question i {
  transition: all 0.3s ease;
  font-size: 16px;
  color: white;
}

.faq-item.active .faq-question i {
  color: var(--dark-gray);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  border-top: 2px solid rgba(235, 33, 39, 0.1);
}

.faq-answer p {
  padding: 24px 28px;
  color: var(--dark-gray);
  font-size: 15px;
  line-height: 1.8;
  font-family: "Raleway", sans-serif;
  margin: 0;
  animation: fadeInAnswer 0.4s ease forwards;
}

@keyframes fadeInAnswer {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .faq-content {
    gap: 16px;
  }

  .faq-question {
    padding: 20px;
    font-size: 15px;
  }

  .faq-item.active .faq-question {
    padding-left: 20px;
  }

  .faq-question .faq-icon-wrapper {
    width: 28px;
    height: 28px;
  }

  .faq-answer p {
    padding: 20px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .faq-section {
    padding: 40px 0;
  }

  .faq-question {
    padding: 16px;
    font-size: 14px;
  }

  .faq-item.active .faq-question {
    padding-left: 16px;
  }

  .faq-question .faq-icon-wrapper {
    width: 26px;
    height: 26px;
  }

  .faq-question i {
    font-size: 14px;
  }

  .faq-answer p {
    padding: 16px;
    font-size: 13px;
  }
}

/* Video modal styles */
.video-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.video-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 900px;
  background: black;
  border-radius: 10px;
  overflow: hidden;
}

.video-close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s;
}

.video-close:hover {
  color: var(--yellow);
}

.image-bottom-strip {
    font-family: "Winky Rough", sans-serif;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--green); /* bootstrap danger, slightly transparent */
    color: #fff;
    text-align: center;
    padding: 10px 12px;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.3px;
    border-radius: 0 0 8px 8px; /* match image radius */
}

/* --- Tab Functionality Styles --- */

/* By default, hide the grids that act as tab content */
.products-grid.tab-content {
    display: none;
    animation: fadeInGrid 0.5s ease; /* Smooth fade-in effect */
}

/* Only display the grid that has the 'active' class */
.products-grid.tab-content.active {
    display: grid;
}

/* Simple animation for smooth switching */
@keyframes fadeInGrid {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- City Selection Section Styles --- */

/* --- City Status Titles --- */
.city-status-title {
    font-family: "Winky Rough", sans-serif;
    color: white;
    text-align: center;
    margin-bottom: 15px;
    font-size: 32px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .city-status-title {
        font-size: 26px;
        margin-bottom: 10px;
    }
}

/* Reusing the pink background to match brand flow */
.city-section {
    background: var(--pink);
    padding: 0 0 50px 0; /* Adjust spacing as needed */
}

/* Specific Card Styling for the City Tickets */
.city-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    /* Optional: Add a white border or shadow to make it pop off the pink background */
    box-shadow: 0 10px 20px rgba(0,0,0,0.2); 
    background: transparent; /* Keeping it transparent to let the ticket shape shine */
    max-width: 350px; /* Limits width so it doesn't get too huge on tablets */
    margin: 0 auto;
}

.city-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.city-img {
    width: 100%;
    height: auto;
    display: block;
    /* Ensure the image corners match the card border */
    border-radius: 15px; 
}

/* Optional: Button Overlay that appears on hover for active cities */
.city-overlay {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.city-card:hover .city-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Fix for the blurred item reusing your existing class */
.city-card.blurred-ticket {
    cursor: default; /* Remove pointer cursor */
}

.city-card.blurred-ticket:hover {
    transform: none; /* Disable hover lift effect for the blurred card */
    box-shadow: 0 10px 20px rgba(0,0,0,0.2); /* Keep shadow static */
}

/* Ensure the existing blur effect covers the rounded corners properly */
.city-card.blurred-ticket::before {
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1); /* Slight white tint to enhance blur */
}