/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/*  TOP BAR */
.top-bar {
  background: linear-gradient(to right, #c89b3c, #8b1e1e);
  color: white;
  font-size: 14px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.4s ease;
}

.top-container {
  max-width: 1300px;
  margin: auto;
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.top-right a {
  color: #f3e6c9;
  margin-left: 18px;
  font-size: 15px;
  transition: 0.3s;
}

.top-right a:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

/* FLOATING NAVBAR */
.navbar {
  position: fixed;
  /* top: 20px; */
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: center;
}

/* New Transition */
.navbar {
  transition: top 0.4s ease;
}

/* MAIN WRAPPER */
.nav-wrapper {
  width: 90%;
  max-width: 950px;
  padding: 7px 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-radius: 60px;

  /* Glass effect - gray transparent */
  background: rgba(80, 80, 80, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  /* gold border */
  border: 1px solid rgba(200, 155, 60, 0.35);

  /* soft shadow */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

/* LOGO CENTER */
.logo img {
  height: 55px;
}

/* LEFT + RIGHT NAV */
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* LINKS */
.nav-left a,
.nav-right a {
  text-decoration: none;
  color: #f3e6c9;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

/* GOLD UNDERLINE EFFECT */
.nav-left a::after,
.nav-right a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -6px;

  background: linear-gradient(to right, #c89b3c, #ffd98a);
  transition: .3s;
}

.nav-left a:hover::after,
.nav-right a:hover::after,
.nav-left a.active::after {
  width: 100%;
}

/* HOVER COLOR */
.nav-left a:hover,
.nav-right a:hover {
  color: #ffd98a;
}

/* BOOK TICKET BUTTON */
.ticket-btn {
  padding: 10px 22px;
  border-radius: 30px;
  background: linear-gradient(90deg, #c89b3c, #8b1e1e);
  color: white !important;
  font-weight: 600;
}

.ticket-btn:hover {
  transform: translateY(-2px);
}



/* ===== NAV ITEM WRAPPER ===== */
.nav-item {
  position: relative;
  display: inline-block;
}

/* ===== DROPDOWN ARROW ===== */
.dropdown-arrow {
  display: inline-block;
  margin-left: 6px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #c89b3c;
  border-bottom: 2px solid #c89b3c;
  transform: rotate(45deg);
  transition: transform .3s ease;
}

/* rotate on hover */
.has-dropdown:hover .dropdown-arrow {
  transform: rotate(-135deg);
}

/* ===== DROPDOWN BOX ===== */
.dropdown {
  position: absolute;
  top: 200%;
  left: 0;
  min-width: 220px;
  padding: 12px 0;

  /* background: linear-gradient(180deg, #8b1e1e, #5a1010); */
  background: linear-gradient(180deg, #9f2626, #6d1515);
  border-radius: 14px;

  /* premium shadow */
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.25),
    0 4px 12px rgba(200, 155, 60, 0.25);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .35s ease;
  z-index: 999;
}

/* ===== SHOW ON HOVER ===== */
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===== DROPDOWN LINKS ===== */
.dropdown a {
  display: block;
  padding: 11px 20px;
  color: #f5e6c8;
  text-decoration: none;
  font-size: 14px;
  transition: all .25s ease;
  position: relative;
}

/* subtle gold hover */
.dropdown a:hover {
  background: rgba(200, 155, 60, 0.12);
  color: #ffd98a;
  padding-left: 26px;
}

/* gold left accent */
.dropdown a::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 6px;
  height: 6px;
  background: #c89b3c;
  border-radius: 50%;
  transition: .25s ease;
}

.dropdown a:hover::before {
  transform: translateY(-50%) scale(1);
}

/* ===== MOBILE SUPPORT ===== */
@media (max-width: 992px) {

  .nav-item {
    display: block;
    width: 100%;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(139, 30, 30, 0.25);
    margin-top: 6px;
    border-radius: 10px;
    display: none;
  }

  .nav-item.open .dropdown {
    display: block;
  }

  /* arrow rotate on mobile */
  .nav-item.open .dropdown-arrow {
    transform: rotate(-135deg);
  }
}

/* ============================= */
/* MOBILE HAMBURGER BUTTON */
/* ============================= */
.mobile-hamburger {
  display: none;
  margin-left: auto;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #c89b3c, #8b1e1e);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .25);

  /* HARD CENTERING */
  /* display: flex; */
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* PERFECT LINES */
.mobile-hamburger span {
  display: block;
  width: 28px;
  height: 3.5px;
  background: #fff;
  border-radius: 2px;
  margin: 5px 12px;
}

/* MOBILE ONLY */
@media (max-width: 992px) {

  .nav-menu,
  .nav-cta {
    display: none !important;
  }

  .mobile-hamburger {
    display: flex;
  }
}

/* ============================= */
/* SIDEBAR */
/* ============================= */

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  z-index: 2000;

  background:
    linear-gradient(rgba(80, 10, 20, .96), rgba(40, 5, 10, .98)),
    url("../images/footer-texture.jpg") center/cover;

  backdrop-filter: blur(12px);

  transition: left .45s cubic-bezier(.77, 0, .18, 1);
  box-shadow: 10px 0 40px rgba(0, 0, 0, .45);
  overflow-y: auto;
}

.mobile-sidebar.active {
  left: 0;
}

/* ============================= */
/* HEADER */
/* ============================= */

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(200, 155, 60, .25);
}

.mobile-header img {
  height: 48px;
}

.mobile-close {
  background: none;
  border: none;
  font-size: 38px;
  color: #ffd98a;
  cursor: pointer;
}

/* ============================= */
/* LINKS */
/* ============================= */

.mobile-links {
  padding: 20px;
}

.mobile-links>a:not(.mobile-ticket),
.mobile-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 10px;
  color: #f5e6c8;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid rgba(200, 155, 60, .12);
  transition: .25s;
}

.mobile-links>a:hover,
.mobile-toggle:hover {
  color: #ffd98a;
  transform: translateX(4px);
}

/* ============================= */
/* ARROW */
/* ============================= */

.mobile-arrow {
  width: 7px;
  height: 7px;
  border-right: 2px solid #c89b3c;
  border-bottom: 2px solid #c89b3c;
  transform: rotate(45deg);
  transition: .3s;
}

.mobile-item.open .mobile-arrow {
  transform: rotate(-135deg);
}

/* ============================= */
/* SUBMENU */
/* ============================= */

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .65s ease;
  padding-left: 10px;
}

.mobile-item.open .mobile-submenu {
  max-height: 400px;
}

.mobile-submenu a {
  display: block;
  padding: 10px 0 10px 18px;
  color: #e8d7b5;
  text-decoration: none;
  font-size: 14px;
}

.mobile-submenu a:hover {
  color: #ffd98a;
}

/* ============================= */
/* MOBILE TICKET */
/* ============================= */

.mobile-ticket {
  display: inline-block;
  margin: 20px auto 0;
  padding: 10px 22px;
  border-radius: 30px;
  background: linear-gradient(to right, #c89b3c);
  color: #fff !important;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
}



/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

  .mobile-hamburger {
    display: block;
  }

  .nav-menu,
  .nav-cta {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .mobile-sidebar {
    width: 260px;
  }
}

/* MOBILE NAVBAR */
@media (max-width: 992px) {

  /* hide desktop menu */
  .nav-left,
  .nav-right {
    display: none;
  }

  /* wrapper layout */
  .nav-wrapper {

    justify-content: center;
    position: relative;

    width: 82%;
    max-width: 360px;

    padding: 14px 20px;
    height: 65px;

  }

  /* center logo */
  .logo {

    position: absolute;
    left: 50%;
    transform: translateX(-50%);

  }

  .logo img {
    height: 48px;
  }

  /* hamburger button */
  .mobile-hamburger {

    display: flex;

    position: absolute;
    right: 18px;

    width: 42px;
    height: 42px;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.15);

    flex-direction: column;
    justify-content: center;
    align-items: center;

    cursor: pointer;

  }

  /* hamburger lines */
  .mobile-hamburger span {

    width: 20px;
    height: 2px;

    background: #ffffff;

    margin: 3px 0;

    border-radius: 2px;

  }

}

/* .hero {
  position: relative;
  height: 100vh;
  height: auto;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
} */

.hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
}

/* Video */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

/* DARK OVERLAY */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.40),
      rgba(0, 0, 0, 0.30),
      rgba(0, 0, 0, 0.45));
  z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.hero-content,
.hero-video-controls {
  position: relative;
  z-index: 2;
}

.hero-supported {
  opacity: 0;
  transform: translateX(-60px);
  animation: slideFade 1s ease forwards;
  animation-delay: 0.4s;
}

.hero-text {
  opacity: 0;
  transform: translateX(-60px);
  animation: slideFade 1s ease forwards;
  animation-delay: 1.1s;
}



@keyframes slideFade {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width:768px) {

  .hero-content {
    margin-left: 5%;
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-supported {
    gap: 20px;
  }

  .supported-item img {
    height: 60px;
  }

}

.slide {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: none;
}

.slide.active {
  display: block;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 40px 40px;
  color: white;
}

/* Location badge */
.location-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
  font-size: 14px;
}

/* Title */
.hero h1 {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
  color: #f3e6c9;
}

