/* ==========================================================================
   GLOBAL STYLES
   ========================================================================== */
:root {
  --theme-color: #380b1a;
  --font-primary: var(--font-cormorant-garamond), serif;
  --font-secondary: var(--font-jost), sans-serif;
  --bg-color: #ffffff;
  --text-color: #333333;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  /* Offset for sticky header */
}

body {
  overflow-x: hidden;
  font-family: var(--font-secondary);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  color: var(--theme-color);
  margin-bottom: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

@media (min-width: 1600px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1600px;
  }
}

/* Premium aesthetic utilities */
.text-theme {
  color: var(--theme-color);
}

.bg-theme {
  background-color: var(--theme-color);
  color: white;
}

.section {
  padding: 80px 0;
}

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

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(56, 11, 26, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
  padding: 10px 0;
  transition: all 0.3s ease;
  color: #fff;
}

.header.scrolled {
  background-color: rgba(56, 11, 26, 0.85);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.header.scrolled .nav-link,
.header.scrolled .nav-dropdown-link {
  color: #fff;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
}

.logo-img {
  object-fit: contain;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* --- Desktop Nav --- */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-family: var(--font-secondary);
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  text-transform: capitalize;
  transition: color 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}


.nav-link .arrow {
  font-size: 11px;
  margin-left: 5px;
  transition: transform 0.2s;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--theme-color);
  min-width: 150px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 10;
  display: block;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .arrow {
  transform: rotate(180deg);
}

.nav-dropdown-link {
  display: block;
  padding: 8px 20px;
  font-family: var(--font-secondary);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: background-color 0.2s, color 0.2s;
}

.nav-dropdown-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* --- Buttons --- */
.header-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.btn-solid {
  background-color: transparent;
  color: #fff;
  border: 1px solid #c49c45;
}

.btn-solid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c49c45;
  z-index: -2;
  transition: opacity 0.5s ease;
}