.hero-gold {
  background: linear-gradient(to right, #f3e6c9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */
.hero p {
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 35px;
  color: #e7d8a3;
  font-weight: 600;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 14px 30px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

/* Primary Button */
.primary {
  background: linear-gradient(to right, #c89b3c, #8b1e1e);
  color: white;
}

.primary:hover {
  transform: translateY(-3px);
}

/* Secondary Button */
.secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
}

.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Content Container */
.hero-content {
  max-width: 600px;
  margin-left: 8%;
  /* adjust based on your design */
}

/*  Supported Logos */
.hero-supported {
  display: flex;
  align-items: center;
  gap: 30px;
  /* margin-top: 90px; */
  margin-top: 110px;
  margin-bottom: 18px;
}

/* Each logo block */
.supported-item {
  text-align: center;
}

.supported-item img {
  height: 90px;
}

.supported-item p {
  font-size: 12px;
  color: #e7d8a3;
  font-weight: 600;
  margin-top: 5px;
  letter-spacing: 1px;
}

/* Divider */
.divider {
  width: 2px;
  height: 70px;
  background: linear-gradient(to bottom, #d4af37, #7a0019);
}

/* =============================== */
/* TABLETS */
/* =============================== */
@media (max-width: 992px) {

  .hero {
    height: 100vh;
  }

  .hero-video {
    object-fit: cover;
  }

  .hero-content {
    margin-left: 5%;
    max-width: 500px;
    padding-top: 140px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-supported {
    margin-top: 70px;
    gap: 20px;
  }

  .supported-item img {
    height: 70px;
  }

  .divider {
    height: 60px;
  }

  .hero-buttons {
    gap: 14px;
  }

  .btn {
    padding: 12px 24px;
  }

}


/* =============================== */
/* MOBILE DEVICES */
/* =============================== */
@media (max-width:768px) {

  .hero {
    height: 100vh;
  }

  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-content {
    margin-left: 0;
    padding: 120px 24px 0 24px;
    max-width: 100%;
  }

  .hero-supported {
    margin-top: 45px;
    gap: 16px;
  }

  .supported-item img {
    height: 55px;
  }

  .supported-item p {
    font-size: 10px;
  }

  .divider {
    height: 50px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.15;
  }

  .hero p {
    font-size: 15px;
    max-width: 90%;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .btn {
    width: 210px;
    text-align: center;
  }

}


/* =============================== */
/* SMALL MOBILE */
/* =============================== */
@media (max-width:480px) {

  .hero-content {
    padding: 110px 18px 0 18px;
  }

  .hero-supported {
    gap: 12px;
  }

  .supported-item img {
    height: 48px;
  }

  .supported-item p {
    font-size: 9px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero p {
    font-size: 14px;
  }

  .btn {
    width: 190px;
    padding: 12px 20px;
    font-size: 13px;
  }

}


/* =============================== */
/* VERY SMALL SCREENS */
/* =============================== */
@media (max-width:360px) {

  .hero-supported {
    gap: 10px;
  }

  .supported-item img {
    height: 40px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 13px;
  }

  .btn {
    width: 170px;
    padding: 10px 18px;
  }

}

/* MOBILE */
@media (max-width:768px) {

  .hero-supported {
    margin-top: 35px;
    gap: 12px;
  }

  .supported-item img {
    height: 42px;
    /* smaller logo */
  }

  .supported-item p {
    font-size: 9px;
    line-height: 1.2;
    letter-spacing: 0.5px;
  }

  .divider {
    height: 40px;
  }

}

@media (max-width:480px) {

  .hero-supported {
    gap: 10px;
  }

  .supported-item img {
    height: 50px;
    margin-right: 8px;
  }

  .supported-item p {
    font-size: 8px;
  }

  .divider {
    height: 36px;
  }

}

.hero-video-controls {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.video-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);

  color: #fff;
  font-size: 20px;

  cursor: pointer;
  transition: all .25s ease;
}

.video-btn:hover {
  background: rgba(0, 0, 0, 0.55);
  transform: scale(1.05);
}

@media(max-width:768px) {

  .hero-video-controls {
    bottom: 18px;
    right: 18px;
  }

  .video-btn {
    width: 46px;
    height: 46px;
    font-size: 16px;
  }

}

/* EVENT SECTION */
.events-showcase {
  padding: 120px 8%;
  background: linear-gradient(to right, #8b1e1e, #5a1212);
  color: white;
}

.events-slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

/* slide layout */

.event-slide {
  display: none;
  align-items: center;
  gap: 80px;
}

.event-slide.active {
  display: flex;
}

/* image */

.event-image {
  flex: 1;
  height: 420px;
  /* fixed visual height */
  border-radius: 20px;
  overflow: hidden;
  /* keeps rounded corners clean */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* fills frame perfectly */
  display: block;
}

/* content */

.event-info {
  flex: 1;
}

.event-info h2 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 600;
}

.event-info p {
  font-size: 18px;
  line-height: 1.7;
  color: #e6d8c5;
  margin-bottom: 30px;
  max-width: 500px;
}

/* button */

.event-btn {
  padding: 14px 30px;
  border-radius: 30px;
  background: linear-gradient(to right, #c89b3c, #8b1e1e);
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: .3s;
}

.event-btn:hover {
  transform: translateY(-3px);
}

/* arrows */

.event-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 52px;
  height: 52px;

  border-radius: 50%;
  border: 1px solid rgba(200, 155, 60, 0.4);

  background: rgba(40, 10, 10, 0.6);
  backdrop-filter: blur(8px);

  color: #d4af37;
  font-size: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: all 0.3s ease;

  z-index: 5;
}

/* LEFT */
.event-arrow.prev {
  left: -90px;
}

/* RIGHT */
.event-arrow.next {
  right: -70px;
}

/* Hover */
.event-arrow:hover {
  background: linear-gradient(135deg, #c89b3c, #8b1e1e);
  color: white;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* dots */

.event-dots {
  margin-top: 40px;
  text-align: center;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #555;
  margin: 0 6px;
  cursor: pointer;
}

.dot.active {
  background: #c89b3c;
}

/* INITIAL STATE */

.event-slide .event-image,
.event-slide .event-info,
.event-slide .event-btn {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s ease;
}


/* WHEN ACTIVE */

.event-slide.show .event-image {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .1s;
}

.event-slide.show .event-info {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .3s;
}

.event-slide.show .event-btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .5s;
}

/* ===============================
   EVENTS SECTION — TABLET
================================ */
@media (max-width:1024px) {

  .events-showcase {
    padding: 100px 6%;
  }

  .event-slide {
    gap: 50px;
  }

  .event-info h2 {
    font-size: 38px;
  }

  .event-info p {
    font-size: 16px;
  }

  /* bring arrows inside */
  .event-arrow.prev {
    left: 10px;
  }

  .event-arrow.next {
    right: 10px;
  }

}

/* ===============================
   EVENTS SECTION — MOBILE
================================ */
@media (max-width:768px) {

  .events-showcase {
    padding: 80px 6%;
  }

  .event-slide {
    flex-direction: column;
    text-align: center;
    gap: 35px;
  }

  .event-image {
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
  }

  .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .event-info {
    width: 100%;
  }

  .event-info h2 {
    font-size: 32px;
  }

  .event-info p {
    font-size: 15px;
    margin: auto;
  }

  .event-btn {
    padding: 12px 26px;
  }

  /* arrows lower */
  .event-arrow {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

}

/* ===============================
   EVENTS SECTION — SMALL MOBILE
================================ */
@media (max-width:480px) {

  .events-showcase {
    padding: 70px 5%;
  }

  .event-slide {
    gap: 28px;
  }

  .event-info h2 {
    font-size: 26px;
  }

  .event-info p {
    font-size: 14px;
    line-height: 1.6;
  }

  .event-btn {
    font-size: 14px;
    padding: 11px 22px;
    margin-top: 30px;
  }

  .event-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-top: 200px;
  }

  .event-image {
    height: 230px;
  }

  .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

}

/* ===============================
   EVENTS SECTION — 360px DEVICES
================================ */
@media (max-width:360px) {

  .events-showcase {
    padding: 60px 5%;
  }

  .event-info h2 {
    font-size: 22px;
  }

  .event-info p {
    font-size: 13px;
  }

  .event-btn {
    font-size: 13px;
    padding: 10px 20px;
    margin-top: 20px;
  }

  .event-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
    margin-top: 150px;
  }

  .event-image {
    height: 200px;
  }

  .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

}

/* SECTION BACKGROUND */

.about-festival {
  padding: 20px 8%;
  /* background:linear-gradient(120deg,#6b1c1c,#8b1e1e); */
  background: #f3e6c9;
  position: relative;
  overflow: hidden;
}

/* CONTAINER */

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
  gap: 60px;
  margin-bottom: -26.5px;
}

/* LEFT CARD */

.about-card {
  background: #f5efe4;
  padding: 60px;
  border-radius: 18px;
  max-width: 650px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);

  opacity: 0;
  transform: translateX(80px);
  transition: all 2s ease;
}

/* LABEL */

.about-label {
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #8b1e1e;
  margin-bottom: 10px;
  display: block;
}

/* HEADING */

.about-card h2 {
  font-size: 42px;
  margin-bottom: 30px;
  color: #8b1e1e;
  font-weight: 600;
}

/* QUOTE */

.quote-icon {
  font-size: 60px;
  color: #c89b3c;
  margin-bottom: 20px;
  opacity: .5;
}

/* TEXT */

.about-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

/* BUTTON */

.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 26px;
  border-radius: 40px;

  border: 1px solid #8b1e1e;
  color: #8b1e1e;
  text-decoration: none;
  font-weight: 600;

  transition: .3s;
}

.about-btn:hover {
  background: linear-gradient(to right, #c89b3c, #8b1e1e);
  color: #fff;
  border: none;
}

/* RIGHT IMAGE */

.about-founder {
  position: relative;

  opacity: 0;
  transform: translateX(-80px);
  transition: all 1s ease;
}

.about-founder img {
  width: 600px;
  max-width: none;
  filter: drop-shadow(0 40px 50px rgba(0, 0, 0, 0.4));
}

/* ANIMATION ACTIVE */

.about-card.show {
  opacity: 1;
  transform: translateX(0);
}

.about-founder.show {
  opacity: 1;
  transform: translateX(0);
}

/* ===============================
   TABLETS / SMALL LAPTOPS
   =============================== */

@media (max-width:1200px) {

  .about-container {
    gap: 40px;
  }

  .about-card {
    padding: 45px;
  }

  .about-card h2 {
    font-size: 36px;
  }

  .about-founder img {
    width: 480px;
  }

}


/* ===============================
   TABLETS
   =============================== */

@media (max-width:992px) {

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-card {
    max-width: 100%;
    transform: translateY(60px);
  }

  .about-founder {
    transform: translateY(60px);
  }

  .about-founder img {
    width: 420px;
    margin-top: 10px;
  }

  .about-card.show {
    transform: translateY(0);
  }

  .about-founder.show {
    transform: translateY(0);
  }

}


/* ===============================
   MOBILE DEVICES
   =============================== */

@media (max-width:768px) {

  .about-festival {
    padding: 60px 6%;
  }

  .about-card {
    padding: 35px 28px;
    border-radius: 16px;
  }

  .about-label {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .about-card h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .about-card p {
    font-size: 15px;
    line-height: 1.7;
  }

  .quote-icon {
    font-size: 50px;
  }

  .about-founder img {
    width: 320px;
  }

  .about-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

}


/* ===============================
   SMALL PHONES
   =============================== */

@media (max-width:480px) {

  .about-festival {
    padding: 50px 5%;
  }

  .about-card {
    padding: 28px 22px;
  }

  .about-card h2 {
    font-size: 24px;
  }

  .about-card p {
    font-size: 14px;
  }

  .about-founder img {
    width: 360px;
    margin-bottom: -57px;
  }

  .quote-icon {
    font-size: 40px;
  }

  .about-btn {
    font-size: 13px;
    padding: 10px 20px;
  }

}

/*  BREEDERS REGISTRATION SECTION */
.breeders-section {
  position: relative;
  padding: 90px 6%;
  font-family: 'Poppins', sans-serif;

  /*  Landscape Festival Image */
  background: url("../images/horse_bg.jpg") center/cover no-repeat;
}

/*  DARK ROYAL OVERLAY */
.breeders-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(20, 10, 10, 0.30),
      rgba(20, 10, 10, 0.30));
}

/*  CONTENT CONTAINER */
.breeders-container {
  position: relative;
  z-index: 2;

  max-width: 1100px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;

  padding: 45px 50px;
  border-radius: 22px;

  /*  GLASS PREMIUM CARD */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);

  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(200, 155, 60, 0.35);
}

/*  TEXT */
.breeders-text h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;

  background: linear-gradient(to right, #e6cc90);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.breeders-text p {
  color: #e6e6e6;
  font-size: 18px;
}

/*  BUTTON */
.breeders-btn {
  display: inline-block;

  /*  Slim padding */
  padding: 12px 26px;

  border-radius: 28px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: white;

  /*  Prevent line break */
  white-space: nowrap;

  background: linear-gradient(to right, #c89b3c, #8b1e1e);

  box-shadow: 0 8px 18px rgba(139, 30, 30, 0.35);
  transition: 0.25s;
}


.breeders-btn:hover {
  transform: translateY(-3px) scale(1.04);
}

/* INITIAL STATE */

.breeders-text,
.breeders-action {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s ease;
}

/* WHEN VISIBLE */

.breeders-section.show .breeders-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .2s;
}

.breeders-section.show .breeders-action {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .4s;
}

/* =========================================
   LARGE TABLET (1200px ↓)
========================================= */
@media (max-width: 1200px) {

  .breeders-container {
    padding: 40px 40px;
    gap: 30px;
  }

  .breeders-text h2 {
    font-size: 30px;
  }

  .breeders-text p {
    font-size: 16px;
  }
}


/* =========================================
   TABLET (992px ↓)
    STACK LAYOUT
========================================= */
@media (max-width: 992px) {

  .breeders-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
  }

  .breeders-action {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .breeders-text h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .breeders-text p {
    font-size: 15px;
  }
}


/* =========================================
   MOBILE (768px ↓)
========================================= */
@media (max-width: 768px) {

  .breeders-section {
    padding: 70px 20px;
  }

  .breeders-container {
    padding: 32px 22px;
    border-radius: 18px;
    gap: 22px;
  }

  .breeders-text h2 {
    font-size: 22px;
  }

  .breeders-text p {
    font-size: 14px;
    line-height: 1.6;
  }

  .breeders-btn {
    padding: 11px 22px;
    font-size: 14px;
  }
}


/* =========================================
   SMALL MOBILE (480px ↓)
========================================= */
@media (max-width: 480px) {

  .breeders-section {
    padding: 60px 16px;
  }

  .breeders-container {
    padding: 26px 18px;
  }

  .breeders-text h2 {
    font-size: 20px;
  }

  .breeders-btn {
    width: 100%;
    /* full width on very small screens */
    max-width: 240px;
  }
}

/* FESTIVAL EXPERIENCE SECTION */
.experience-section {
  padding: 90px 6%;
  background: #fffaf2;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

/* Title */
.experience-section h2 {
  font-size: 44px;
  margin-bottom: 60px;
  font-weight: 500;
  color: #2b2b2b;
}

.experience-section h2 span {
  background: linear-gradient(to right, #c89b3c, #8b1e1e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* GRID */
.experience-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: auto;
}

/* CARD — PREMIUM */
.exp-card {
  padding: 34px 26px;
  border-radius: 20px;
  color: white;
  text-align: center;
  position: relative;

  background: linear-gradient(135deg, #8b1e1e, #c89b3c);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);

  transition: all 0.35s ease;
  overflow: hidden;
}


/* HOVER — ROYAL EFFECT */
.exp-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 25px 55px rgba(0, 0, 0, 0.28),
    0 8px 22px rgba(200, 155, 60, 0.45);
}

.exp-card:hover::before {
  opacity: 1;
  transform: translateX(100%);
}

/* Title */
.exp-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 700;
}

/* Text */
.exp-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #fff8e1;
}

/* GOLD STARS */
.exp-stars {
  margin-top: 22px;
  font-size: 30px;
  color: #ffd86b;
  letter-spacing: 6px;
}

/* HEADING ANIMATION */

.experience-section h2 {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s ease;
}

/* CARDS INITIAL */

.exp-card {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.9s ease;
}

/* STARS */

/* .exp-stars{
  color:#c89b3c;
  font-size:18px;
  letter-spacing:4px;
  display:inline-block;
} */

/* SECTION ACTIVE */

.experience-section.show h2 {
  opacity: 1;
  transform: translateY(0);
}

/* CARDS STAGGER EFFECT */

.experience-section.show .exp-card {
  opacity: 1;
  transform: translateY(0);
}

/* STARS SPIN */

/* .experience-section.show .exp-stars{
  animation:starSpin 6s linear infinite;
} */

/* SLOW ROTATION */

/* @keyframes starSpin{
  from{
    transform:rotate(0deg);
  }
  to{
    transform:rotate(360deg);
  }
} */

.experience-section.show .exp-card:nth-child(1) {
  transition-delay: .1s;
}

.experience-section.show .exp-card:nth-child(2) {
  transition-delay: .2s;
}

.experience-section.show .exp-card:nth-child(3) {
  transition-delay: .3s;
}

.experience-section.show .exp-card:nth-child(4) {
  transition-delay: .4s;
}

.experience-section.show .exp-card:nth-child(5) {
  transition-delay: .5s;
}

.experience-section.show .exp-card:nth-child(6) {
  transition-delay: .6s;
}

.experience-section.show .exp-card:nth-child(7) {
  transition-delay: .7s;
}

.experience-section.show .exp-card:nth-child(8) {
  transition-delay: .8s;
}

/* =========================================
   LARGE LAPTOP (1200px ↓)
   4 → 3 columns
========================================= */
@media (max-width: 1200px) {

  .experience-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .experience-section h2 {
    font-size: 38px;
  }
}


/* =========================================
   TABLET (992px ↓)
   3 → 2 columns
========================================= */
@media (max-width: 992px) {

  .experience-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .experience-section {
    padding: 80px 5%;
  }

  .experience-section h2 {
    font-size: 34px;
    margin-bottom: 45px;
  }

  .exp-card {
    padding: 30px 22px;
  }

  .exp-card h3 {
    font-size: 18px;
  }

  .exp-stars {
    font-size: 26px;
  }
}


/* =========================================
   MOBILE (768px ↓)
   2 → 1 column
========================================= */
@media (max-width: 768px) {

  .experience-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .experience-section {
    padding: 70px 20px;
  }

  .experience-section h2 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 36px;
  }

  .exp-card {
    padding: 26px 20px;
    border-radius: 18px;
  }

  .exp-card h3 {
    font-size: 17px;
  }

  .exp-card p {
    font-size: 14px;
  }

  .exp-stars {
    font-size: 24px;
    letter-spacing: 4px;
  }
}


/* =========================================
   SMALL MOBILE (480px ↓)
========================================= */
@media (max-width: 480px) {

  .experience-section {
    padding: 60px 16px;
  }

  .experience-section h2 {
    font-size: 24px;
  }

  .exp-card {
    padding: 22px 18px;
  }

  .exp-stars {
    font-size: 22px;
  }
}

/*  RESPONSIVE */
/* @media (max-width: 1100px) {
  .experience-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .experience-container {
    grid-template-columns: 1fr;
  }
} */

/* Heritage section */

.heritage-section {
  padding: 90px 6%;
  background: #fffaf2;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.heritage-title {
  font-size: 44px;
  margin-bottom: 60px;
  color: #6b0f1a;
  font-weight: 600;
}

.heritage-title span {
  color: #c89b3c;
  /* gold theme */

}

/* Layout */
.heritage-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Columns */
.heritage-col {
  width: 32%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Items */
.heritage-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #8b1e1e, #c89b3c);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.heritage-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15);
}

.star-icon {
  width: 26px;
  margin-top: 5px;
}

/* Text */
.heritage-item h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #ffffff;
}

.heritage-item p {
  font-size: 14px;
  color: #ffffff;
}

/* Center Horse */
.heritage-center {
  width: 36%;
  text-align: center;
}

.heritage-center img {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.25));
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .heritage-wrapper {
    flex-direction: column;
  }

  .heritage-col,
  .heritage-center {
    width: 100%;
  }

  .heritage-title {
    font-size: 30px;
  }
}

.heritage-center {
  position: relative;
  width: 380px;
  height: 380px;
  margin: auto;
}

/* Horse */
.horse-img {
  width: 100%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.25));
}

/* Star ring */
.star-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* Stars auto-placed in circle */
.star-ring span {
  position: absolute;
  left: 50%;
  top: 45%;
  font-size: 22px;
  color: #c89b3c;
  /* GOLD */

  transform:
    rotate(calc(18deg * var(--i)))
    /* 360 / 20 = 18deg */
    translate(200px)
    /* circle radius */
    rotate(calc(-18deg * var(--i)));
  /* keep upright */
}

/* TITLE INITIAL STATE */

.heritage-title {
  opacity: 0;
  transform: translateY(60px);
  transition: all .9s ease;
}

/* HERITAGE ITEMS INITIAL */

.heritage-item {
  opacity: 0;
  transform: translateY(60px);
  transition: all .8s ease;
}

/* ACTIVE STATE */

.heritage-section.show .heritage-title {
  opacity: 1;
  transform: translateY(0);
}

.heritage-section.show .heritage-item {
  opacity: 1;
  transform: translateY(0);
}

/* LEFT COLUMN */

.heritage-section.show .left .heritage-item:nth-child(1) {
  transition-delay: .2s;
}

.heritage-section.show .left .heritage-item:nth-child(2) {
  transition-delay: .35s;
}

.heritage-section.show .left .heritage-item:nth-child(3) {
  transition-delay: .5s;
}

.heritage-section.show .left .heritage-item:nth-child(4) {
  transition-delay: .65s;
}

.heritage-section.show .left .heritage-item:nth-child(5) {
  transition-delay: .8s;
}

.heritage-section.show .left .heritage-item:nth-child(6) {
  transition-delay: .95s;
}

/* RIGHT COLUMN */

.heritage-section.show .right .heritage-item:nth-child(1) {
  transition-delay: .3s;
}

.heritage-section.show .right .heritage-item:nth-child(2) {
  transition-delay: .45s;
}

.heritage-section.show .right .heritage-item:nth-child(3) {
  transition-delay: .6s;
}

.heritage-section.show .right .heritage-item:nth-child(4) {
  transition-delay: .75s;
}

.heritage-section.show .right .heritage-item:nth-child(5) {
  transition-delay: .9s;
}

.heritage-section.show .right .heritage-item:nth-child(6) {
  transition-delay: 1.05s;
}

/* =========================================
   LARGE TABLET (1200px ↓)
========================================= */
@media (max-width: 1200px) {

  .heritage-wrapper {
    gap: 22px;
  }

  .heritage-col {
    gap: 22px;
  }

  .heritage-item h4 {
    font-size: 16px;
  }

  .heritage-item p {
    font-size: 13px;
  }
}


/* =========================================
   TABLET (992px ↓)
   stack layout cleanly
========================================= */
@media (max-width: 992px) {

  .heritage-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .heritage-col {
    width: 100%;
    max-width: 650px;
    margin: auto;
  }

  .heritage-center {
    width: 320px;
    height: 320px;
    order: -1;
    /* horse comes on top — premium look */
  }

  .heritage-title {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .star-ring span {
    font-size: 18px;
    transform:
      rotate(calc(18deg * var(--i))) translate(165px) rotate(calc(-18deg * var(--i)));
  }
}


/* =========================================
   MOBILE (768px ↓)
========================================= */
@media (max-width: 768px) {

  .heritage-section {
    padding: 70px 20px;
  }

  .heritage-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .heritage-item {
    padding: 16px;
    gap: 14px;
  }

  .star-icon {
    width: 22px;
  }

  .heritage-item h4 {
    font-size: 15px;
  }

  .heritage-item p {
    font-size: 13px;
  }

  .heritage-center {
    width: 260px;
    height: 260px;
  }

  .star-ring span {
    font-size: 15px;
    transform:
      rotate(calc(18deg * var(--i))) translate(135px) rotate(calc(-18deg * var(--i)));
  }
}


/* =========================================
   SMALL MOBILE (480px ↓)
========================================= */
@media (max-width: 480px) {

  .heritage-section {
    padding: 60px 16px;
  }

  .heritage-title {
    font-size: 22px;
  }

  .heritage-center {
    width: 220px;
    height: 220px;
  }

  .star-ring span {
    font-size: 13px;
    transform:
      rotate(calc(18deg * var(--i))) translate(110px) rotate(calc(-18deg * var(--i)));
  }

  .heritage-item {
    padding: 14px;
  }
}

/*  TRAILER SECTION */
.trailer-section {
  padding: 90px 6%;
  background: linear-gradient(to right, #8b1e1e, #5a1212);
  font-family: 'Poppins', sans-serif;
}

/*  CONTAINER */
.trailer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/*  VIDEO */
.trailer-video iframe {
  width: 100%;
  height: 360px;
  border-radius: 18px;

  /* Premium frame */
  border: 4px solid #c89b3c;

  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.35),
    0 0 0 4px rgba(200, 155, 60, 0.25);
}

/*  CONTENT */
.trailer-content h2 {
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 6px;
}

.trailer-content h3 {
  color: #c89b3c;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 22px;
}

.trailer-content p {
  color: #f3e6c9;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}

/*  BUTTON */
.trailer-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  color: #ffffff;

  background: linear-gradient(to right, #c89b3c, #8b1e1e);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.trailer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.4);
}

/* ================================
   TRAILER SECTION ANIMATION
================================ */

/* VIDEO SIDE - start from LEFT */

.trailer-video {
  opacity: 0;
  transform: translateX(-80px);
  transition: all .9s ease;
}

/* TEXT SIDE - start from RIGHT */

.trailer-content {
  opacity: 0;
  transform: translateX(80px);
  transition: all .9s ease;
}

/* ACTIVE STATE */

.trailer-section.show .trailer-video {
  opacity: 1;
  transform: translateX(0);
}

.trailer-section.show .trailer-content {
  opacity: 1;
  transform: translateX(0);
}

.trailer-section.show .trailer-content {
  transition-delay: .25s;
}

/* =========================================
   LARGE TABLET (1200px ↓)
========================================= */
@media (max-width: 1200px) {

  .trailer-container {
    gap: 40px;
  }

  .trailer-video iframe {
    height: 320px;
  }

  .trailer-content h2 {
    font-size: 34px;
  }

  .trailer-content h3 {
    font-size: 36px;
  }
}


/* =========================================
   TABLET (992px ↓)
   stack nicely
========================================= */
@media (max-width: 992px) {

  .trailer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .trailer-video {
    order: -1;
    /* video on top — premium look */
  }

  .trailer-video iframe {
    height: 340px;
    max-width: 720px;
    margin: auto;
    display: block;
  }

  .trailer-content h2 {
    font-size: 32px;
  }

  .trailer-content h3 {
    font-size: 34px;
  }

  .trailer-content p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* =========================================
   MOBILE (768px ↓)
========================================= */
@media (max-width: 768px) {

  .trailer-section {
    padding: 70px 20px;
  }

  .trailer-video iframe {
    height: 260px;
    border-width: 3px;
  }

  .trailer-content h2 {
    font-size: 26px;
  }

  .trailer-content h3 {
    font-size: 28px;
  }

  .trailer-content p {
    font-size: 15px;
  }

  .trailer-btn {
    padding: 12px 26px;
    font-size: 14px;
  }
}


/* =========================================
   SMALL MOBILE (480px ↓)
========================================= */
@media (max-width: 480px) {

  .trailer-section {
    padding: 60px 16px;
  }

  .trailer-video iframe {
    height: 220px;
    border-radius: 14px;
  }

  .trailer-content h2 {
    font-size: 22px;
  }

  .trailer-content h3 {
    font-size: 24px;
  }

  .trailer-content p {
    font-size: 14px;
  }

  .trailer-btn {
    padding: 11px 22px;
    font-size: 13px;
  }
}

.reach-section {
  background: #fffaf2;
  padding: 80px 20px;
  text-align: center;
}

.reach-title {
  font-size: 42px;
  color: #6b0f1a;
  /* maroon */
  margin-bottom: 50px;
  font-weight: 700;
}

.reach-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.reach-card {
  /* background: #ffffff; */
  background: linear-gradient(to right, #c89b3c, #8b1e1e);
  border-radius: 18px;
  padding: 35px 30px;
  width: 320px;
  text-align: left;
  border: 2px solid #d4af37;
  /* gold */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;

}

.reach-card:hover {
  /* transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15); */
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.2),
    0 8px 18px rgba(139, 30, 30, 0.35);
}

/* HEADER */
.reach-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.reach-header h3 {
  color: #ffffff;
  font-size: 24px;
  letter-spacing: 1px;
}

/* ICON */
.reach-icon {
  background: linear-gradient(135deg, #6b0f1a, #a4161a);
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 2px solid #d4af37;
}

/* SUBTITLE */
.reach-sub {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 15px;
}

/* LIST */
.reach-card ul {
  list-style: none;
  padding: 0;
}

.reach-card li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed #ddd;
  font-size: 15px;
}

.reach-card li span {
  color: #ffffff;
}

.reach-card li b {
  color: #ffffff;
}

/* STAR BETWEEN CARDS */
.event-star {
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-star img {
  width: 45px;
  height: 45px;
}

/* =================================
   REACH SECTION SCROLL ANIMATION
================================= */

/* TITLE INITIAL STATE */
.reach-title {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

/* CARD INITIAL STATE */
.reach-card {
  opacity: 0;
  transform: translateY(70px);
  transition: all 0.8s ease;
}

/* STAR INITIAL STATE */
.reach-section .event-star {
  opacity: 0;
  transform: translateY(70px);
  transition: all 0.8s ease;
}

/* ACTIVE STATE */
.reach-title.show {
  opacity: 1;
  transform: translateY(0);
}

.reach-card.show {
  opacity: 1;
  transform: translateY(0);
}

.reach-section .event-star.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   TABLET (max-width: 992px)
================================ */
@media (max-width: 992px) {

  .reach-title {
    font-size: 36px;
  }

  .reach-container {
    gap: 25px;
  }

  .reach-card {
    width: 280px;
    padding: 30px 25px;
  }

  .reach-header h3 {
    font-size: 22px;
  }

}


/* ===============================
   MOBILE (max-width: 768px)
================================ */
@media (max-width: 768px) {

  .reach-section {
    padding: 60px 15px;
  }

  .reach-title {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .reach-container {
    flex-direction: column;
    align-items: center;
    gap: 35px;
  }

  .reach-card {
    width: 100%;
    max-width: 360px;
    text-align: left;
  }

  .reach-header {
    gap: 12px;
  }

  .reach-header h3 {
    font-size: 20px;
  }

  .reach-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .reach-card li {
    font-size: 14px;
  }

  /* Hide decorative stars on mobile */
  .event-star {
    display: none;
  }

}


/* ===============================
   SMALL MOBILE (max-width: 480px)
================================ */
@media (max-width: 480px) {

  .reach-title {
    font-size: 26px;
  }

  .reach-card {
    padding: 25px 20px;
  }

  .reach-card li {
    font-size: 13px;
  }

}

.sponsor-section {
  background: #fffaf2;
  padding: 90px 20px;
  text-align: center;
}

/* TITLES */
.sponsor-title {
  font-size: 44px;
  color: #6b0f1a;
  margin-bottom: 50px;
  font-weight: 700;
}

.prev-title {
  font-size: 34px;
  color: #6b0f1a;
  margin: 70px 0 40px;
}

/* TOP PARTNERS */
.partner-row {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.partner-card {
  background: white;
  padding: 30px 40px;
  border-radius: 18px;
  border: 2px solid #d4af37;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  width: 260px;
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.partner-card img {
  max-width: 160px;
  margin-bottom: 15px;
}

.partner-card p {
  color: #6b0f1a;
  font-weight: 600;
}

/* ===== AUTO SLIDER ===== */

.sponsor-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 20px;
}

.slide-track {
  display: flex;
  gap: 60px;
  width: calc(250px * 14);
  animation: scroll 30s linear infinite;
}

.slide-track img {
  width: 160px;
  height: auto;
  /* filter: grayscale(100%); */
  opacity: 0.8;
  transition: 0.3s;
}

.slide-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

/* ANIMATION */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================= */
/* RESPONSIVE DESIGN */
/* ============================= */

/* ---------- Large Tablets (1024px) ---------- */
@media (max-width: 1024px) {

  .sponsor-title {
    font-size: 38px;
  }

  .prev-title {
    font-size: 28px;
  }

  .partner-row {
    gap: 30px;
  }

  .partner-card {
    width: 220px;
    padding: 25px 30px;
  }

  .slide-track {
    gap: 40px;
  }

  .slide-track img {
    width: 140px;
  }
}


/* ---------- Tablets (768px) ---------- */
@media (max-width: 768px) {

  .sponsor-section {
    padding: 70px 15px;
  }

  .sponsor-title {
    font-size: 32px;
    margin-bottom: 35px;
  }

  .prev-title {
    font-size: 24px;
    margin: 50px 0 30px;
  }

  .partner-row {
    gap: 25px;
  }

  .partner-card {
    width: 200px;
    padding: 22px 25px;
  }

  .partner-card img {
    max-width: 130px;
  }

  .slide-track {
    gap: 30px;
  }

  .slide-track img {
    width: 120px;
  }
}


/* ---------- Mobile Large (480px) ---------- */
@media (max-width: 480px) {

  .sponsor-section {
    padding: 60px 12px;
  }

  .sponsor-title {
    font-size: 26px;
  }

  .prev-title {
    font-size: 20px;
  }

  .partner-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .partner-card {
    width: 90%;
    max-width: 280px;
    padding: 20px;
  }

  .partner-card img {
    max-width: 120px;
  }

  .slide-track {
    gap: 20px;
  }

  .slide-track img {
    width: 100px;
  }
}


/* ---------- Small Mobile (360px) ---------- */
@media (max-width: 360px) {

  .sponsor-title {
    font-size: 22px;
  }

  .prev-title {
    font-size: 18px;
  }

  .slide-track img {
    width: 85px;
  }
}


/* ===== BROCHURE SECTION ===== */
.brochure-section {
  position: relative;
  width: 100%;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Background Video */

.brochure-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.brochure-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.35));

  z-index: 2;
}

/* Content */
.brochure-content {
  position: relative;
  z-index: 3;
  color: #fff;
  max-width: 900px;
  padding: 20px;
}

/* Heading */
.brochure-content h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

/* Premium Button */
.brochure-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  color: white;

  background: linear-gradient(to right, #c89b3c, #8b1e1e);
  box-shadow: 0 12px 30px rgba(139, 30, 30, 0.35);
  transition: all 0.35s ease;
}

/* Hover */
.brochure-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(139, 30, 30, 0.5);
}

/* ============================= */
/* BROCHURE RESPONSIVE */
/* ============================= */

/* ---------- Large Tablets (1024px) ---------- */
@media (max-width: 1024px) {

  .brochure-section {
    min-height: 300px;
  }

  .brochure-content h2 {
    font-size: 36px;
  }

  .brochure-btn {
    padding: 13px 32px;
  }
}


/* ---------- Tablets (768px) ---------- */
@media (max-width: 768px) {

  .brochure-section {
    min-height: 260px;
    padding: 40px 15px;
  }

  .brochure-content {
    max-width: 600px;
  }

  .brochure-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .brochure-btn {
    padding: 12px 28px;
    font-size: 15px;
  }
}


/* ---------- Mobile Large (480px) ---------- */
@media (max-width: 480px) {

  .brochure-section {
    min-height: 220px;
    padding: 35px 12px;
  }

  .brochure-content h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .brochure-btn {
    padding: 11px 24px;
    font-size: 14px;
    border-radius: 30px;
  }
}


/* ---------- Small Mobile (360px) ---------- */
@media (max-width: 360px) {

  .brochure-content h2 {
    font-size: 20px;
  }

  .brochure-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* ===== FOOTER BASE ===== */
.site-footer {
  position: relative;
  background: linear-gradient(to right, #8b1e1e);
  color: #f5e6c8;
  overflow: hidden;
}

/* subtle luxury overlay */
.footer-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(198, 162, 90, .15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(198, 162, 90, .12), transparent 40%);
  pointer-events: none;
}

.site-footer .container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px 60px;
  position: relative;
  z-index: 2;
}

/* ===== GRID ===== */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr;
  gap: 60px;
}

/* ===== LOGO ===== */
.footer-logo {
  width: 170px;
  margin-bottom: 20px;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .4));
}

.footer-about p {
  line-height: 1.8;
  font-size: 15px;
  color: #e8d7b5;
}

/* ===== HEADINGS ===== */
.footer-links h4,
.footer-contact h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #e4c98a;
  letter-spacing: .5px;
  position: relative;
}