.btn-outline {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn span:not(:nth-child(6)) {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 20px;
  width: 20px;
  border-radius: 50%;
  transition: 1s ease;
  z-index: -1;
}

.btn-solid span:not(:nth-child(6)) {
  background-color: #380b1a;
}

.btn-outline span:not(:nth-child(6)) {
  background-color: #c49c45;
}

.btn span:nth-child(6) {
  position: relative;
  z-index: 1;
}

/* Bubble Positions */
.btn span:nth-child(1) {
  transform: translate(-3.3em, -4em);
}

.btn span:nth-child(2) {
  transform: translate(-8em, 1.3em);
}

.btn span:nth-child(3) {
  transform: translate(-.2em, 1.8em);
}

.btn span:nth-child(4) {
  transform: translate(5em, 1.4em);
}

.btn span:nth-child(5) {
  transform: translate(4em, -3.8em);
}

.btn:hover span:not(:nth-child(6)) {
  transform: translate(-50%, -50%) scale(15);
  transition: 2s ease;
}

.btn-solid:hover {
  border-color: #fff;
}

.btn-outline:hover {
  border-color: #c49c45;
}

.full-width {
  width: 100%;
}

/* --- 6th Edition Badge --- */
.badge-6th {
  background: linear-gradient(135deg, #7c2241 0%, var(--theme-color) 100%);
  color: #fff;
  width: 70px;
  height: 80px;
  border-radius: 0 0 35px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-top: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  position: relative;
}

.badge-text-main {
  font-family: var(--font-primary);
  font-size: 35px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: flex-start;
}

.badge-text-main span {
  font-size: 16px;
  margin-top: 3px;
  font-weight: 500;
}

.badge-text-sub {
  font-family: var(--font-secondary);
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: 500;
  margin-top: 2px;
}

/* Desktop Badge Position */
.desktop-badge-container {
  margin-left: 10px;
  margin-top: -10px;
}

/* --- Hamburger --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* --- Sidebar --- */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1040;
}

.sidebar-overlay.open {
  opacity: 1;
  visibility: visible;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 100vw;
  height: 100vh;
  background-color: #380b1a;
  z-index: 1050;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.sidebar.open {
  right: 0;
}

.sidebar-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-header .badge-6th {
  margin-top: -20px;
  transform: scale(0.9);
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  padding: 5px;
  margin-top: 5px;
}

.sidebar-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-link {
  font-family: var(--font-secondary);
  font-size: 19px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 0;
  text-transform: capitalize;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-title {
  display: block;
  color: var(--theme-color);
  font-weight: 600;
}

.mobile-dropdown-menu {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  margin-top: 10px;
  gap: 10px;
}

.mobile-dropdown-link {
  font-family: var(--font-secondary);
  color: #666;
  text-decoration: none;
  font-size: 18px;
}

.sidebar-footer {
  padding: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 1200px) {

  .desktop-nav,
  .desktop-buttons,
  .desktop-badge-container {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('/assets/img/hero/banner-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 40px 0 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(56, 11, 26, 0.95);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-logos-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 0px;
}

.hero-logo {
  object-fit: contain;
  max-width: 150px;
  height: auto;
}

.hero-presents {
  font-family: var(--font-secondary);
  font-size: 13px;
  color: #fff;
  letter-spacing: 1px;
}

.hero-main-logo {
  object-fit: contain;
  max-width: 90%;
  height: auto;
  margin-top: 0px;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: 46px;
  color: #fff;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 10px;
}

.hero-title-highlight {
  color: #c49c45;
  font-style: italic;
}

.hero-subtitle {
  font-family: var(--font-secondary);
  font-size: 18px;
  color: #fff;
  max-width: 800px;
  margin: 0 auto 10px;
  font-weight: 300;
  opacity: 0.9;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 10px;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 24px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.meta-icon {
  font-size: 21px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.btn-invite,
.btn-partner {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 18px;
  padding: 15px 40px;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-invite {
  background-color: transparent;
  color: #fff;
  border: 1px solid #c49c45;
}

.btn-invite::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c49c45;
  z-index: -2;
  transition: opacity 0.5s ease;
}

.btn-partner {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn-invite span:not(:nth-child(6)),
.btn-partner span:not(:nth-child(6)) {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 30px;
  width: 30px;
  border-radius: 50%;
  transition: 1s ease;
  z-index: -1;
}

.btn-invite span:not(:nth-child(6)) {
  background-color: #380b1a;
}

.btn-partner span:not(:nth-child(6)) {
  background-color: #c49c45;
}

.btn-invite span:nth-child(6),
.btn-partner span:nth-child(6) {
  position: relative;
  z-index: 1;
}

/* Bubble Positions */
.hero-buttons a span:nth-child(1) {
  transform: translate(-4.5em, -4em);
}

.hero-buttons a span:nth-child(2) {
  transform: translate(-10em, 1.3em);
}

.hero-buttons a span:nth-child(3) {
  transform: translate(-.2em, 2.5em);
}

.hero-buttons a span:nth-child(4) {
  transform: translate(8.5em, 1.4em);
}

.hero-buttons a span:nth-child(5) {
  transform: translate(4.5em, -3.8em);
}

.hero-buttons a:hover span:not(:nth-child(6)) {
  transform: translate(-50%, -50%) scale(12);
  transition: 2s ease;
}

.btn-invite:hover {
  border-color: #fff;
}

.btn-partner:hover {
  border-color: #c49c45;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 26px;
  }

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

  .hero-meta {
    flex-direction: column;
    gap: 10px;
  }

  .hero-main-logo {
    max-width: 100%;
  }
}

@media (max-width: 540px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 15px;
    padding: 0 20px;
  }

  .btn-invite,
  .btn-partner {
    width: 100%;
    max-width: 320px;
  }
}

/* ==========================================================================
   HIGHLIGHTS SECTION
   ========================================================================== */
.highlights-section {
  background-color: #3c0f1e;
  padding: 40px 0 40px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.highlights-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom, transparent, #3c0f1e);
  pointer-events: none;
}

.highlights-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  justify-content: center;
}

.highlight-oval {
  width: 200px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 40px 20px;
}

.highlight-oval:hover {
  border-color: #c49c45;
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background-color: rgba(255, 255, 255, 0.03);
}

.highlight-number {
  font-family: var(--font-primary);
  font-size: 90px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 15px;
  color: #fff;
}

.highlight-label {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
  .highlights-grid {
    gap: 30px;
  }

  .highlight-oval {
    width: 180px;
    height: 320px;
  }

  .highlight-number {
    font-size: 70px;
  }
}

@media (max-width: 600px) {
  .highlights-section {
    padding: 20px 0;
  }

  .highlight-oval {
    width: 160px;
    height: 280px;
    padding: 30px 15px;
  }

  .highlight-number {
    font-size: 60px;
  }

  .highlight-label {
    font-size: 15px;
  }
}

/* ==========================================================================
   EXPERIENCE SECTION
   ========================================================================== */
.experience-section {
  background-color: #3c0f1e;
  padding: 60px 0 100px;
  color: #fff;
  position: relative;
}

.experience-header {
  text-align: center;
  margin-bottom: 70px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.experience-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #c49c45;
  font-family: var(--font-secondary);
  font-weight: 500;
  letter-spacing: 2.5px;
  font-size: 18px;
  margin-bottom: 25px;
}

.experience-badge .dot {
  width: 10px;
  height: 10px;
  background-color: rgba(201, 168, 76, 1);
  border-radius: 50%;
}

.experience-title {
  font-family: var(--font-primary);
  font-size: 60px;
  font-weight: 400;
  margin-bottom: 25px;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #fff;
}

.experience-subtitle {
  font-family: var(--font-secondary);
  font-size: 19px;
  line-height: 1.6;
  color: rgba(230, 194, 95, 0.8);
  font-weight: 400;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1600px;
  margin: 0 auto;
}

.experience-card {
  background-color: rgba(56, 11, 26, 0.3);
  border: 1px solid rgba(196, 156, 69, 0.8);
  border-radius: 15px;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  gap: 40px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.experience-card:hover {
  background-color: rgba(56, 11, 26, 0.6);
  border-color: rgba(196, 156, 69, 1);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.experience-card-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-card-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.experience-card-title {
  font-family: var(--font-secondary);
  font-size: 26px;
  font-weight: 500;
  color: #c49c45;
  margin-bottom: 12px;
  line-height: 1.2;
}

.experience-card-text {
  font-family: var(--font-secondary);
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

@media (max-width: 1200px) {
  .experience-grid {
    padding: 0 20px;
  }
}

@media (max-width: 1100px) {
  .experience-card {
    padding: 35px;
    gap: 25px;
  }

  .experience-card-title {
    font-size: 22px;
  }
}

@media (max-width: 992px) {
  .experience-grid {
    grid-template-columns: 1fr;
    max-width: 800px;
  }

  .experience-title {
    font-size: 45px;
  }

  .experience-subtitle {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .experience-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

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

  .experience-header {
    margin-bottom: 40px;
  }

  .experience-card {
    padding: 30px;
    gap: 20px;
  }

  .experience-card-icon {
    width: 50px;
    height: 50px;
  }

  .experience-title {
    font-size: 32px;
  }
}

/* ==========================================================================
   WHY SECTION
   ========================================================================== */
.why-section {
  background-color: #300413;
  padding: 100px 0;
  color: #fff;
  position: relative;
  z-index: 1;
}

.why-header {
  text-align: center;
  margin-bottom: 80px;
}

.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #c49c45;
  font-family: var(--font-secondary);
  font-weight: 500;
  letter-spacing: 2.5px;
  font-size: 18px;
  margin-bottom: 25px;
}

.why-badge .dot {
  width: 10px;
  height: 10px;
  background-color: #c49c45;
  border-radius: 50%;
}

.why-title {
  font-family: var(--font-primary);
  font-size: 60px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}

.why-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.why-card {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.why-oval {
  width: 90%;
  aspect-ratio: 0.7 / 1;
  border: 1px solid #c49c45;
  border-radius: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  transition: all 0.7s ease-in-out;
  transform-style: preserve-3d;
}

.why-card:hover .why-oval {
  border-color: #c49c45;
  /* background-color: rgba(56, 11, 26, 0.3); */
  transform: scale(1.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-oval>* {
  transition: transform 0.7s ease-in-out;
}

.why-card:hover .why-oval>* {
  transform: scale(1.05);
}

.why-card-icon {
  margin-bottom: 30px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.why-card-title {
  font-family: var(--font-secondary);
  font-size: 26px;
  font-weight: 500;
  color: #c49c45;
  margin-bottom: 15px;
  line-height: 1.2;
}

.why-card-text {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 280px;
}

@media (max-width: 1200px) {
  .why-oval {
    padding: 40px 15px;
    border-radius: 150px;
  }

  .why-card-title {
    font-size: 22px;
  }
}

@media (max-width: 992px) {
  .why-grid {
    gap: 30px;
  }

  .why-title {
    font-size: 45px;
  }
}

@media (max-width: 768px) {
  .why-card {
    min-width: 100%;
  }

  .why-oval {
    aspect-ratio: auto;
    padding: 60px 30px;
    border-radius: 100px;
  }
}

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

  .why-title {
    font-size: 32px;
  }
}

/* ==========================================================================
   PARTICIPATING BRANDS SECTION
   ========================================================================== */
.brands-section {
  background-color: #380b1a;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.brands-white-container {
  background-color: #fff;
  border-radius: 40px;
  padding: 70px 30px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  max-width: 1300px;
  margin: 0 auto;
}

.brands-header {
  margin-bottom: 55px;
}

.brands-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #380b1a;
  font-family: var(--font-secondary);
  font-weight: 600;
  letter-spacing: 2.5px;
  font-size: 18px;
  margin-bottom: 15px;
}

.brands-badge .dot {
  width: 10px;
  height: 10px;
  background-color: #380b1a;
  border-radius: 50%;
}

.brands-title {
  font-family: var(--font-primary);
  font-size: 55px;
  color: #380b1a;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.5px;
}

.brands-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.brand-item {
  padding: 0 15px;
  flex: 0 1 auto;
}

.brand-name {
  font-family: var(--font-secondary);
  font-size: 38px;
  font-weight: 300;
  color: #1a1a1a;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.brand-separator {
  width: 1.5px;
  height: 70px;
  background-color: #1a1a1a;
  opacity: 0.9;
}

.brand-row-break {
  display: none;
}

@media (max-width: 1200px) {
  .brand-item {
    padding: 0 15px;
  }

  .brand-name {
    font-size: 30px;
  }
}

@media (max-width: 1299px) {
  .brand-row-break {
    display: block;
    flex: 0 0 100%;
    height: 0;
  }

  .brand-separator-after-ethinos {
    display: none;
  }
}

@media (min-width: 1300px) and (max-width: 1399px) {
  .brand-separator-after-rebid {
    display: none;
  }
}

@media (max-width: 992px) {
  .brands-white-container {
    padding: 50px 30px;
  }

  .brands-title {
    font-size: 40px;
  }

  .brand-separator {
    height: 50px;
  }
}

@media (max-width: 768px) {
  .brands-white-container {
    padding: 40px 20px;
    border-radius: 25px;
  }

  .brand-separator {
    display: none;
  }

  .brands-grid {
    gap: 30px;
    flex-direction: column;
  }

  .brand-item {
    padding: 0;
  }
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  background-color: #380b1a;
  padding: 40px 0;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 20px;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #c49c45;
  font-family: var(--font-secondary);
  font-weight: 500;
  letter-spacing: 2.5px;
  font-size: 18px;
  margin-bottom: 20px;
}

.testimonials-badge .dot {
  width: 10px;
  height: 10px;
  background-color: #c49c45;
  border-radius: 50%;
}

.testimonials-title {
  font-family: var(--font-primary);
  font-size: 60px;
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0;
}

.testimonials-swiper-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-top: 0px;
  overflow: hidden;
}

.mySwiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 30px;
  overflow: hidden !important;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-slide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: scale(1);
  width: 100%;
}

.testimonial-slide-content.active {
  transform: scale(1.5);
}

.testimonial-image-wrapper {
  margin-bottom: 0;
  transition: all 0.5s ease;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-image-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
  border: 3px solid #c49c45;
  transition: all 0.5s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  cursor: pointer;
}

.testimonial-slide-content.active .testimonial-image-circle {
  width: 130px;
  height: 130px;
  background-color: #380b1a;
  border: 3px solid #fff;
  box-shadow: 0 0 30px rgba(196, 156, 69, 0.2);
}

.testimonial-image-circle img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Quote Box Wrapper */
.testimonial-quote-wrapper {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  min-height: 350px;
}

.testimonial-quote-box {
  background-color: rgba(56, 11, 26, 0.5);
  border-radius: 25px;
  padding: 45px 60px;
  flex: 1;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(196, 156, 69, 0.1);
  transition: all 0.5s ease;
}

.quote-mark-img {
  width: 80px;
  flex-shrink: 0;
  opacity: 0.6;
}

.quote-mark-img.left {
  align-self: flex-end;
  margin-bottom: 50px;
}

.quote-mark-img.right {
  align-self: flex-start;
  margin-top: 50px;
}

.quote-mark-img img {
  width: 100%;
  height: auto;
}

.testimonial-text {
  font-family: var(--font-secondary);
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
  font-weight: 400;
  min-height: 100px;
}

.testimonial-divider {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 25px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.testimonial-name {
  font-family: var(--font-secondary);
  font-size: 24px;
  font-weight: 500;
  color: #c49c45;
  margin-bottom: 5px;
}

.testimonial-company {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 1100px) {
  .testimonial-quote-wrapper {
    max-width: 800px;
  }
}

@media (max-width: 992px) {
  .testimonial-quote-box {
    padding: 35px;
  }

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

  .testimonials-title {
    font-size: 45px;
  }

  .quote-mark {
    font-size: 100px;
  }
}

@media (max-width: 768px) {
  .quote-mark-img {
    display: none;
  }

  .testimonial-quote-wrapper {
    gap: 0;
  }

  .testimonial-slide-content.active .testimonial-image-circle {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .testimonials-title {
    font-size: 32px;
  }

  .testimonial-image-circle {
    width: 90px;
    height: 90px;
  }

  .testimonial-slide-content.active .testimonial-image-circle {
    width: 120px;
    height: 120px;
  }
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-section {
  background-color: #380b1a;
  padding: 60px 0 100px;
  color: #fff;
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #c49c45;
  font-family: var(--font-secondary);
  font-weight: 500;
  letter-spacing: 2.5px;
  font-size: 18px;
  margin-bottom: 20px;
}

.gallery-badge .dot {
  width: 10px;
  height: 10px;
  background-color: #c49c45;
  border-radius: 50%;
}

.gallery-title {
  font-family: var(--font-primary);
  font-size: 60px;
  color: #fff;
  font-weight: 400;
  margin: 0;
  letter-spacing: 1px;
}

.gallery-swiper-container {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.gallery-swiper {
  padding: 0 0 40px;
  overflow: hidden !important;
}

/* Collage Layout */
.gallery-collage {
  display: flex;
  gap: 20px;
  align-items: stretch;
  height: 600px;
  width: 100%;
}

.collage-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.collage-col.tall .collage-item {
  height: 100%;
}

.collage-col.stacked {
  flex: 0.8;
}

.collage-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  background-color: #2a0813;
  width: 100%;
}

.collage-item.small {
  height: calc(50% - 10px);
}

.collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.collage-item:hover .collage-img {
  transform: scale(1.05);
}

/* Custom Navigation Arrows */
.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 65px;
  height: 65px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #380b1a;
  cursor: pointer;
  z-index: 50;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.gallery-prev {
  left: 20px;
}

.gallery-next {
  right: 20px;
}

.gallery-prev:hover,
.gallery-next:hover {
  background-color: #c49c45;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.gallery-prev svg,
.gallery-next svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 1200px) {
  .gallery-collage {
    height: 500px;
    padding: 0 20px;
  }
}

@media (max-width: 992px) {
  .gallery-title {
    font-size: 45px;
  }

  .gallery-collage {
    height: 400px;
  }

  .gallery-prev,
  .gallery-next {
    width: 50px;
    height: 50px;
  }
}

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

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

  .gallery-collage {
    flex-direction: column;
    height: auto;
    gap: 15px;
  }

  .collage-col.tall {
    height: 300px;
  }

  .collage-col.stacked {
    height: 400px;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.custom-footer {
  background-color: #28030e;
  color: #fff;
  padding: 60px 0 20px;
  font-family: var(--font-secondary);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
  text-align: left;
}

.footer-logo-col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-logo {
  object-fit: contain;
  max-width: 100%;
  height: auto;
}

.footer-heading {
  color: #c49c45;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-text {
  font-size: 14px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 500;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  font-size: 13px;
  color: #ddd;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item:hover {
  color: #c49c45;
}

.contact-item svg {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.mt-4 {
  margin-top: 25px;
}

.footer-editions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  flex-wrap: wrap;
}

.footer-editions .divider {
  color: #c49c45;
  font-weight: 400;
}

.footer-editions a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-editions a:hover {
  color: #c49c45;
}

.footer-social-col {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #fff;
  color: #000;
  background-color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #c49c45;
  border-color: #c49c45;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #ddd;
}

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

.footer-bottom-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: #c49c45;
}

@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-logo-col,
  .footer-contact-row,
  .footer-editions,
  .footer-social-col {
    justify-content: center;
  }

  .footer-logo-col {
    align-items: center;
  }

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

@media (max-width: 600px) {
  .footer-contact-row {
    flex-direction: column;
    gap: 10px;
  }
}

/* ==========================================================================
   LEGAL PAGES STYLES
   ========================================================================== */
.legal-page {
  background-color: #f9f9f9;
  min-height: 100vh;
}

.legal-banner {
  background-color: #380b1a;
  padding: 40px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.legal-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(196, 156, 69, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.legal-title {
  font-family: var(--font-primary);
  color: #c49c45;
  font-size: 56px;
  margin: 0;
  position: relative;
  z-index: 1;
}

.legal-subtitle-top {
  font-family: var(--font-secondary);
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  opacity: 0.8;
  position: relative;
  z-index: 1;
}

.legal-content-section {
  padding: 60px 0 100px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.legal-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  padding: 50px;
  border-top: 5px solid #c49c45;
}

.legal-body {
  font-family: var(--font-secondary);
  line-height: 1.8;
  color: #333;
}

.legal-body p {
  margin-bottom: 25px;
  font-size: 16px;
}

.legal-subheading {
  font-family: var(--font-primary);
  color: #380b1a;
  font-size: 32px;
  margin: 40px 0 20px;
  border-bottom: 1px solid rgba(196, 156, 69, 0.3);
  padding-bottom: 10px;
}

.legal-body ul {
  margin-bottom: 30px;
  padding-left: 20px;
}

.legal-body li {
  margin-bottom: 15px;
  position: relative;
  list-style: none;
  padding-left: 25px;
}

.legal-body li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #c49c45;
  font-weight: bold;
}

@media (max-width: 991px) {
  .legal-title {
    font-size: 42px;
  }

  .legal-card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .legal-banner {
    padding: 100px 0 50px;
  }

  .gallery-swiper {
    padding: 0 0 0 0 !important;
  }

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

  .legal-content-section {
    padding: 40px 0 60px;
  }

  .legal-subheading {
    font-size: 26px;
  }

  .legal-body p {
    font-size: 15px;
  }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */

/* Base animation class */
.animate-on-scroll {
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: opacity, transform, visibility;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  visibility: visible;
}

/* Transform utilities */
.fade-in-up {
  transform: translateY(40px);
}

.fade-in-down {
  transform: translateY(-40px);
}

.fade-in-left {
  transform: translateX(-40px);
}

.fade-in-right {
  transform: translateX(40px);
}

.scale-up {
  transform: scale(0.8);
}

.scale-down {
  transform: scale(1.1);
}

/* Apply transforms when visible */
.animate-on-scroll.is-visible.fade-in-up,
.animate-on-scroll.is-visible.fade-in-down {
  transform: translateY(0);
}

.animate-on-scroll.is-visible.fade-in-left,
.animate-on-scroll.is-visible.fade-in-right {
  transform: translateX(0);
}

.animate-on-scroll.is-visible.scale-up,
.animate-on-scroll.is-visible.scale-down {
  transform: scale(1);
}

/* Delays */
.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

.delay-400 {
  transition-delay: 0.4s;
}

.delay-500 {
  transition-delay: 0.5s;
}

/* Hero specific animations (runs immediately on load) */
@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.hero-content-animate {
  animation: heroFadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-content-animate-delay {
  opacity: 0;
  animation: heroFadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

/* --- Typing Effect --- */
.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background-color: #c49c45;
  margin-left: 4px;
  animation: blink 1s step-end infinite;
  vertical-align: middle;
}

@keyframes blink {

  from,
  to {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Custom Delays for Hero Section */
.hero-delay-1 {
  transition-delay: 0.2s;
}

.hero-delay-2 {
  transition-delay: 0.4s;
}

.hero-delay-3 {
  transition-delay: 0.6s;
}

.hero-delay-4 {
  transition-delay: 1.5s;
}

.hero-delay-5 {
  transition-delay: 1.7s;
}

.hero-delay-6 {
  transition-delay: 1.9s;
}

.hero-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Scroll To Top Button --- */
.scroll-to-top {
  position: fixed;
  right: 10px;
  bottom: 20px;
  width: 45px;
  height: 45px;
  background-color: var(--theme-color);
  color: white;
  border: 1px solid #c49c45;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: #c49c45;
  transform: translateY(-5px);
}