/* gold luxury underline */
.footer-links h4::after,
.footer-contact h4::after {
  content: "";
  width: 55px;
  height: 3px;
  background: linear-gradient(90deg, #c6a25a, #f0d89a);
  display: block;
  margin-top: 10px;
  border-radius: 3px;
}

/* ===== LINKS ===== */
.links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 26px;
  row-gap: 0;
  align-items: start;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #f3e4c6;
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .25s ease;
}

/* subtle gold dot instead of jumpy star */
.footer-links a::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #c6a25a;
  border-radius: 50%;
  display: inline-block;
  opacity: .7;
  transition: all .25s ease;
}

.footer-links a:hover {
  color: #ffd98a;
  transform: translateX(4px);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: scale(1.2);
}

/* ===== CONTACT ===== */
.footer-contact p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #e8d7b5;
}

.footer-contact i {
  color: #c6a25a;
  margin-right: 10px;
}

.footer-contact a {
  color: #ffd98a;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* ===== BOTTOM BAR ===== */
.footer-bottom {
  background: #e6ce9d;
  text-align: center;
  padding: 18px;
  font-size: 14px;
  letter-spacing: .3px;
}


.footer-bottom span {
  color: #8b1e1e;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  /* controls space between text */
  flex-wrap: wrap;
}

.footer-bottom p {
  color: #8b1e1e;
  font-weight: 500;
  margin: 0;
}

.footer-credit {
  color: #8b1e1e;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-credit:hover {
  color: #c89b3c;
  /* gold hover */
}


/* ============================= */
/* ===== TABLET (992px) ======== */
/* ============================= */

@media (max-width: 992px) {

  .site-footer .container {
    padding: 70px 20px 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-about {
    grid-column: span 2;
  }

  .footer-logo {
    width: 150px;
  }
}


/* ============================= */
/* ===== LARGE PHONES (768px) === */
/* ============================= */

@media (max-width: 768px) {

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-about {
    grid-column: auto;
  }

  .links-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 20px;
  }

  .footer-logo {
    width: 140px;
  }

  .footer-about p,
  .footer-contact p,
  .footer-links a {
    font-size: 14px;
  }
}


/* ============================= */
/* ===== SMALL PHONES (480px) === */
/* ============================= */

@media (max-width: 480px) {

  .site-footer .container {
    padding: 55px 18px 40px;
  }

  .links-grid {
    grid-template-columns: 1fr;
    /* stack links in single column */
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 18px;
  }

  .footer-about p,
  .footer-contact p,
  .footer-links a {
    font-size: 13px;
  }

  .footer-logo {
    width: 120px;
  }

  .footer-bottom {
    padding: 14px 10px;
    font-size: 12px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 4px;
  }
}


/* ============================= */
/* ===== EXTRA SMALL (360px) ==== */
/* ============================= */

@media (max-width: 360px) {

  .footer-logo {
    width: 105px;
  }

  .footer-links a {
    font-size: 12px;
  }

  .footer-about p,
  .footer-contact p {
    font-size: 12px;
  }

  .footer-bottom {
    font-size: 11px;
  }
}


/* =========================================
   ABOUT HERO SECTION
========================================= */

.about-hero {
  position: relative;
  height: 500px;
  /* background: linear-gradient(135deg, #e8d8a8, #f4ecd3); */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* VIDEO BACKGROUND */
.about-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* DARK OVERLAY */
.about-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.35));
  z-index: 2;
}

/* HORSE IMAGE LEFT */
.about-hero-img {
  position: absolute;
  left: 0;
  bottom: 0;
}

.about-hero-img img {
  height: 360px;
  object-fit: contain;
}

/* CENTER CONTENT */
.about-hero-content {
  text-align: center;
  z-index: 2;
  margin-top: 70px;
}

.about-hero-content h1 {
  font-size: 48px;
  color: #f3e6c9;
  font-weight: 700;
  letter-spacing: 1px;
}

/* GOLD LINE */
.hero-line {
  width: 70px;
  height: 4px;
  background: linear-gradient(to right, #c89b3c, #8b1e1e);
  margin: 16px auto 0;
  border-radius: 3px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:768px) {

  .about-hero {
    height: 450px;
  }

  .about-hero-content {
    margin-top: 40px;
  }

  .about-hero-content h1 {
    font-size: 34px;
  }

  .hero-line {
    width: 55px;
  }

  .breadcrumb {
    font-size: 13px;
  }

}

@media (max-width:480px) {

  .about-hero {
    height: 400px;
  }

  .about-hero-content h1 {
    font-size: 28px;
  }

}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
}

.breadcrumb a {
  color: #f3e6c9;
  text-decoration: none;
}

.breadcrumb i {
  color: #d4af37;
  /* gold */
  font-size: 18px;
}

.breadcrumb span {
  color: #f3e6c9;
  font-weight: 600;
}

/* ===============================
   VISION & MISSION SECTION
================================ */
.vision-mission {
  background: linear-gradient(135deg, #f6edd9, #efe2c0);
  padding: 90px 20px;
}

.vm-container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.vm-title {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  color: #8b1e1e;
  /* dark royal blue like reference */
  margin-bottom: 60px;
  position: relative;
}

/* GOLD UNDERLINE */
.vm-title::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(to right, #c89b3c, #8b1e1e);
  display: block;
  margin: 14px auto 0;
  border-radius: 2px;
}

/* GRID */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

/* COLUMN STYLE */
.vm-column {
  background: #fffaf0;
  padding: 40px 35px;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(200, 155, 60, 0.25);
}

/* LIST */
.vm-column ul {
  padding-left: 20px;
}

.vm-column li {
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  position: relative;
}

/* PREMIUM BULLETS (GOLD DOT) */
.vm-column li::marker {
  color: #c89b3c;
  font-size: 18px;
}

/* ===============================
   TABLET (992px ↓)
================================ */
@media (max-width: 992px) {

  .vision-mission {
    padding: 80px 20px;
  }

  .vm-title {
    font-size: 32px;
  }

  .vm-grid {
    grid-template-columns: 1fr;
    /* STACK */
    gap: 40px;
  }

  .vm-column {
    padding: 32px 26px;
  }

  .vm-column li {
    font-size: 15.5px;
  }
}

/* ===============================
   MOBILE (768px ↓)
================================ */
@media (max-width: 768px) {

  .vision-mission {
    padding: 65px 18px;
  }

  .vm-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .vm-title::after {
    width: 70px;
    height: 3px;
  }

  .vm-column {
    padding: 26px 22px;
    border-radius: 14px;
  }

  .vm-column li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 14px;
  }
}

/* ===============================
   SMALL MOBILE (480px ↓)
================================ */
@media (max-width: 480px) {

  .vision-mission {
    padding: 55px 14px;
  }

  .vm-title {
    font-size: 22px;
  }

  .vm-column {
    padding: 22px 18px;
  }

  .vm-column li {
    font-size: 14.5px;
  }
}

/* ===============================
   EVOLUTION SECTION
================================ */
.evolution {
  background: linear-gradient(135deg, #faf3e0, #f3e4c1);
  padding: 110px 20px;
  position: relative;
}

/* subtle royal texture feel */
.evolution::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(200, 155, 60, 0.08), transparent 60%);
  pointer-events: none;
}

.evo-container {
  max-width: 1050px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* TITLE */
.evo-title {
  font-size: 44px;
  font-weight: 700;
  color: #8b1e1e;
  line-height: 1.3;
}

.evo-title span {
  display: block;
  font-weight: 600;
}

/* GOLD DIVIDER */
.evo-divider {
  width: 110px;
  height: 4px;
  background: linear-gradient(to right, #c89b3c, #8b1e1e);
  margin: 26px auto 50px;
  border-radius: 3px;
}

/* TEXT BLOCK */
.evo-text {
  font-size: 18px;
  line-height: 1.9;
  color: #444;
}

.evo-text p {
  margin-bottom: 28px;
}

@media (max-width: 992px) {
  .evo-title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .evolution {
    padding: 80px 18px;
  }

  .evo-title {
    font-size: 26px;
  }

  .evo-text {
    font-size: 16px;
  }
}

/* ===============================
   SARANGKHEDA INFO SECTION
================================ */

.sarangkheda-info {
  background: #fffaf2;
  padding: 100px 20px;
  text-align: center;
}

.si-container {
  max-width: 1100px;
  margin: auto;
}

/* TITLE */
.si-title {
  font-size: 44px;
  font-weight: 700;
  color: #8b1e1e;
  margin-bottom: 10px;
  position: relative;
}

/* GOLD UNDERLINE */
.si-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #c89b3c, #8b1e1e);
  display: block;
  margin: 14px auto 0;
  border-radius: 2px;
}

/* TAGLINE */
.si-tagline {
  font-size: 20px;
  font-weight: 600;
  color: #7a0f0f;
  margin: 20px 0 10px;
}

/* TEXT */
.si-text {
  font-size: 17px;
  color: #444;
  max-width: 750px;
  margin: auto;
  line-height: 1.7;
}

/* IMAGE WRAPPER */
.si-image-wrapper {
  position: relative;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MAIN IMAGE */
.si-image img {
  width: 100%;
  max-width: 900px;
  border-radius: 26px;
  border: 6px solid #c89b3c;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

/* DECORATIVE STARS */
.si-stars {
  position: absolute;
  font-size: 26px;
  letter-spacing: 8px;
  writing-mode: vertical-rl;
}

/* LEFT SIDE */
.si-stars.left {
  left: -50px;
  color: #7a0f0f;
  ;
}

/* RIGHT SIDE */
.si-stars.right {
  right: -50px;
  color: #c89b3c;
}

/* ===============================
   TABLET
================================ */
@media (max-width: 992px) {

  .si-title {
    font-size: 36px;
  }

  .si-stars {
    display: none;
    /* hide stars for cleaner tablet look */
  }
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {

  .sarangkheda-info {
    padding: 70px 20px;
  }

  .si-title {
    font-size: 28px;
  }

  .si-tagline {
    font-size: 18px;
  }

  .si-text {
    font-size: 15px;
  }

  .si-image img {
    border-width: 4px;
  }
}

/* ===============================
   SMALL MOBILE (480px ↓)
================================ */
@media (max-width: 480px) {

  .sarangkheda-info {
    padding: 55px 14px;
  }

  .si-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .si-title::after {
    width: 60px;
    height: 3px;
  }

  .si-tagline {
    font-size: 16px;
    margin: 14px 0 8px;
  }

  .si-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .si-image-wrapper {
    margin-top: 30px;
  }

  .si-image img {
    border-radius: 18px;
    border-width: 3px;
  }

  /* Ensure stars don't overflow */
  .si-stars {
    display: none;
  }
}

/* ===============================
   SARANGKHEDA EXTENDED INFO
================================ */
.sarangkheda-extended {
  background: #fffaf2;
  padding: 80px 20px;
}

.se-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* TEXT */
.se-text p {
  font-size: 17px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 22px;
}

/* IMAGE */
.se-image img {
  width: 100%;
  border-radius: 24px;
  border: 5px solid #c89b3c;
  /* gold */
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

@media (max-width: 992px) {

  .se-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .se-image {
    max-width: 650px;
    margin: auto;
  }
}

/* ============================= */
/* TOURIST SECTION PREMIUM */
/* ============================= */

.tourist-section {
  background: #fffaf2;
  padding: 100px 8%;
  font-family: 'Poppins', sans-serif;
}

.tourist-title {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  color: #8b1e1e;
  margin-bottom: 70px;
}

.tourist-title span {
  background: linear-gradient(to right, #c89b3c, #8b1e1e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GRID */
.tourist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 60px;
}

/* CARD */
.tourist-card {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  padding: 30px;
  border-radius: 20px;
  background: white;
  border: 2px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.tourist-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.12),
    0 10px 25px rgba(139, 30, 30, 0.25);
}



.tourist-card:hover::before {
  opacity: 1;
  left: 100%;
}

/* IMAGE */
.tourist-img img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #d4af37;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* CONTENT */
.tourist-content h3 {
  font-size: 22px;
  color: #8b1e1e;
  margin-bottom: 12px;
}

.tourist-content h3 span {
  color: #c89b3c;
  font-weight: 500;
  font-size: 16px;
}

.tourist-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

/* Tablet */
@media (max-width: 992px) {

  .tourist-title {
    font-size: 36px;
  }

  .tourist-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

}

/* Mobile */
@media (max-width: 600px) {

  .tourist-section {
    padding: 70px 5%;
  }

  .tourist-title {
    font-size: 28px;
    margin-bottom: 50px;
  }

  .tourist-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .tourist-img img {
    width: 100px;
    height: 100px;
  }

  .tourist-content h3 {
    font-size: 18px;
  }

  .tourist-content p {
    font-size: 14px;
  }
}

/* ===============================
   DIRECTOR SECTION
================================ */

.director-section {
  padding: 20px 8%;
  background: #f3e6c9;
  position: relative;
  overflow: hidden;
}

.director-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
  gap: 60px;
  margin-bottom: -26.5px;
}

/* IMAGE SIDE */

.director-image {
  position: relative;

  opacity: 0;
  transform: translateX(-80px);
  transition: all 1s ease;
}

.director-image img {
  width: 600px;
  max-width: none;
  filter: drop-shadow(0 40px 50px rgba(0, 0, 0, 0.4));
}

/* CONTENT CARD */

.director-content {
  background: #f5efe4;
  padding: 60px;
  border-radius: 18px;
  max-width: 650px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);

  opacity: 0;
  transform: translateX(80px);
  transition: all 1.2s ease;
}

/* SUBTITLE */

.director-sub {
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #8b1e1e;
  margin-bottom: 10px;
}

/* TITLE */

.director-title {
  font-size: 40px;
  margin-bottom: 30px;
  color: #8b1e1e;
  font-weight: 600;
}

/* TEXT */

.director-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

/* SIGNATURE */

.director-sign {
  margin-top: 25px;
}

.director-sign h4 {
  font-size: 18px;
  color: #8b1e1e;
  margin-bottom: 4px;
}

.director-sign span {
  font-size: 14px;
  color: #666;
}

/* ANIMATION ACTIVE */

.director-image.show {
  opacity: 1;
  transform: translateX(0);
}

.director-content.show {
  opacity: 1;
  transform: translateX(0);
}

/* QUOTE ICON */

.director-quote {
  font-size: 48px;
  color: #c89b3c;
  /* luxury gold */

  margin-bottom: 15px;
  opacity: .6;
}

/* Optional subtle decoration */

.director-quote i {
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.2));
}

@media (max-width:1200px) {

  .director-container {
    gap: 40px;
  }

  .director-content {
    padding: 45px;
  }

  .director-title {
    font-size: 34px;
  }

  .director-image img {
    width: 480px;
  }

}

@media (max-width:992px) {

  .director-container {
    flex-direction: column;
    text-align: center;
  }

  .director-content {
    max-width: 100%;
    transform: translateY(60px);
  }

  .director-image {
    transform: translateY(60px);
  }

  .director-image img {
    width: 420px;
    margin-top: 10px;
  }

  .director-content.show {
    transform: translateY(0);
  }

  .director-image.show {
    transform: translateY(0);
  }

}

@media (max-width:768px) {

  .director-section {
    padding: 60px 6%;
  }

  .director-content {
    padding: 35px 28px;
    border-radius: 16px;
  }

  .director-title {
    font-size: 28px;
  }

  .director-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .director-image img {
    width: 320px;
  }

}

@media (max-width:480px) {

  .director-section {
    padding: 50px 5%;
  }

  .director-content {
    padding: 28px 22px;
  }

  .director-title {
    font-size: 24px;
  }

  .director-text {
    font-size: 14px;
  }

  .director-image img {
    width: 360px;
    margin-bottom: -50px;
  }

}

/* ===== EQUINE SECTION ===== */
.equine-section {
  background: linear-gradient(to bottom, #fffaf2, #f9f6f1);
  padding: 100px 8%;
  font-family: 'Poppins', sans-serif;
}

/* container */
.equine-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* ===== IMAGE ===== */
.equine-image img {
  width: 100%;
  border-radius: 26px;
  border: 4px solid #d4af37;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.18),
    0 10px 30px rgba(139, 30, 30, 0.25);
  transition: 0.4s ease;
}

.equine-image img:hover {
  transform: scale(1.03);
}

/* ===== CONTENT ===== */
/* ===== SECTION MAIN TITLE ===== */
.equine-title-main {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  color: #8b1e1e;
  margin-bottom: 70px;
  position: relative;
}

/* luxury underline */
.equine-title-main::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(to right, #c89b3c, #8b1e1e);
  display: block;
  margin: 14px auto 0;
  border-radius: 10px;
}

.equine-subtitle {
  font-size: 42px;
  font-weight: 700;
  color: #c89b3c;
  margin-bottom: 20px;
}

.equine-text {
  font-size: 17px;
  color: #5a5a5a;
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 520px;
}

/* stars */
.equine-stars {
  font-size: 28px;
  letter-spacing: 8px;
  background: linear-gradient(to right, #c89b3c, #8b1e1e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1024px) {

  .equine-container {
    gap: 50px;
    grid-template-columns: 1fr 1fr;
  }

  .equine-title {
    font-size: 32px;
  }

  .equine-subtitle {
    font-size: 36px;
  }

}

@media (max-width: 768px) {

  .equine-section {
    padding: 80px 6%;
  }

  .equine-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 45px;
  }

  .equine-text {
    margin: auto;
  }

}

@media (max-width: 480px) {

  .equine-section {
    padding: 60px 5%;
  }

  .equine-title {
    font-size: 26px;
  }

  .equine-subtitle {
    font-size: 28px;
  }

  .equine-text {
    font-size: 14px;
    line-height: 1.7;
  }

  .equine-stars {
    font-size: 22px;
    letter-spacing: 6px;
  }

}

@media (max-width: 768px) {
  .equine-title-main {
    font-size: 32px;
    margin-bottom: 45px;
  }
}

@media (max-width: 480px) {
  .equine-title-main {
    font-size: 26px;
    margin-bottom: 35px;
  }
}

/* ===== RIGHT IMAGE VARIANT ===== */
.equine-container.equine-right {
  grid-template-columns: 1.1fr 1fr;
}

/* keep image nicely sized */
.equine-right .equine-image img {
  max-width: 100%;
  height: auto;
}

/* spacing balance */
.equine-right .equine-content {
  padding-right: 20px;
}

/* ===== LARGE TABLETS ===== */
@media (max-width: 992px) {
  .equine-container.equine-right {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .equine-right .equine-content {
    padding-right: 0;
    text-align: center;
  }

  .equine-right .equine-stars {
    justify-content: center;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 480px) {
  .equine-container {
    gap: 30px;
  }

  .equine-subtitle {
    font-size: 24px;
  }

  .equine-text {
    font-size: 14px;
    line-height: 1.7;
  }

  .equine-image img {
    border-radius: 18px;
  }
}

/* ===== MOBILE FIX (IMAGE ALWAYS ON TOP) ===== */
@media (max-width: 768px) {

  .equine-container {
    display: flex;
    flex-direction: column;
  }

  .equine-image {
    order: -1;
    /* forces image to top */
  }

  .equine-content {
    order: 1;
  }

}

/* ===============================
   HORSE DISPLAY SECTION
================================ */
.horse-display {
  background: linear-gradient(to bottom, #fffaf2, #f8f4ec);
  padding: 100px 8%;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

/* Header */
.horse-title {
  font-size: 42px;
  font-weight: 700;
  color: #8b1e1e;
  margin-bottom: 18px;
}

.horse-subtext {
  max-width: 900px;
  margin: 0 auto 60px;
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

/* Grid */
.horse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.horse-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(212, 175, 55, 0.35);
  transition: 0.35s ease;
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.12),
    0 8px 20px rgba(139, 30, 30, 0.18);
}

.horse-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: 0.45s ease;
}

/* Hover zoom */
.horse-card:hover img {
  transform: scale(1.08);
}

/* Overlay */
.horse-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 22px;
  background: linear-gradient(to top,
      rgba(139, 30, 30, 0.9),
      rgba(139, 30, 30, 0.0));
  text-align: left;
}

.horse-overlay h4 {
  color: #d4af37;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

/* Laptop */
@media (max-width: 1200px) {
  .horse-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet */
@media (max-width: 768px) {
  .horse-display {
    padding: 80px 6%;
  }

  .horse-title {
    font-size: 34px;
  }

  .horse-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .horse-card img {
    height: 360px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .horse-display {
    padding: 60px 5%;
  }

  .horse-title {
    font-size: 26px;
  }

  .horse-subtext {
    font-size: 15px;
  }

  .horse-card img {
    height: 300px;
  }
}

/* ===============================
   CULTURAL SECTION
================================ */
.cultural-section {
  background: linear-gradient(to bottom, #fffaf2, #f8f4ec);
  padding: 100px 8%;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

/* Header */
.cultural-title {
  font-size: 42px;
  font-weight: 700;
  color: #8b1e1e;
  margin-bottom: 16px;
}

.cultural-text {
  max-width: 900px;
  margin: 0 auto 60px;
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

/* Grid */
.cultural-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Card */
.cultural-card {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(212, 175, 55, 0.35);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.12),
    0 8px 20px rgba(139, 30, 30, 0.18);
  transition: 0.35s ease;
  cursor: pointer;
}

/* Image container */
.cultural-card .img-container {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

/* Image */
.cultural-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.45s ease;
}

.img-container {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Premium hover */
.cultural-card:hover img {
  transform: scale(1.08);
}

.cultural-card:hover {
  border-color: #d4af37;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.18),
    0 12px 28px rgba(139, 30, 30, 0.25);
}

/* Laptop */
@media (max-width: 1200px) {
  .cultural-title {
    font-size: 36px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .cultural-section {
    padding: 80px 6%;
  }

  .cultural-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Updated for new structure */
  .img-container {
    height: 240px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .cultural-section {
    padding: 60px 5%;
  }

  .cultural-title {
    font-size: 26px;
  }

  .cultural-text {
    font-size: 15px;
  }

  /* Updated for new structure */
  .img-container {
    height: 200px;
  }
}

/* ===============================
   CHETAK LAYOUT SECTION
================================ */
.layout-section {
  /* background: linear-gradient(to bottom, #fffaf2, #f8f4ec); */
  background: #fffaf2;
  padding: 100px 8%;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

/* Title */
.layout-title {
  font-size: 42px;
  font-weight: 700;
  color: #8b1e1e;
  margin-bottom: 50px;
}

/* Image */
.layout-image-wrap {
  max-width: 1100px;
  margin: 0 auto 60px;
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid rgba(212, 175, 55, 0.4);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.15),
    0 10px 25px rgba(139, 30, 30, 0.25);
  transition: 0.4s ease;
}

.layout-image-wrap img {
  width: 100%;
  display: block;
  transition: 0.5s ease;
}

.layout-image-wrap:hover img {
  transform: scale(1.03);
}

.layout-image-wrap:hover {
  border-color: #d4af37;
}

/* Features grid */
.layout-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  text-align: left;
}

.layout-features ul {
  list-style: none;
  padding: 0;
}

.layout-features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #444;
  font-weight: 500;
}

/* Golden bullets */
.layout-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #d4af37;
  font-size: 20px;
}

/* Laptop */
@media (max-width: 1200px) {
  .layout-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .layout-title {
    font-size: 36px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .layout-section {
    padding: 80px 6%;
  }

  .layout-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .layout-section {
    padding: 60px 5%;
  }

  .layout-title {
    font-size: 26px;
  }

  .layout-features {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .layout-features li {
    font-size: 15px;
  }
}

/* ==============================
   SCHEDULE SECTION
============================== */

.schedule-section {
  padding: 100px 6%;
  /* background: linear-gradient(to bottom,#fffaf2,#f7efe1); */
  background: #fffaf2;
  font-family: 'Poppins', sans-serif;
}

/* CONTAINER */
.schedule-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.schedule-title {
  font-size: 42px;
  font-weight: 700;
  color: #8b1e1e;
  margin-bottom: 50px;
  position: relative;
}

.schedule-title::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(to right, #c89b3c, #8b1e1e);
  display: block;
  margin: 15px auto 0;
  border-radius: 5px;
}

/* TABLE WRAPPER */
.schedule-table-wrapper {
  overflow-x: auto;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* TABLE */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  min-width: 700px;
}

/* HEADER */
.schedule-table thead {
  background: linear-gradient(to right, #8b1e1e, #c89b3c);
}

.schedule-table th {
  padding: 18px;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  text-align: center;
}

/* BODY */
.schedule-table td {
  padding: 18px;
  font-size: 16px;
  color: #333;
  text-align: center;
  border-bottom: 1px solid #eee;
}

/* ROW STRIPES */
.schedule-table tbody tr:nth-child(even) {
  background: #faf7f2;
}

/* HOVER EFFECT */
.schedule-table tbody tr:hover {
  background: #fff3d6;
  transition: 0.3s;
}

@media (max-width:1200px) {
  .schedule-title {
    font-size: 36px;
  }
}

@media (max-width:992px) {

  .schedule-section {
    padding: 80px 5%;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 14px;
    font-size: 15px;
  }
}

@media (max-width:768px) {

  .schedule-title {
    font-size: 30px;
  }

  .schedule-table {
    min-width: 600px;
    /* enables horizontal scroll */
  }
}

@media (max-width:480px) {

  .schedule-section {
    padding: 60px 4%;
  }

  .schedule-title {
    font-size: 24px;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 12px;
    font-size: 14px;
  }
}

/* ==============================
   MINIMAL PREMIUM COMING SOON
============================== */

.coming-soon-minimal {
  position: relative;
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  overflow: hidden;

  padding: 120px 6%;

  /* LIGHT LUXURY BACKGROUND */
  background:
    linear-gradient(180deg,
      #fffaf2 0%,
      #fdf3e3 45%,
      #f7ecdb 100%);
}

/* SOFT GOLD GLOW */
.coming-glow {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at top,
      rgba(212, 175, 55, 0.12),
      transparent 65%);

  pointer-events: none;
}

/* CONTENT */
.coming-inner {
  position: relative;
  z-index: 2;
}

/* SUBTITLE */
.coming-subtitle {
  display: inline-block;

  color: #d4af37;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;

  margin-bottom: 24px;
}

/* MAIN TEXT */
.coming-inner h1 {
  font-size: 110px;
  font-weight: 700;
  line-height: 1;

  color: #8b1e1e;

  letter-spacing: 4px;
  text-transform: uppercase;

  text-shadow:
    0 10px 30px rgba(139, 30, 30, 0.08);
}

/* GOLD LINE */
.coming-line {
  width: 180px;
  height: 2px;

  margin: 35px auto 0;

  background:
    linear-gradient(to right,
      transparent,
      #d4af37,
      transparent);
}


/* ==============================
   TABLET
============================== */

@media (max-width: 992px) {

  .coming-inner h1 {
    font-size: 80px;
  }

}


/* ==============================
   MOBILE
============================== */

@media (max-width: 768px) {

  .coming-soon-minimal {
    min-height: 80vh;
    padding: 100px 6%;
  }

  .coming-inner h1 {
    font-size: 52px;
    letter-spacing: 2px;
  }

  .coming-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .coming-line {
    width: 120px;
  }

}


/* ==============================
   SMALL MOBILE
============================== */

@media (max-width: 480px) {

  .coming-inner h1 {
    font-size: 40px;
  }

}


/* ==============================
   PREMIUM GALLERY
============================== */

.premium-gallery {
  padding: 120px 3%;
  max-width: 1800px;
  margin: 0 auto;
  background: #f8f6f2;
}

.gallery-header {
  text-align: center;
  margin-bottom: 70px;
}

.gallery-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #8b1e1e;
  letter-spacing: 2px;
  position: relative;
}

.gallery-header h2::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(to right, #c89b3c, #8b1e1e);
  display: block;
  margin: 15px auto 0;
  border-radius: 5px;
}


/* GRID */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 22px;
}


/* ITEMS */

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  transition: transform .6s ease;
  border: 3px solid #d4af37;
}


/* SIZE VARIATIONS */

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

/* =========================================
   LARGE TABLETS / SMALL LAPTOPS
========================================= */

@media (max-width:1200px) {

  .premium-gallery {
    padding: 100px 4%;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
  }

}


/* =========================================
   TABLETS
========================================= */

@media (max-width:992px) {

  .gallery-header h2 {
    font-size: 36px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 18px;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

}


/* =========================================
   MOBILE DEVICES
========================================= */

@media (max-width:768px) {

  .premium-gallery {
    padding: 80px 6%;
  }

  .gallery-header {
    margin-bottom: 50px;
  }

  .gallery-header h2 {
    font-size: 30px;
    letter-spacing: 1px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
    gap: 14px;
  }

}


/* =========================================
   SMALL MOBILE DEVICES
========================================= */

@media (max-width:480px) {

  .premium-gallery {
    padding: 70px 5%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
    gap: 16px;
  }

  /* Remove spans for small screens */

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

}


.winners-section {
  padding: 70px 5%;
  text-align: center;
  background: #fffaf2;
}

/* SECTION TITLE */
.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #8b1e1e;
  margin-bottom: 50px;
  position: relative;
}

/* GRADIENT UNDERLINE */
.section-title::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(to right, #c89b3c, #8b1e1e);
  display: block;
  margin: 15px auto 0;
  border-radius: 5px;
}

/* ONE ROW IMAGES */
.winners-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  /* allows responsive stacking */
}

/* images */
.winners-container img {
  width: 23%;
  /* 4 images in one row */
  border: 2px solid #d4af37;
  /* gold */
  border-radius: 8px;
  transition: 0.3s ease;
}

.winners-container img:hover {
  transform: scale(1.03);
}

/* tablet */
@media(max-width:900px) {
  .winners-container img {
    width: 48%;
  }
}

/* mobile */
@media(max-width:500px) {
  .winners-container img {
    width: 100%;
  }
}




/* ===== CONTACT SECTION ===== */

.contact-section {
  padding: 120px 8%;
  background: #f7f4ef;
  font-family: 'Poppins', sans-serif;
}

/* CONTAINER */

.contact-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;

  align-items: center;
}


/* ===== LEFT SIDE ===== */

.contact-info h2 {
  font-size: 48px;
  font-weight: 700;
  color: #8b1e1e;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* DESCRIPTION */

.contact-desc {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 45px;
  max-width: 420px;
}


/* ===== CONTACT ITEMS ===== */

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}


/* TEXT */

.contact-item h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #8b1e1e;
}

.contact-item p {
  margin: 4px 0 0;
  font-size: 16px;
  color: #555;
}



/* ===== ICON ===== */

.contact-icon {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #c89b3c;
  color: white;

  font-size: 18px;

  flex-shrink: 0;
}



/* ===== SOCIAL ===== */

.social-title {
  font-size: 20px;
  font-weight: 700;
  color: #8b1e1e;
  margin-top: 40px;
  margin-bottom: 15px;
}


.contact-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: #c89b3c;
  color: white;

  margin-right: 12px;
  text-decoration: none;

  transition: 0.3s;
}

.contact-social a:hover {
  background: #8b1e1e;
  transform: translateY(-2px);
}

/* EMAIL LINK */

.contact-link {
  text-decoration: none;
  color: #555;
  font-size: 16px;
  transition: 0.3s;
}

.contact-link:hover {
  color: #8b1e1e;
}

/* ===== FORM BOX ===== */

.contact-form-box {

  background: #ffffff;

  padding: 45px 40px;

  border-radius: 12px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);

}

.contact-form-box h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #8b1e1e;
}


/* ===== FORM ===== */

.contact-form input,
.contact-form textarea {

  width: 100%;
  padding: 16px 18px;

  margin-bottom: 18px;

  border: 1.5px solid #c89b3c;
  border-radius: 8px;

  font-size: 15px;

  outline: none;

  transition: all .3s ease;
  font-family: 'Poppins', sans-serif;
}


/* PLACEHOLDER */

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9c9c9c;
}


/* HOVER */

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: #c89b3c;
}


/* FOCUS */

.contact-form input:focus,
.contact-form textarea:focus {

  border-color: #c89b3c;

  box-shadow:
    0 0 0 2px rgba(200, 155, 60, 0.15);

}


/* TEXTAREA */

.contact-form textarea {
  resize: none;
  min-height: 140px;
}


/* BUTTON */

.contact-form button {

  width: 100%;

  padding: 15px;

  border: none;
  border-radius: 40px;

  font-size: 15px;
  font-weight: 600;

  color: white;

  background: linear-gradient(to right, #c89b3c, #8b1e1e);

  cursor: pointer;

  transition: all .3s;
  font-family: 'Poppins', sans-serif;
}


/* BUTTON HOVER */

.contact-form button:hover {

  transform: translateY(-3px);

  box-shadow: 0 15px 35px rgba(139, 30, 30, 0.35);
}



/* ===== MOBILE ===== */

@media (max-width:900px) {

  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-info h2 {
    font-size: 32px;
  }

  .contact-form-box {
    padding: 35px 25px;
  }

}

/* =========================
   MAP SECTION
========================= */

.map-section {
  padding: 80px 20px;
  background: #f7f4ef;
}

.map-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.section-title {
  font-size: 38px;
  color: #8b1e1e;
  font-weight: 700;
  margin-bottom: 45px;
  position: relative;
  display: inline-block;
}

/* GOLD GRADIENT UNDERLINE */
.section-title::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(to right, #c89b3c, #8b1e1e);
  display: block;
  margin: 15px auto 0;
  border-radius: 5px;
}

/* =================================
   CONTACT SECTION — TABLET
================================= */
@media (max-width:1024px) {

  .contact-container {
    gap: 30px;
  }

  .contact-info,
  .contact-form-box {
    padding: 35px;
  }

  .contact-title {
    font-size: 36px;
  }

  .form-title {
    font-size: 24px;
  }
}

/* =================================
   CONTACT SECTION — MOBILE
================================= */
@media (max-width:768px) {

  .contact-section {
    padding: 70px 20px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    /* stack */
    gap: 35px;
  }

  .contact-info,
  .contact-form-box {
    padding: 30px;
  }

  .contact-title {
    font-size: 32px;
    text-align: center;
  }

  .contact-subheading {
    text-align: center;
  }

  .form-title {
    text-align: center;
  }

  .form-desc {
    text-align: center;
  }

  .contact-form button {
    width: 100%;
    /* easier tapping */
  }
}

/* =================================
   CONTACT SECTION — SMALL MOBILE
================================= */
@media (max-width:480px) {

  .contact-section {
    padding: 50px 16px;
  }

  /* FIX: control grid instead of cards */
  .contact-container {
    grid-template-columns: 1fr;
    justify-items: center;
    /* centers children */
    gap: 28px;
  }

  /* cards */
  .contact-info,
  .contact-form-box {
    width: 100%;
    max-width: 360px;
    /* KEY FIX */
    padding: 22px;
    border-radius: 10px;
  }

  .contact-title {
    font-size: 26px;
    line-height: 1.3;
    text-align: center;
  }

  .contact-subheading,
  .form-title,
  .form-desc {
    text-align: center;
  }

  .contact-form button {
    width: 100%;
  }
}

/* =================================
   CONTACT SECTION — 360px DEVICES
================================= */
@media (max-width:360px) {

  .contact-section {
    padding: 45px 12px;
  }

  .contact-container {
    justify-items: center;
    gap: 24px;
  }

  .contact-info,
  .contact-form-box {
    width: 100%;
    max-width: 300px;
    /* prevents edge touching */
    padding: 18px;
    border-radius: 8px;
  }

  .contact-title {
    font-size: 22px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 13px;
    padding: 11px 12px;
  }

  .contact-form button {
    width: 100%;
    font-size: 14px;
    padding: 12px;
  }

  .contact-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
}

/* ================================
   TEXT OVERFLOW FIX (IMPORTANT)
================================ */

.contact-item p,
.contact-item h4,
.form-desc {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.contact-info,
.contact-form-box {
  overflow: hidden;
}

/* MAP CARD */
.map-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  padding: 8px;

  /* premium gold border effect */
  border: 1px solid rgba(212, 175, 55, 0.35);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 0 0 2px rgba(212, 175, 55, 0.08);
}

/* MAP IFRAME */
.map-card iframe {
  width: 100%;
  height: 480px;
  border: 0;
  border-radius: 12px;
  display: block;
}

/* TABLET */
@media (max-width:992px) {
  .map-card iframe {
    height: 420px;
  }
}

/* MOBILE */
@media (max-width:480px) {
  .map-section {
    padding: 60px 15px;
  }

  .section-title {
    font-size: 28px;
  }

  .map-card iframe {
    height: 320px;
  }
}

/* Floating Register Button */

.floating-register {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(45deg, #c89b3c);
  color: #fff;
  padding: 14px 26px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-register:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

@media (max-width: 992px) {

  .floating-register {
    bottom: 25px;
    right: 25px;
    padding: 12px 22px;
    font-size: 14px;
  }

}

@media (max-width: 576px) {

  .floating-register {
    bottom: 20px;
    right: 15px;
    padding: 10px 18px;
    font-size: 13px;
  }

}

@media (max-width: 480px) {

  .floating-register {
    border-radius: 30px;
    padding: 12px 20px;
  }

}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 155, 60, 0.6);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(200, 155, 60, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(200, 155, 60, 0);
  }
}

.floating-register {
  animation: pulse 2s infinite;
}

/* ==============================
   PREMIUM CHETAK FORM
============================== */

/* BACKGROUND */

.chetak-form-section {
  padding: 130px 6%;
  background: linear-gradient(180deg, #fdfaf5, #f3eee7);
  position: relative;
}

/* subtle luxury overlay */
.chetak-form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.08), transparent 60%);
  pointer-events: none;
}


/* WRAPPER */

.form-wrapper {
  max-width: 1250px;
  margin: auto;
}


/* HEADER */

.form-header {
  text-align: center;
  margin-bottom: 70px;
}

.form-header h1 {
  font-size: 42px;
  font-weight: 700;
  color: #8b1e1e;
}

.form-header h1::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(to right, #c89b3c, #8b1e1e);
  display: block;
  margin: 15px auto 0;
  border-radius: 5px;
}

.form-header p {
  color: #d4af37;
  margin-top: 22px;
  font-size: 17px;
  font-weight: 600;
}


/* GLASS FORM */

.premium-form {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  padding: 70px;
  border-radius: 28px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}


/* SECTION */

.form-section {
  margin-bottom: 80px;
}

.form-section h2 {
  font-size: 26px;
  color: #8b1e1e;
  margin-bottom: 35px;
  position: relative;
  padding-left: 20px;
}

/* gold accent line */
.form-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 5px;
  height: 28px;
  background: #d4af37;
  border-radius: 3px;
}


/* GRID */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 35px;
}


/* FIELD */

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 15px;
  color: #555;
  letter-spacing: 0.5px;
}

/* INPUT STYLE */

.field input,
.field select,
.field textarea {
  padding: 15px 14px;
  border-radius: 12px;
  /* border: 1px solid rgba(0, 0, 0, 0.1); */
  border: 1.5px solid #c89b3c;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
}

/* FOCUS EFFECT (PREMIUM GOLD GLOW) */
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #d4af37;
  box-shadow:
    0 0 0 3px rgba(212, 175, 55, 0.2),
    0 5px 15px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
  outline: none;
}

.field textarea {
  min-height: 130px;
}


/* RADIO */

.radio-row {
  margin-top: 30px;
}

.radio-options {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.radio-options span {
  padding: 10px 20px;
  border-radius: 30px;
  border: 1.5px solid #c89b3c;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
}

/* hover premium */
.radio-options span:hover {
  border-color: #d4af37;
  color: #8b1e1e;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}


/* CARD ROW */

.card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}


/* MINI CARD */

.mini-card {
  background: linear-gradient(145deg,
      rgba(255, 248, 230, 0.9));
  padding: 30px;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.35);

  /* IMPORTANT: stable hover */
  transition: box-shadow 0.3s ease, border 0.3s ease;
}





/* SOFT PREMIUM HOVER */

.mini-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: #d4af37;
}


/* TITLE */

.mini-card h3 {
  margin-bottom: 20px;
  color: #8b1e1e;
  font-size: 18px;
}


/* INPUT GROUP INSIDE CARD */

.mini-card input {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  /* border: 1px solid rgba(0, 0, 0, 0.12); */
  border: 1.5px solid #c89b3c;
  margin-bottom: 16px;
  background: #fff;

  transition: 0.25s ease;
  font-family: 'Poppins', sans-serif;
}


/* LAST INPUT REMOVE EXTRA GAP */

.mini-card input:last-child {
  margin-bottom: 0;
}


/* INPUT FOCUS (premium subtle) */

.mini-card input:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
  outline: none;
}

/* FOOTER */

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  gap: 20px;
}

/* BUTTON */

.form-footer button {
  background: linear-gradient(135deg, #8b1e1e, #b33939);
  color: #fff;

  /* CONTROL SIZE (important) */
  height: 54px;
  min-width: 20px;
  padding: 0 40px;

  border: none;
  border-radius: 12px;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;

  cursor: pointer;
  transition: all 0.35s ease;

  box-shadow: 0 12px 30px rgba(139, 30, 30, 0.3);

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* GOLD HOVER EFFECT */
.form-footer button:hover {
  background: linear-gradient(135deg, #d4af37, #f0d27a);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(212, 175, 55, 0.3);
}

.radio-row label {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #8b1e1e;
  margin-bottom: 12px;
  position: relative;
  padding-left: 14px;
}

/* GOLD ACCENT LINE */
.radio-row label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: #d4af37;
  border-radius: 2px;
}

.pin-field {
  max-width: 300px;
}

/* SPACE BELOW RADIO SECTION */
.radio-row {
  margin-top: 30px;
  margin-bottom: 30px;
}

/* ADD CONSISTENT SPACING BETWEEN FIELDS */
.field {
  margin-bottom: 10px;
}

/* FULL WIDTH FIELD EXTRA SPACE */
.field.full {
  margin-top: 20px;
  margin-bottom: 25px;
}

.radio-row label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 18px;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  cursor: pointer;
}

.checkbox input {
  width: 18px;
  height: 18px;
  accent-color: #8b1e1e;
  cursor: pointer;
}

/* CUSTOM SELECT WRAPPER */
.custom-select {
  position: relative;
  font-family: 'Poppins', sans-serif;
}

/* SELECT BOX */
.select-box {
  padding: 15px 16px;
  border-radius: 12px;
  /* border: 1px solid rgba(0, 0, 0, 0.1); */
  border: 1.5px solid #c89b3c;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  position: relative;
  transition: 0.3s ease;
  font-size: 14px;
}

/* GOLD FOCUS */
.select-box:hover {
  border-color: #d4af37;
}

/* ARROW */
.select-box::after {
  content: "▼";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #d4af37;
}

/* DROPDOWN */
.options {
  position: absolute;
  width: 100%;
  top: 110%;
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);

  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 10;
  font-size: 14px;
}

/* SHOW DROPDOWN */
.custom-select.active .options {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* OPTION */
.option {
  padding: 12px 16px;
  cursor: pointer;
  transition: 0.25s;
}

/* HOVER */
.option:hover {
  background: #fdf6e3;
  color: #8b1e1e;
}

/* ACTIVE SELECTED */
.option.selected {
  background: #8b1e1e;
  color: #fff;
}

/* ==============================
   TABLET (KEEP PREMIUM GRID)
============================== */

@media (max-width: 1024px) {

  .chetak-form-section {
    padding: 100px 5%;
  }

  .premium-form {
    padding: 60px 45px;
  }

  .form-header h1 {
    font-size: 38px;
  }

  /* KEEP 2 COLUMN */
  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .card-row {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

}


/* ==============================
   SMALL TABLET (BALANCED)
============================== */

@media (max-width: 850px) {

  .premium-form {
    padding: 50px 35px;
  }

  /* STILL 2 COLUMN BUT MORE GAP */
  .form-grid {
    gap: 25px 25px;
  }

  .card-row {
    gap: 25px;
  }

}


/* ==============================
   MOBILE (PREMIUM SPACING)
============================== */

@media (max-width: 768px) {

  .chetak-form-section {
    padding: 90px 6%;
  }

  .form-header {
    margin-bottom: 50px;
  }

  .form-header h1 {
    font-size: 30px;
  }

  .premium-form {
    padding: 40px 28px;
    border-radius: 24px;
  }

  /* ⚡ ONLY NOW SWITCH TO SINGLE COLUMN */
  .form-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .card-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .form-section {
    margin-bottom: 60px;
  }

  .form-section h2 {
    font-size: 22px;
    margin-bottom: 25px;
  }

  /* INPUT SPACING IMPROVED */
  .field input,
  .field select,
  .field textarea {
    padding: 14px;
    font-size: 14px;
  }

  /* RADIO BETTER LAYOUT */
  .radio-options {
    gap: 12px;
  }

  .radio-options span {
    padding: 10px 18px;
  }

  /* FOOTER (NOT TOO STACKED) */
  .form-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .form-footer button {
    width: 100%;
    height: 52px;
  }

}


/* ==============================
   SMALL MOBILE (AVOID CRAMPING)
============================== */

@media (max-width: 480px) {

  .chetak-form-section {
    padding: 80px 5%;
  }

  .premium-form {
    padding: 35px 20px;
  }

  .form-header h1 {
    font-size: 26px;
  }

  .form-section h2 {
    font-size: 20px;
  }

  /* RADIO FULL WIDTH FOR TOUCH */
  .radio-options {
    flex-direction: column;
  }

  .radio-options span {
    width: 100%;
    text-align: center;
  }

}

@media (max-width: 768px) {
  .premium-form {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    background: rgba(255, 255, 255, 0.7);
    /* fallback */
  }
}

@media (max-width: 768px) {
  .premium-form {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }
}

@media (max-width: 768px) {

  .field input:focus,
  .field textarea:focus,
  .field select:focus {
    transform: none;
  }
}

.premium-form {
  will-change: transform;
}

/* ==============================
   PREMIUM IMAGE UPLOAD FIELD
============================== */

.upload-box {
  width: 100%;
}

.upload-label {
  /* border: 1.5px dashed #c89b3c; */
  border: 1.5px solid #c89b3c;
  border-radius: 14px;
  background: linear-gradient(180deg, #fffdf8, #f9f3e7);

  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;

  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

/* Hover */
.upload-label:hover {
  border-color: #d4af37;
  background: linear-gradient(180deg, #fff8e8, #f5ecdb);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.12);
}

/* Icon */
.upload-icon {
  font-size: 28px;
  line-height: 1;
}

/* Main text */
.upload-text {
  font-size: 15px;
  font-weight: 600;
  color: #8b1e1e;
}

/* Small text */
.upload-label small {
  font-size: 12px;
  color: #777;
}

/* ==============================
   MOBILE RESPONSIVE
============================== */

@media (max-width: 768px) {
  .upload-label {
    padding: 20px 15px;
    border-radius: 12px;
  }

  .upload-icon {
    font-size: 24px;
  }

  .upload-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .upload-label {
    padding: 18px 14px;
  }

  .upload-text {
    font-size: 13px;
  }
}

.upload-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #c89b3c, #e6c96d);
  color: #8b1e1e;

  font-size: 22px;
  box-shadow: 0 8px 18px rgba(200, 155, 60, 0.25);

  transition: all 0.3s ease;
}

/* Hover Effect */
.upload-label:hover .upload-icon {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.35);
}

/* FILE STATUS */
/* .file-status {
  margin-top: 14px;
  font-size: 14px;
  color: #2e7d32;
  font-weight: 500;
  display: none;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.file-status i {
  color: #27ae60;
  font-size: 16px;
} */

/* FILE STATUS */
.file-status {
  margin-top: 14px;
  font-size: 14px;
  color: #2e7d32;
  font-weight: 500;
  display: none;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.file-status i {
  color: #27ae60;
  font-size: 16px;
}

/* REMOVE BUTTON */
.remove-file {
  display: none;
  margin: 12px auto 0;
  padding: 8px 16px;
  border: none;
  border-radius: 8px;

  background: #8b1e1e;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;

  transition: 0.3s ease;
}

.remove-file:hover {
  background: #c0392b;
}

/* ==============================
   PREMIUM WINNERS SECTION
============================== */

.winners-section {
  position: relative;
  padding: 100px 3%;
  overflow: hidden;

  background:
    linear-gradient(180deg,
      #fffaf2 0%,
      #f7efdf 100%);
}

/* GLOW */

.winner-bg-glow {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at top,
      rgba(212, 175, 55, 0.12),
      transparent 60%);

  pointer-events: none;
}

.winner-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1450px;
  margin: auto;
}


/* HEADER */

.winner-header {
  text-align: center;
  margin-bottom: 70px;
}

.winner-subtitle {
  display: inline-block;
  color: #d4af37;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 18px;
  font-weight: 700;
}

.winner-header h2 {
  font-size: 56px;
  color: #8b1e1e;
  margin-bottom: 18px;
  font-weight: 700;
}

.winner-header h2::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(to right, #c89b3c, #8b1e1e);
  display: block;
  margin: 15px auto 0;
  border-radius: 5px;
}

.winner-header p {
  max-width: 600px;
  margin: auto;
  color: #d4af37;
  font-weight: 500;
  line-height: 1.8;
  font-size: 17px;
}


/* TOGGLE TITLES */

.toggle-title {
  text-align: center;
  margin-bottom: 24px;
}

.toggle-title.small {
  margin-top: 10px;
}

.toggle-title span {
  display: inline-block;

  font-size: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;

  color: #8b1e1e;
  font-weight: 700;

  position: relative;

  padding: 0 18px;
}

.toggle-title span::before,
.toggle-title span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45px;
  height: 2px;
  background: #d4af37;
}

.toggle-title span::before {
  left: -40px;
}

.toggle-title span::after {
  right: -40px;
}


/* TOURNAMENT TABS */

.tournament-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 60px;
}

/* CUSTOM WIDTH CONTROL */
/* .main-tab {
  flex: 0 0 calc(16.66% - 30px);
} */

.main-tab {
  border: none;
  padding: 15px 34px;
  border-radius: 60px;

  background:
    linear-gradient(180deg, #fff, #fff7eb);

  border: 1.5px solid rgba(212, 175, 55, 0.25);
  font-family: 'Poppins', sans-serif;

  color: #8b1e1e;
  font-weight: 600;
  font-size: 15px;

  cursor: pointer;
  transition: 0.35s ease;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.05);
}

.main-tab:hover,
.main-tab.active {

  background:
    linear-gradient(135deg, #8b1e1e, #b33939);

  color: #fff;

  transform: translateY(-3px);

  border-color: transparent;

  box-shadow:
    0 18px 40px rgba(139, 30, 30, 0.25);
}


/* CATEGORY TABS */

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.category-tab {
  border: none;

  background:
    linear-gradient(180deg, #fff, #fdf4e5);

  color: #8b1e1e;

  padding: 13px 24px;

  border-radius: 40px;

  border: 1px solid rgba(212, 175, 55, 0.2);
  font-family: 'Poppins', sans-serif;

  font-weight: 600;
  font-size: 14px;

  cursor: pointer;
  transition: 0.3s ease;

  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.04);
}

.category-tab:hover,
.category-tab.active {

  background:
    linear-gradient(135deg, #d4af37, #f0cf74);

  color: #000;

  transform: translateY(-2px);

  box-shadow:
    0 12px 30px rgba(212, 175, 55, 0.2);
}


/* TOURNAMENT CONTENT */

.tournament-content {
  display: none;
}

.tournament-content.active {
  display: block;
}


/* WINNER CARDS */

/* .winner-cards {
  display: none;

  grid-template-columns:
    repeat(auto-fit, minmax(320px, 1fr));

  gap: 32px;
}

.winner-cards.active {
  display: grid;
} */

.winner-cards {
  display: none;

  /* FIXED PREMIUM CARD WIDTH */
  grid-template-columns: repeat(auto-fit, 400px);

  justify-content: center;

  gap: 40px;
}

.winner-cards.active {
  display: grid;
}


/* WINNER CARD */

.winner-card {
  position: relative;

  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.98),
      rgba(255, 247, 232, 0.98));

  border-radius: 32px;

  overflow: hidden;

  border: 1px solid rgba(212, 175, 55, 0.22);

  padding: 34px 28px;

  text-align: center;

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.06);

  transition: 0.45s ease;
}

.winner-card:hover {
  transform: translateY(-12px);

  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.12),
    0 0 45px rgba(212, 175, 55, 0.12);
}


/* FIRST PLACE */

.first-place {
  border: 2px solid rgba(212, 175, 55, 0.4);

  background:
    linear-gradient(180deg,
      #fffdf7,
      #fff4db);
}


/* TOURNAMENT NAME */

.tournament-name {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: #d4af37;
  font-weight: 700;

  margin-bottom: 24px;
}


/* BADGES */

.rank-badge {
  position: absolute;
  top: 18px;
  right: 18px;

  padding: 10px 18px;

  border-radius: 40px;

  font-size: 12px;
  font-weight: 700;

  z-index: 3;

  letter-spacing: 1px;

  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.08);
}

.gold {
  background: #d4af37;
  color: #fff;
}

.silver {
  background: #b8bcc4;
  color: #fff;
}

.bronze {
  background: #b87333;
  color: #fff;
}


/* MEDAL IMAGE */

.medal-image {
  width: 180px;
  height: 180px;

  margin: 20px auto 28px;
}

.medal-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;

  filter:
    drop-shadow(0 10px 25px rgba(0, 0, 0, 0.12));

  transition: 0.4s ease;
}

.winner-card:hover .medal-image img {
  transform: scale(1.08) rotate(-3deg);
}


/* DETAILS */

.winner-details h3 {
  color: #8b1e1e;
  font-size: 24px;
  margin-bottom: 14px;
  line-height: 1.4;
}

.horse-name {
  display: block;
  color: #d4af37;
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 15px;
}

.winner-details p {
  color: #6f6257;
  line-height: 1.8;
  font-size: 15px;
}

/* ====================================
   EXTRA INFO CHIPS
==================================== */

.winner-extra-info {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 18px 0 20px;
  justify-content: center;
  align-items: center;
}

.info-chip {
  min-width: 120px;
  padding: 12px 16px;

  border-radius: 16px;

  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.95),
      rgba(250, 243, 228, 0.95));

  border: 1px solid rgba(212, 175, 55, 0.22);

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.05);

  text-align: center;
}

.info-chip span {
  display: block;
  font-size: 12px;
  color: #8b1e1e;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.info-chip strong {
  font-size: 15px;
  color: #d4af37;
  font-weight: 700;
}


/* ==============================
   TABLET
============================== */

@media (max-width:1024px) {

  .winners-section {
    padding: 90px 5%;
  }

  .winner-header h2 {
    font-size: 48px;
  }

  .winner-header p {
    font-size: 15px;
  }

  .winner-cards {
    grid-template-columns: repeat(auto-fit, 340px);
    gap: 28px;
  }

  .winner-card {
    padding: 30px 24px;
  }

}


/* ==============================
   MOBILE
============================== */

@media (max-width:768px) {

  .winners-section {
    padding: 90px 5%;
  }

  .winner-header {
    margin-bottom: 50px;
  }

  .winner-header h2 {
    font-size: 38px;
    line-height: 1.2;
  }

  .winner-header p {
    font-size: 14px;
    line-height: 1.7;
  }

  .toggle-title span {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .toggle-title span::before,
  .toggle-title span::after {
    width: 30px;
  }

  .toggle-title span::before {
    left: -28px;
  }

  .toggle-title span::after {
    right: -28px;
  }


  /* ==========================
     TOURNAMENT TABS
  ========================== */

  .tournament-tabs {

    display: flex !important;
    flex-direction: column !important;

    flex-wrap: nowrap !important;

    justify-content: flex-start !important;
    align-items: stretch !important;

    height: 240px;

    overflow-y: auto !important;
    overflow-x: hidden !important;

    gap: 14px;

    padding: 18px 14px 40px;

    border-radius: 24px;

    background:
      linear-gradient(180deg,
        rgba(255, 255, 255, 0.92),
        rgba(255, 248, 235, 0.96));

    border: 1px solid rgba(212, 175, 55, 0.18);

    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.05);

    position: relative;

    scroll-behavior: smooth;

    margin-bottom: 45px;
  }

  .main-tab {

    width: 100% !important;

    flex: none !important;

    display: block;

    font-size: 13px;
    padding: 13px 18px;
  }


  /* SCROLL DOWN TEXT */

  .tournament-tabs::after {

    content: "↓ Scroll Down";

    position: sticky;

    bottom: -25px;

    display: block;

    text-align: center;

    font-size: 11px;

    letter-spacing: 1px;

    color: #8b1e1e;

    padding-top: 10px;

    background:
      linear-gradient(to top,
        #fffaf2,
        rgba(255, 250, 242, 0));
  }


  /* ==========================
     CATEGORY TABS
  ========================== */

  .category-tabs {
    display: flex;
    flex-direction: column;

    gap: 12px;

    margin-bottom: 40px;
  }

  .category-tab {
    width: 100%;

    font-size: 13px;
    padding: 12px 18px;
  }


  /* ==========================
     WINNER CARDS
  ========================== */

  .winner-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .winner-card {
    padding: 28px 22px;
    margin-inline: 12px;
    border-radius: 24px;
  }

  .medal-image {
    width: 110px;
    height: 110px;
  }

  .winner-details h3 {
    font-size: 22px;
  }

  .winner-details p {
    font-size: 14px;
  }


  /* EXTRA INFO */

  .winner-extra-info {
    gap: 10px;
    justify-content: center;
  }

  .info-chip {
    flex: 1;
    min-width: 100px;
    padding: 10px 12px;
  }

}


/* ==============================
   SMALL MOBILE
============================== */

@media (max-width:480px) {

  .winners-section {
    padding: 75px 4%;
  }

  .winner-header h2 {
    font-size: 30px;
  }

  .winner-header p {
    font-size: 15px;
  }

  .main-tab,
  .category-tab {
    width: 100%;
  }

  .toggle-title span::before,
  .toggle-title span::after {
    display: none;
  }

  .winner-card {
    padding: 24px 18px;
    margin-inline: 6px;
  }

  .winner-details h3 {
    font-size: 20px;
  }

  .medal-image {
    width: 120px;
    height: 120px;
  }

  .info-chip {
    min-width: 90px;
    padding: 9px 10px;
  }

}


/* ==============================
   360PX DEVICES
============================== */

@media (max-width:360px) {

  .winner-header h2 {
    font-size: 26px;
  }

  .winner-subtitle {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .toggle-title span {
    font-size: 13px;
  }

  .main-tab,
  .category-tab {
    font-size: 12px;
    padding: 11px 14px;
  }

  .winner-card {
    padding: 22px 14px;
    margin-inline: 0;
  }

  .winner-details h3 {
    font-size: 18px;
  }

  .horse-name {
    font-size: 13px;
  }

  .winner-details p {
    font-size: 13px;
  }

  .medal-image {
    width: 100px;
    height: 100px;
  }

  .winner-extra-info {
    flex-direction: column;
  }

  .info-chip {
    width: 100%;
  }

}

/* =========================================
   Registration success popup (register.html)
   ========================================= */
body.reg-success-open {
  overflow: hidden;
}

.reg-success-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  background: rgba(20, 12, 8, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.reg-success-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.reg-success-overlay::before,
.reg-success-overlay::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.2;
  pointer-events: none;
}

.reg-success-overlay::before {
  background: #d4af37;
  top: -120px;
  left: -100px;
}

.reg-success-overlay::after {
  background: #8b1e1e;
  bottom: -140px;
  right: -100px;
}

.reg-success-popup {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 440px;
  padding: 48px 36px 38px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 236, 0.95));
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12), 0 0 80px rgba(212, 175, 55, 0.12);
  animation: regPopupEnter 0.9s cubic-bezier(0.17, 0.89, 0.32, 1.28);
}

@keyframes regPopupEnter {
  0% {
    opacity: 0;
    transform: scale(0.75) translateY(60px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.reg-success-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(139, 30, 30, 0.08);
  color: #8b1e1e;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s ease;
}

.reg-success-close:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: rotate(90deg);
}

.reg-success-ring {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 24px;
}

.reg-ring-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.35), transparent 70%);
  animation: regGlowPulse 2s infinite ease-in-out;
}

@keyframes regGlowPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

.reg-checkmark-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reg-checkmark-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #f4d67c);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.35), inset 0 2px 8px rgba(255, 255, 255, 0.5);
}

.reg-checkmark {
  width: 42px;
  height: 42px;
}

.reg-checkmark path {
  stroke: white;
  stroke-width: 7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: regDrawCheck 1s ease forwards;
  animation-delay: 0.4s;
}

@keyframes regDrawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

.reg-success-popup h1 {
  font-family: "Cinzel", serif;
  font-size: 34px;
  color: #8b1e1e;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.reg-success-popup p {
  color: #6f6257;
  font-size: 14px;
  line-height: 1.75;
  max-width: 360px;
  margin: auto;
}

.reg-success-highlight {
  color: #d4af37;
  font-weight: 600;
}

.reg-success-divider {
  width: 72px;
  height: 3px;
  border-radius: 20px;
  margin: 18px auto;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
}

.reg-success-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  height: 46px;
  padding: 0 28px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #8b1e1e, #b33939);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: 0.35s ease;
  box-shadow: 0 12px 30px rgba(139, 30, 30, 0.28);
}

.reg-success-btn:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #d4af37, #f0d27a);
  color: #111;
  box-shadow: 0 18px 35px rgba(212, 175, 55, 0.32);
}

@media (max-width: 768px) {
  .reg-success-overlay {
    padding: 16px;
  }

  .reg-success-popup {
    max-width: 360px;
    padding: 40px 22px 32px;
    border-radius: 22px;
  }

  .reg-success-popup h1 {
    font-size: 28px;
  }

  .reg-success-popup p {
    font-size: 13px;
    line-height: 1.65;
  }

  .reg-success-ring {
    width: 96px;
    height: 96px;
    margin-bottom: 18px;
  }

  .reg-checkmark-circle {
    width: 76px;
    height: 76px;
  }

  .reg-checkmark {
    width: 36px;
    height: 36px;
  }

  .reg-success-divider {
    margin: 14px auto;
  }

  .reg-success-btn {
    width: 100%;
    height: 44px;
    margin-top: 12px;
  }

  .reg-success-close {
    top: 12px;
    right: 14px;
    width: 34px;
    height: 34px;
    font-size: 22px;
  }
}

/* Registration form validation toast */
.reg-form-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(179, 57, 57, 0.25);
  background: linear-gradient(135deg, #fffaf2 0%, #fff5e8 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.reg-form-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reg-form-toast i {
  color: #8b1e1e;
  font-size: 20px;
  margin-top: 2px;
}

.reg-form-toast p {
  margin: 0;
  flex: 1;
  color: #4a4038;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}

.reg-form-toast-close {
  border: none;
  background: transparent;
  color: #8b1e1e;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.reg-form-toast.is-success {
  border-color: rgba(46, 125, 50, 0.35);
  background: linear-gradient(135deg, #f1faf3 0%, #e8f5e9 100%);
}

.reg-form-toast.is-success i {
  color: #2e7d32;
}

.reg-form-toast.is-success p {
  color: #1b5e20;
}

.reg-form-toast.is-success .reg-form-toast-close {
  color: #2e7d32;
}

.reg-form-toast.is-error i {
  color: #8b1e1e;
}

.contact-form input.field-has-error,
.contact-form textarea.field-has-error {
  border-color: #b33939 !important;
  box-shadow: 0 0 0 3px rgba(179, 57, 57, 0.12);
}

.contact-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.field.field-has-error {
  scroll-margin-top: 120px;
}

.field.field-has-error label {
  color: #8b1e1e;
}

.field.field-has-error input,
.field.field-has-error textarea {
  border-color: #b33939 !important;
  box-shadow: 0 0 0 3px rgba(179, 57, 57, 0.12);
}

.field.field-has-error .custom-select .select-box {
  border-color: #b33939 !important;
  box-shadow: 0 0 0 3px rgba(179, 57, 57, 0.12);
}

.field.field-has-error .upload-box,
.field.field-has-error .upload-label {
  border-color: #b33939 !important;
  box-shadow: 0 0 0 3px rgba(179, 57, 57, 0.12);
}

.field.field-has-error .radio-options label {
  color: #8b1e1e;
}

.field.field-has-error .checkbox span {
  color: #8b1e1e;
}

@media (max-width: 768px) {
  .reg-form-toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}