@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@300;400;500&display=swap");

:root {
  --gold: rgb(255, 217, 0);
  --gold-dim: rgba(255, 217, 0, 0.45);
  --gold-faint: rgba(255, 217, 0, 0.1);
  --bg: #000017;
  --bg-card: #05051f;
  --bg-navy: #0b1a2a;
  --white: #ffffff;
  --white-dim: rgba(255, 255, 255, 0.62);
  --white-faint: rgba(255, 255, 255, 0.5);
  --accent: #1d6fa4;
  --accent-lt: #2e8fcf;
  --section-bg: #14161a;
  --muted: #8a9099;
  --navbar-h: 90px;
  --radius: 8px;
  --transition: 0.35s ease;

  --card-w-active: 360px;
  --card-h-active: 540px;
  --card-w-side: 260px;
  --card-h-side: 420px;
  --card-w-far: 190px;
  --card-h-far: 310px;
  --gap: 22px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "AbhayaSinhala";
  src: url("/fonts/abhaya.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NotoTamil";
  src: url("/fonts/noto-tamil/NotoSansTamil-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}
/* SINHALA */
.lang-si {
  font-family: "AbhayaSinhala", sans-serif;
  padding-top: var(--navbar-h);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--white);
}

/* TAMIL */
.lang-ta {
  font-family: "NotoTamil", sans-serif;
  padding-top: var(--navbar-h);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--white);
}
/* SINHALA */
.lang-en {
  padding-top: var(--navbar-h);
  background: var(--bg);
  font-family: "Barlow", "Segoe UI", Arial, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--white);
}
body {
  padding-top: var(--navbar-h);
  background: var(--bg);
  font-family: "Barlow", "Segoe UI", Arial, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--white);
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ==================== 1. NAVIGATION ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  background: transparent;
  z-index: 1000;
  transition:
    background 0.6s ease,
    backdrop-filter 0.6s ease,
    box-shadow 0.6s ease,
    border-color 0.6s ease,
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 217, 0, 0) 0%,
    rgba(255, 217, 0, 0.45) 40%,
    rgba(255, 248, 200, 0.7) 50%,
    rgba(255, 217, 0, 0.45) 60%,
    rgba(255, 217, 0, 0) 100%,
    transparent
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.navbar.scrolled::after {
  opacity: 1;
}

.navbar.scrolled {
  background: rgba(3, 9, 18, 0.78);
  backdrop-filter: blur(22px) saturate(1.6) brightness(0.9);
  -webkit-backdrop-filter: blur(22px) saturate(1.6) brightness(0.9);
  box-shadow:
    0 1px 0 rgba(255, 217, 0, 0.08),
    0 12px 48px rgba(0, 0, 0, 0.55);
}

.navbar.hidden {
  transform: translateY(-100%);
}

.logo img {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6));
  transition: filter 0.3s ease;
}

.logo img:hover {
  filter: drop-shadow(0 2px 14px rgba(255, 217, 0, 0.25));
}

.navbar ul {
  display: flex;
  align-items: center;
  gap: 0;
}

.navbar ul li {
  position: relative;
}

.navbar ul li a {
  display: block;
  padding: 30px 16px;
  color: rgba(200, 218, 235, 0.72);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: rgba(255, 217, 0, 0.92);
}

.navbar ul li > a::before {
  content: "";
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: rgba(255, 217, 0, 0.8);
  transition: width 0.4s ease;
  border-radius: 1px;
}

.navbar ul li > a:hover::before,
.navbar ul li > a.active::before {
  width: calc(100% - 28px);
}

.navbar ul li > a::after {
  display: none;
}

.navbar ul li ul {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: rgba(4, 11, 22, 0.96);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  min-width: 240px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 217, 0, 0.28);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.8),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  z-index: 1001;
}

.navbar ul li:hover > ul {
  display: block;
}

.navbar ul li ul li {
  width: 100%;
}

.navbar ul li ul li a {
  padding: 12px 22px;
  font-size: 10.5px;
  color: rgba(170, 195, 215, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.025);
  letter-spacing: 1.8px;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    padding-left 0.3s ease;
}

.navbar ul li ul li a:hover {
  background: rgba(255, 217, 0, 0.04);
  color: rgba(255, 217, 0, 0.88);
  padding-left: 28px;
}

.navbar ul li ul li a::before,
.navbar ul li ul li a::after {
  display: none;
}

.navbar ul li ul li ul {
  top: 0;
  left: 100%;
}

.mobile-nav-toggle {
  display: none;
  cursor: pointer;
  font-size: 22px;
  color: rgba(200, 218, 235, 0.75);
  background: none;
  border: none;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  line-height: 1;
  padding: 8px;
}

.mobile-nav-toggle:hover {
  color: rgba(255, 217, 0, 0.9);
}

@media (max-width: 1000px) {
  .navbar {
    padding: 0 20px;
    flex-wrap: wrap;
    height: auto;
    min-height: var(--navbar-h);
    background: rgba(3, 9, 18, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .navbar ul {
    flex-direction: column;
    background: rgba(3, 9, 18, 0.99);
    position: absolute;
    top: var(--navbar-h);
    left: -100%;
    width: 100%;
    transition: left 0.35s ease;
    z-index: 999;
    padding-bottom: 20px;
    max-height: 80vh;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 217, 0, 0.12);
  }

  .navbar ul.nav-open {
    left: 0;
  }

  .navbar ul li {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }

  .navbar ul li a {
    padding: 15px 24px;
    font-size: 10px;
  }

  .navbar ul li ul {
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: none;
    min-width: unset;
    display: none;
  }

  .navbar ul li:hover > ul {
    display: block;
  }

  .mobile-nav-toggle {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 1000px) {
  /* Completely remove the hover underline effect */
  .navbar ul li > a::before {
    display: none;
  }

  /* Optional: Add a different active indicator for mobile (like a subtle background or border) */
  .navbar ul li a.active {
    background: rgba(255, 217, 0, 0.08);
    border-left: 3px solid rgba(255, 217, 0, 0.8);
  }

  /* Remove the hover underline effect for submenu items too */
  .navbar ul li ul li a::before,
  .navbar ul li ul li a::after {
    display: none;
  }
}
@media (max-width: 1000px) {
  /* Mobile dropdown fixes */
  .navbar ul li.dropdown {
    position: relative;
  }

  .navbar ul li.dropdown > a::after {
    display: inline-block;
    content: "▼";
    font-size: 8px;
    margin-left: 8px;
    transition: transform 0.3s ease;
  }

  .navbar ul li.dropdown.dropdown-open > a::after {
    transform: rotate(180deg);
  }

  .navbar ul li ul.dropdown-menu {
    position: static;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    min-width: unset;
    display: none;
    padding-left: 20px;
    margin-top: 0;
  }

  .navbar ul li.dropdown.dropdown-open > ul.dropdown-menu {
    display: block;
  }

  .navbar ul li ul.dropdown-menu li a {
    padding: 12px 24px 12px 36px;
    font-size: 9px;
  }
}
/* ==================== 2. VIDEO SECTION ==================== */
.video-section {
  width: 100%;
  height: 650px;
  overflow: hidden;
  position: relative;
  background: #000000;
}

.video-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.video-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  pointer-events: none;
  z-index: 5;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  width: 100%;
  pointer-events: none;
}

.hero-text h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0.08em;
  color: white;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
}
.hero-subtitle {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1.7;
  margin-bottom: 18px;
}
.hero-text:hover h1 {
  animation: airforcePulse 0.6s ease-out;
}

@keyframes airforcePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .video-section {
    height: 420px;
  }
  .hero-text h1 {
    font-size: clamp(2.5rem, 10vw, 5rem);
    letter-spacing: 0.05em;
  }
}

@media (max-width: 480px) {
  .video-section {
    height: 280px;
  }
  .hero-text h1 {
    font-size: clamp(1.8rem, 8vw, 3.5rem);
    font-weight: 700;
  }
}

@media (min-width: 1400px) {
  .video-section {
    height: 750px;
  }
  .hero-text h1 {
    font-size: clamp(6rem, 10vw, 10rem);
    letter-spacing: 0.12em;
  }
}

/* ==================== 3. CONTENT SECTION ==================== */
.content {
  padding: 80px 50px;
  background: linear-gradient(135deg, #262626 0%, #1a1a1a 100%);
  position: relative;
}

.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.content-image {
  flex: 1;
  position: relative;
  min-width: 0;
}

.content-image-frame {
  position: relative;
  border-radius: var(--radius);
}

/* Gold corner accent — top-left */
.content-image-frame::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 72px;
  height: 72px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  border-radius: 4px 0 0 0;
  z-index: 2;
  pointer-events: none;
}

/* Gold corner accent — bottom-right */
.content-image-frame::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 72px;
  height: 72px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  border-radius: 0 0 4px 0;
  z-index: 2;
  pointer-events: none;
}

.content-image-frame img {
  width: 100%;
  height: 590px;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  object-fit: cover;
  display: block;
}

/* Subtle dark-to-bottom gradient overlay on the photo */
.content-image-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.04) 0%,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.52) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Floating badge bottom-left */
.content-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(0, 0, 10, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 217, 0, 0.35);
  border-radius: 6px;
  padding: 10px 16px;
}

.content-image-badge-year {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}

.content-image-badge-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.content-text {
  flex: 1;
  min-width: 0;
}

.content-title {
  font-family: "Barlow Condensed", sans-serif;
  color: white;
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 68px);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.content-description {
  font-family: "Barlow", sans-serif;
  font-size: 17px;
  color: #d0dce8;
  line-height: 1.7;
  margin-bottom: 32px;
}

.content-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 36px;
}

.content-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.content-info-item:hover {
  background: rgba(63, 179, 255, 0.08);
  border-color: rgba(63, 179, 255, 0.3);
}

.info-icon {
  font-size: 22px;
  color: #3fb3ff;
  line-height: 1;
  padding-top: 2px;
  flex-shrink: 0;
}

.info-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3fb3ff;
}

.info-value {
  font-size: 14px;
  color: #e6edf5;
  line-height: 1.4;
}

.info-value small {
  font-size: 12px;
  color: #8a9099;
}

.content-link {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(90deg, #072639, #1a384b);
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.content-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #124765, #1469a2);
  transition: left 0.3s ease;
  z-index: -1;
}

.content-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(63, 179, 255, 0.35);
  border-color: #3fb3ff;
}

.content-link:hover::before {
  left: 0;
}

.content-link:active {
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .content {
    padding: 60px 30px;
  }
  .content-wrapper {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .content {
    padding: 50px 24px;
  }
  .content-wrapper {
    flex-direction: column;
    gap: 36px;
  }
  .content-image-frame img {
    height: 340px;
  }
  .content-image-frame::before,
  .content-image-frame::after {
    width: 48px;
    height: 48px;
  }
  .content-title {
    text-align: center;
  }
  .content-description {
    text-align: center;
    font-size: 15px;
  }
  .content-info-grid {
    grid-template-columns: 1fr;
  }
  .content-link {
    display: block;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .content {
    padding: 36px 16px;
  }
  .content-image-frame img {
    height: 260px;
  }
  .content-image-frame::before,
  .content-image-frame::after {
    width: 36px;
    height: 36px;
    top: -7px;
    left: -7px;
  }
  .content-image-frame::after {
    bottom: -7px;
    right: -7px;
    top: auto;
    left: auto;
  }
}

/* ==================== 4. HANGAR ==================== */
.gallery-section {
  background: var(--section-bg);
  padding: 72px 0 80px;
  position: relative;
  box-shadow: inset 0 8px 32px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent) 30%,
    var(--accent-lt) 50%,
    var(--accent) 70%,
    transparent
  );
  opacity: 0.6;
}

/* gallery other  */
/* ── GALLERY HERO ── */
.gallery-hero {
  display: none;
  position: relative;
  min-height: 62vh;
  background: url("../images/background.webp") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 80px 4rem;
  overflow: hidden;
}
.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 23, 0.95) 0%,
    rgba(0, 0, 23, 0.6) 55%,
    rgba(0, 0, 23, 0.35) 100%
  );
  pointer-events: none;
}
.gallery-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.gallery-hero-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.gallery-hero-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
}
.gallery-hero-title span {
  color: var(--gold);
}
.gallery-hero-sub {
  font-family: "Barlow", sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 600px;
}
.gallery-hero-bar {
  display: none;
}

/* ── GALLERY SECTION ── */
.gallery-section {
  background: var(--bg);
  padding: 64px 48px 80px;
} /* ── FILTER BAR ── */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  align-items: center;
}
.gallery-filter-btn {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 9px 22px;
  background: transparent;
  color: var(--white-dim);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}
.gallery-filter-btn:hover {
  color: var(--white);
  border-color: rgba(255, 217, 0, 0.35);
}
.gallery-filter-btn.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
} /* ── MASONRY FLEXBOX GRID ── */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  flex-grow: 1;
  flex-basis: 300px;
  min-width: 180px;
  max-width: 100%;
  background: var(--bg-card);
}
.gallery-item.size-small {
  flex-basis: 200px;
  flex-grow: 0.7;
}
.gallery-item.size-medium {
  flex-basis: 320px;
  flex-grow: 1.1;
}
.gallery-item.size-large {
  flex-basis: 460px;
  flex-grow: 1.6;
}
.gallery-item.size-wide {
  flex-basis: 560px;
  flex-grow: 2;
}
.gallery-item.size-tall {
  flex-basis: 220px;
  flex-grow: 0.6;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition:
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.5s ease;
  filter: brightness(0.92) saturate(0.95);
}
.gallery-item:hover img {
  transform: scale(1.045);
  filter: brightness(1.05) saturate(1.1);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 17, 0.82) 0%,
    rgba(0, 0, 17, 0.2) 55%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 14px 16px;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
  pointer-events: auto;
}
.gallery-item-caption {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--white);
}
.gallery-item-zoom {
  background: rgba(255, 217, 0, 0.15);
  border: 1px solid rgba(255, 217, 0, 0.4);
  color: var(--gold);
  width: 34px;
  height: 34px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  flex-shrink: 0;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}
.gallery-item-zoom:hover {
  background: var(--gold);
  color: #000;
}
.gallery-item.hidden {
  display: none;
}
.gallery-count {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 28px;
  text-align: center;
} /* ── LIGHTBOX ── */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 17, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.gallery-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-inner img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid rgba(255, 217, 0, 0.15);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.8);
  border-radius: 2px;
}
.lightbox-caption {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
  text-align: center;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
  font-size: 18px;
}
.lightbox-close {
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
}
.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 64px;
}
.lightbox-prev {
  left: 20px;
}
.lightbox-next {
  right: 20px;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 217, 0, 0.12);
  border-color: rgba(255, 217, 0, 0.4);
  color: var(--gold);
} /* ── GALLERY RESPONSIVE ── */
@media (max-width: 900px) {
  .gallery-section {
    padding: 48px 24px 60px;
  }
  .gallery-hero {
    padding: 5rem 40px 3rem;
  }
}
@media (max-width: 640px) {
  .gallery-section {
    padding: 36px 12px 48px;
  }
  .gallery-grid {
    gap: 4px;
  }
  .gallery-hero {
    padding: 4rem 24px 2.5rem;
    min-height: 50vh;
  }
  .gallery-item.size-wide {
    flex-basis: 100%;
  }
  .gallery-item.size-large {
    flex-basis: 90%;
  }
  .lightbox-prev {
    left: 8px;
  }
  .lightbox-next {
    right: 8px;
  }
}
.section-head {
  padding: 0 64px 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.section-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ffc107;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}

.section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
}

.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  width: 52px;
  height: 52px;
  background: rgba(20, 22, 26, 0.85);
  border: 1px solid rgba(45, 143, 207, 0.5);
  border-radius: 50%;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.arrow-btn:hover {
  background: var(--accent);
  border-color: var(--accent-lt);
  color: #fff;
}

.arrow-btn svg {
  width: 22px;
  height: 22px;
}

#prevBtn {
  left: 18px;
}
#nextBtn {
  right: 18px;
}

.carousel-outer {
  position: relative;
  width: 100%;
}

.carousel-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: calc(var(--card-h-active) + 40px);
}

.carousel-viewport::before,
.carousel-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  pointer-events: none;
  z-index: 10;
}

.carousel-viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--section-bg), transparent);
}

.carousel-viewport::after {
  right: 0;
  background: linear-gradient(-90deg, var(--section-bg), transparent);
}

.carousel-track {
  display: flex;
  align-items: flex-end;
  gap: var(--gap);
  padding: 28px 0 12px;
  transition: transform 0.55s ease-in-out;
  will-change: transform;
}

.card {
  flex: 0 0 auto;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  width: var(--card-w-far);
  height: var(--card-h-far);
  transition:
    width 0.45s ease-in-out,
    height 0.45s ease-in-out,
    filter 0.45s ease,
    box-shadow 0.45s ease;
  filter: brightness(0.42) saturate(0.55);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.5);
}

.card.side {
  width: var(--card-w-side);
  height: var(--card-h-side);
  filter: brightness(0.64) saturate(0.78);
  cursor: pointer;
}

.card.active {
  width: var(--card-w-active);
  height: var(--card-h-active);
  filter: brightness(1) saturate(1);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.85),
    0 0 0 2px var(--accent);
  z-index: 3;
  cursor: default;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  transition: background 0.3s ease;
}

.card:not(.active) .card-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.card.active .card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.1) 60%,
    transparent 100%
  );
}

.card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 22px 20px 18px;
  opacity: 0;
  transition: opacity 0.35s ease 0.1s;
}

.card.active .card-caption {
  opacity: 1;
}

.card-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-lt);
  margin-bottom: 6px;
}

.card-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.card-sub {
  font-size: 5px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
  line-height: 1.4;
  max-height: 80px;
  overflow-y: auto;
}

.card-sub::-webkit-scrollbar {
  width: 3px;
}
.card-sub::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.card-sub::-webkit-scrollbar-thumb {
  background: var(--accent-lt);
  border-radius: 10px;
}

.card-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  line-height: 1.35;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 6px;
  max-height: 70px;
  overflow-y: auto;
}

.card-desc::-webkit-scrollbar {
  display: none;
}

.carousel-foot {
  padding: 32px 64px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

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

.dot {
  height: 4px;
  border-radius: 3px;
  width: 24px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  border: none;
  transition:
    background 0.2s ease,
    width 0.2s ease;
}

.dot.active {
  background: var(--accent-lt);
  width: 44px;
}

.dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.4);
}

.count-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.count-label strong {
  color: #fff;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  :root {
    --card-w-active: 280px;
    --card-h-active: 440px;
    --card-w-side: 200px;
    --card-h-side: 340px;
    --card-w-far: 150px;
    --card-h-far: 260px;
  }
  .section-head,
  .carousel-foot {
    padding-left: 24px;
    padding-right: 24px;
  }
  .arrow-btn {
    width: 44px;
    height: 44px;
  }
  .arrow-btn svg {
    width: 18px;
    height: 18px;
  }
  .card-title {
    font-size: 1rem;
  }
  .card-sub {
    font-size: 0.65rem;
  }
  .card-desc {
    font-size: 0.6rem;
    max-height: 55px;
  }
}

@media (max-width: 480px) {
  :root {
    --card-w-active: 220px;
    --card-h-active: 360px;
    --card-w-side: 160px;
    --card-h-side: 280px;
    --card-w-far: 110px;
    --card-h-far: 210px;
  }
  .arrow-btn {
    width: 38px;
    height: 38px;
  }
  #prevBtn {
    left: 8px;
  }
  #nextBtn {
    right: 8px;
  }
}

/* ==================== 5. MAP SECTION ==================== */
.reviews-section {
  width: 100%;
  background: linear-gradient(135deg, #262626 0%, #1a1a1a 100%);
  padding: 0;
}

.reviews-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  min-height: 640px;
}

.reviews-content {
  flex: 1;
  padding: 80px 60px 80px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.reviews-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ffc107;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}

.reviews-title {
  font-family: "Barlow Condensed", sans-serif;
  color: white;
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 68px);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 18px;
}

.reviews-description {
  font-size: 16px;
  color: #d0dce8;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 480px;
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  width: fit-content;
}

.rating-score {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffd900;
  line-height: 1;
}

.rating-stars {
  display: flex;
  gap: 3px;
  color: #ffd900;
  font-size: 18px;
  margin-bottom: 5px;
}

.rating-source {
  font-size: 12px;
  color: #8a9099;
  letter-spacing: 0.05em;
}

.review-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.review-card:hover {
  background: rgba(63, 179, 255, 0.06);
  border-color: rgba(63, 179, 255, 0.22);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #0b6ca0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #e6edf5;
  margin-bottom: 3px;
}

.review-stars {
  display: flex;
  gap: 2px;
  color: #ffd900;
  font-size: 12px;
}

.google-icon {
  color: #8a9099;
  font-size: 16px;
}

.review-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  font-style: italic;
}

/* ── STATS PANEL (replaces map) ── */
.reviews-stats-panel {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 70px 50px;
  background: linear-gradient(160deg, #0b1a2a 0%, #060f1a 60%, #000017 100%);
  border-left: 1px solid rgba(255, 217, 0, 0.1);
  overflow: hidden;
  gap: 0;
}

/* Subtle background glow */
.reviews-stats-panel::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 217, 0, 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.reviews-stats-panel::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle at top right,
    rgba(29, 111, 164, 0.45) 0%,
    rgba(29, 111, 164, 0.18) 40%,
    transparent 70%
  );
  pointer-events: none;
  border-radius: 0 0 0 100%;
}

.stats-panel-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  transition:
    background 0.35s ease,
    border-color 0.35s ease;
}

.stat-item:hover {
  background: rgba(255, 217, 0, 0.05);
  border-color: rgba(255, 217, 0, 0.2);
}

.stat-item:hover .stat-number {
  color: var(--gold);
}

.stat-number {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -1px;
  transition: color 0.35s ease;
  /* animated counter handled by JS — starts at 0 */
}

.stat-number .stat-suffix {
  font-size: 0.55em;
  font-weight: 700;
  color: var(--gold);
  vertical-align: super;
  letter-spacing: 0;
}

.stat-icon {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 10px;
  opacity: 0.75;
}

.stat-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 8px;
  line-height: 1.3;
}

.stat-divider {
  width: 24px;
  height: 2px;
  background: var(--gold);
  opacity: 0.4;
  margin: 6px auto 0;
}

@media (max-width: 1024px) {
  .reviews-content {
    padding: 60px 40px 60px 36px;
  }
  .reviews-stats-panel {
    padding: 60px 36px;
  }
}

@media (max-width: 768px) {
  .reviews-wrapper {
    flex-direction: column;
  }
  .reviews-content {
    padding: 50px 24px 40px;
  }
  .reviews-stats-panel {
    padding: 50px 24px;
    border-left: none;
    border-top: 1px solid rgba(255, 217, 0, 0.1);
  }
  .reviews-title {
    font-size: clamp(32px, 7vw, 52px);
  }
  .stat-number {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
}

@media (max-width: 480px) {
  .reviews-content {
    padding: 36px 16px;
  }
  .rating-summary {
    width: 100%;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .stat-item {
    padding: 28px 12px;
  }
}

/* ==================== 6. OUR HISTORY ==================== */
.slider-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  position: relative;
  width: 100%;
}

.slider-section-header {
  padding: 56px 80px 0;
}

.slider-header-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ffc107;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}

.slider-header-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1;
  margin-bottom: 0;
}

.slider-container {
  width: 100%;
  position: relative;
  margin-top: 0;
}

.slider-wrapper {
  width: 100%;
  overflow: hidden;
  background: #000;
  height: 500px;
  margin-top: 36px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.slider-slide {
  min-width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-overlay {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.72);
  padding: 60px 80px;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.slide-overlays {
  position: absolute;
  right: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.72);
  padding: 60px 80px;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.slide-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  line-height: 1.3;
  color: white;
}

.slide-description,
.slide-descriptions {
  font-family: "Barlow", sans-serif;
  font-size: clamp(13px, 1.2vw, 15px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 400px;
}

.slide-btn {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  line-height: 1;
}

.slide-btn:hover {
  color: #3fb3ff;
  transform: translateY(-3px);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 22px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffd900;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 30px;
}
.next-btn {
  right: 30px;
}

.slider-indicators {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  position: absolute;
  bottom: 25px;
  left: 80px;
  z-index: 15;
}

.indicator {
  width: 12px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.indicator.active {
  background: #ffd900;
  width: 30px;
}

.indicator:hover {
  background: rgba(255, 217, 0, 0.6);
}

@media (max-width: 968px) {
  .slider-section-header {
    padding: 40px 40px 0;
  }
  .slider-wrapper {
    height: 420px;
  }
  .slide-overlay,
  .slide-overlays {
    padding: 40px 50px;
    width: 60%;
  }
  .prev-btn {
    left: 15px;
  }
  .next-btn {
    right: 15px;
  }
  .slider-indicators {
    left: 50px;
  }
}

@media (max-width: 768px) {
  .slider-section-header {
    padding: 32px 24px 0;
  }
  .slider-wrapper {
    height: 360px;
  }
  .slide-overlay,
  .slide-overlays {
    padding: 30px 36px;
    width: 100%;
    background: rgba(0, 0, 0, 0.82);
  }
  .slide-overlays {
    position: relative;
    right: auto;
  }
  .prev-btn {
    left: 10px;
  }
  .next-btn {
    right: 10px;
  }
  .slider-indicators {
    left: 24px;
  }
}

@media (max-width: 480px) {
  .slider-section-header {
    padding: 24px 16px 0;
  }
  .slider-wrapper {
    height: 300px;
  }
  .slide-overlay,
  .slide-overlays {
    padding: 20px 22px;
    justify-content: flex-end;
  }
  .slide-btn {
    font-size: 40px;
  }
  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .prev-btn {
    left: 6px;
  }
  .next-btn {
    right: 6px;
  }
  .slider-indicators {
    left: 16px;
    bottom: 12px;
  }
}

/* history other  */
/* ==================== 12. HISTORY PAGE ==================== */

/* -- Hero -- */
.hist-hero {
  position: relative;
  min-height: 62vh;
  background: url("../images/background.webp") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 80px 4rem;
  overflow: hidden;
}

.hist-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 17, 0.92) 0%,
    rgba(0, 0, 17, 0.55) 60%,
    rgba(0, 0, 17, 0.35) 100%
  );
  pointer-events: none;
}

.hist-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hist-hero-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.hist-hero-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 22px;
}

.hist-hero-title span {
  color: var(--gold);
}

.hist-hero-sub {
  font-family: "Barlow", sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 600px;
}

.hist-hero-bar {
  display: none;
}

/* -- Main wrapper -- */
.hist-main {
  max-width: 1240px;
  margin: 1rem  auto;
  padding: 0 64px 1rem;
}
main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent) 30%,
    var(--accent-lt) 50%,
    var(--accent) 70%,
    transparent
  );
  opacity: 0.6;
  z-index: 9999;
}
/* -- Era section -- */
.hist-era {
  /* margin-top: 7rem; */
  position: relative;
}

.hist-era-year {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(5rem, 16vw, 12rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 217, 0, 0.22);
  line-height: 1;
  margin-bottom: -2rem;
  margin-left: -0.04em;
  user-select: none;
  letter-spacing: -0.02em;
}

.hist-era-header {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  margin-bottom: 3rem;
}

.hist-era-badge {
  flex-shrink: 0;
  background: rgba(255, 217, 0, 0.08);
  color: var(--gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-left: 3px solid var(--gold);
  margin-top: 6px;
  white-space: nowrap;
}

.hist-era-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.1;
}

.hist-era-title span {
  color: var(--gold);
}

/* -- Content block -- */
/* .hist-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-bottom: 4rem;
}

.hist-block--reverse {
  direction: rtl;
}
.hist-block--reverse > * {
  direction: ltr;
}

.hist-block-img {
  position: relative;
  overflow: hidden;
}

.hist-block-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) saturate(0.82);
  transition:
    filter 0.4s,
    transform 0.4s;
}

.hist-block-img:hover img {
  filter: brightness(1) saturate(1);
  transform: scale(1.02);
}

.hist-block-imgcap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 17, 0.82));
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  padding: 2rem 0.75rem 0.5rem;
  letter-spacing: 0.03em;
}

.hist-block-text {
  padding-top: 4px;
}

.hist-block-eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.hist-block-heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.15;
}

.hist-block-divider {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.2rem;
}

.hist-block-text p {
  font-size: 15px;
  color: rgba(200, 218, 235, 0.8);
  line-height: 1.75;
  margin-bottom: 1rem;
} */
/* Base block layout */
.hist-block {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.hist-block-img {
    flex: 1;
}

.hist-block-text {
    flex: 1;
}

/* Image left (default) */
.hist-block:not(.hist-block--reverse) .hist-block-img {
    order: 1;
}

.hist-block:not(.hist-block--reverse) .hist-block-text {
    order: 2;
}

/* Image right (reverse) */
.hist-block--reverse .hist-block-img {
    order: 2;
}

.hist-block--reverse .hist-block-text {
    order: 1;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
    .hist-block {
        flex-direction: column;
    }
    
    .hist-block-img,
    .hist-block-text {
        order: unset !important;
    }
}

/* -- Callout banner -- */
.hist-callout {
  position: relative;
  background: linear-gradient(135deg, #06101e 0%, #0b1a2a 100%);
  border-left: 3px solid var(--gold);
  padding: 3.5rem 4rem;
  margin: 3.5rem 0;
  overflow: hidden;
}

.hist-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/background.webp") center/cover no-repeat;
  opacity: 0.04;
  pointer-events: none;
}

.hist-callout-year {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  position: relative;
  letter-spacing: -0.02em;
}

.hist-callout-dash {
  display: inline-block;
  width: clamp(32px, 5vw, 64px);
  height: 5px;
  background: #c0392b;
  vertical-align: middle;
  margin-left: 1rem;
  margin-bottom: 0.6rem;
}

.hist-callout-text {
  position: relative;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(14px, 1.5vw, 17px);
  max-width: 680px;
  line-height: 1.7;
}

.hist-callout-label {
  position: relative;
  margin-top: 1.2rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* -- Responsive -- */
@media (max-width: 1024px) {
  .hist-main {
    padding: 0 40px 6rem;
  }
  .hist-hero {
    padding: 5rem 40px 3rem;
  }
}

@media (max-width: 768px) {
  .hist-hero {
    padding: 4rem 24px 2.5rem;
    min-height: 50vh;
  }
  .hist-main {
    padding: 0 20px 4rem;
  }
  .hist-era {
    margin-top: 4rem;
  }
  .hist-era-year {
    font-size: clamp(3.5rem, 20vw, 6rem);
  }
  .hist-block {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hist-block--reverse {
    direction: ltr;
  }
  .hist-block-img img {
    height: 220px;
  }
  .hist-callout {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hist-main {
    padding: 0 16px 3rem;
  }
}

/* ==================== 7. LINKS SECTION ==================== */
.links-section {
  width: 100%;
  background: #1a1a1a;
  padding: 60px 0;
}

.links-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.tagline {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ffc107;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}

.main-heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(56px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 50px;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: #fff;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.links-section .link-card {
  position: relative;
  height: 440px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.links-section .link-card:hover {
  transform: scale(1.02);
  box-shadow: 0 22px 60px rgba(255, 193, 7, 0.28);
}

.link-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.links-section .link-card:hover .link-card-image {
  transform: scale(1.07);
}

.link-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.55) 40%,
    transparent 100%
  );
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.4s ease;
}

.links-section .link-card:hover .link-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.98) 0%,
    rgba(0, 0, 0, 0.72) 40%,
    transparent 100%
  );
}

.link-card-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: #fff;
  transition: all 0.3s ease;
}

.links-section .link-card:hover .link-card-title {
  transform: translateY(-8px);
  color: #ffc107;
}

.link-card-description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.links-section .link-card:hover .link-card-description {
  transform: translateY(-5px);
}

.link-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 193, 7, 0.2);
  border-radius: 50%;
  font-size: 20px;
  color: white;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-10px);
}

.links-section .link-card:hover .link-card-arrow {
  opacity: 1;
  transform: translateX(0);
  background: rgba(255, 193, 7, 0.45);
}

@media (max-width: 768px) {
  .links-container {
    padding: 0 20px;
  }
  .main-heading {
    font-size: 48px;
    margin-bottom: 36px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .links-section .link-card {
    height: 360px;
  }
}

/* ==================== 8. SERVICES SECTION ==================== */
.services {
  width: 100%;
  background: linear-gradient(135deg, #061622 5%, #253039 100%);
}

.services .hero-section {
  position: relative;
  min-height: 100vh;
  padding-left: 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.services .hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  position: relative;
}

.services .hero-content {
  flex: 0 0 50%;
  z-index: 10;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.services .hero-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ffc107;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}

.services .hero-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: rgb(255, 255, 255);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.services .hero-description {
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.65;
  color: #fffefe;
  margin-bottom: 40px;
  max-width: 500px;
}

.services .hero-links {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.services .hero-note .note-title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: rgb(228, 228, 93);
  margin-bottom: 6px;
}

.services .hero-note .note-text {
  font-size: clamp(12px, 1.2vw, 16px);
  line-height: 1.55;
  color: #ffffff;
}

.services .hero-image-container {
  flex: 0 0 50%;
  height: 100vh;
  /* padding-right: 100px; */
  position: relative;
  /* overflow: hidden; */
  /* margin-right: -80px; */
}

.services .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

@media (max-width: 1024px) {
  .services .hero-section {
    padding-left: 40px;
  }
  .services .hero-image-container {
    margin-right: -40px;
    padding-right: 60px;
  }
}

@media (max-width: 768px) {
  .services .hero-section {
    padding: 50px 24px;
    min-height: auto;
  }
  .services .hero-container {
    flex-direction: column;
    gap: 0;
  }
  .services .hero-content {
    flex: none;
    width: 100%;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .services .hero-image-container {
    flex: none;
    width: 100%;
    height: 50vw;
    min-height: 220px;
    margin-right: 0;
    padding-right: 0;
    margin-top: 36px;
  }
}

/* ==================== 9. FOOTER ==================== */
.footer {
  background-color: #0a1a2f;
  color: #ffffff;
  font-family: "Barlow", "Segoe UI", Arial, sans-serif;
  padding: 48px 60px 0;
  width: 100%;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-about {
  flex: 2;
  min-width: 260px;
}

.footer-about h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: #ffffff;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 600;
  color: #ffd966;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  color: #b0bec5;
  max-width: 420px;
}

.footer-contact {
  flex: 1.5;
  min-width: 240px;
}

.footer-contact h3,
.footer-services h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
  display: inline-block;
  color: #fff;
}

.footer-contact h3::after,
.footer-services h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 36px;
  height: 2px;
  background-color: #ffd966;
}

.contact-info {
  margin-top: 4px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #d0dce8;
}

.contact-icon {
  font-size: 16px;
  min-width: 24px;
  padding-top: 1px;
}

.contact-item a {
  color: #d0dce8;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: #ffd966;
}

.address {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.7;
  color: #b0bec5;
}

.address p {
  margin-bottom: 2px;
}

.footer-services {
  flex: 1.2;
  min-width: 200px;
}

.services-list {
  list-style: none;
  margin-top: 4px;
}

.services-list li {
  margin-bottom: 11px;
  font-size: 14px;
  color: #d0dce8;
  position: relative;
  padding-left: 18px;
}

.services-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: #ffd966;
  font-size: 16px;
  font-weight: bold;
}

.services-list li a {
  color: #d0dce8;
  transition: color 0.2s;
}

.services-list li a:hover {
  color: #ffd966;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 0 20px;
  text-align: center;
  font-size: 13px;
  color: #6a7a8a;
}

@media (max-width: 900px) {
  .footer {
    padding: 40px 30px 0;
  }
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  .footer-about p {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 32px 16px 0;
  }
}

/* ==================== 10. UTILITIES ==================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group .reveal:nth-child(1) {
  transition-delay: 0.05s;
}
.reveal-group .reveal:nth-child(2) {
  transition-delay: 0.18s;
}
.reveal-group .reveal:nth-child(3) {
  transition-delay: 0.31s;
}
.reveal-group .reveal:nth-child(4) {
  transition-delay: 0.44s;
}

/* ==================== 11. TICKETS PAGE ==================== */

/* -- HERO -- */
.tickets-hero {
  position: relative;
  min-height: 62vh;
  background: url("../images/background.webp") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 80px 4rem;
  overflow: hidden;
}

.tickets-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 17, 0.92) 0%,
    rgba(0, 0, 17, 0.55) 60%,
    rgba(0, 0, 17, 0.35) 100%
  );
  pointer-events: none;
}

.tickets-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.tickets-hero-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.tickets-hero-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 22px;
}

.tickets-hero-title span {
  color: var(--gold);
}

.tickets-hero-sub {
  font-family: "Barlow", sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 600px;
}

.tickets-hero-bar {
  display: none;
}

/* -- SECTION -- */
.tickets-section {
  padding: 56px 10%;
  background: var(--bg);
}

@media (max-width: 768px) {
  .tickets-hero {
    min-height: 50vh;
    padding: 4rem 30px 3rem;
  }
}

.tickets-section-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.tickets-section h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.tickets-section p {
  color: #d0dce8;
  line-height: 1.75;
  margin-bottom: 12px;
  max-width: 720px;
  font-size: 15px;
}

.tickets-section p strong {
  color: var(--white);
}

hr.tickets-divider {
  border: none;
  border-top: 1px solid var(--gold-dim);
  margin: 0 10%;
}

/* -- INFO PILLS -- */
.tickets-info-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.tickets-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-navy);
  color: var(--white-dim);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 217, 0, 0.18);
}

.tickets-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* -- TICKET GRID -- */
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

@media (max-width: 1100px) {
  .tickets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .tickets-grid {
    grid-template-columns: 1fr;
  }
}

/* -- TICKET CARD -- */
.ticket-card {
  background: var(--bg-card);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ticket-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(255, 217, 0, 0.12);
}

.ticket-img-wrap {
  height: 150px;
  background: var(--bg-navy);
  overflow: hidden;
}

.ticket-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(15%) brightness(0.9);
  display: block;
}

.ticket-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ticket-cat {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.ticket-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.ticket-sub {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.ticket-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 14px;
}

.ticket-price {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
}

.ticket-type {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.ticket-btn {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid rgba(255, 217, 0, 0.3);
  background: rgba(255, 217, 0, 0.06);
  color: var(--gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
  margin-top: auto;
}

.ticket-btn:hover {
  background: rgba(255, 217, 0, 0.14);
  border-color: var(--gold);
  color: var(--white);
}

.ticket-btn.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.ticket-details {
  display: none;
  margin-top: 12px;
  font-size: 13px;
  color: #d0dce8;
  line-height: 1.9;
  border-top: 1px dashed rgba(255, 217, 0, 0.2);
  padding-top: 10px;
}

.ticket-details.show {
  display: block;
}

/* -- FLOATING BUTTONS -- */
.tickets-fab {
  position: fixed;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    opacity 0.3s;
  z-index: 100;
}

.tickets-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.tickets-fab-back {
  bottom: 28px;
  left: 28px;
  background: var(--bg-navy);
  color: var(--white-dim);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tickets-fab-top {
  bottom: 28px;
  right: 28px;
  background: var(--gold);
  color: var(--bg);
  opacity: 0;
  pointer-events: none;
}

.tickets-fab-top.visible {
  opacity: 1;
  pointer-events: auto;
}

/* -- ANIMATIONS -- */
@keyframes up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tickets-hero-content {
  animation: up 0.6s ease both;
}
.tickets-info-section {
  animation: up 0.6s ease 0.1s both;
}

.ticket-card {
  opacity: 0;
  animation: up 0.5s ease both;
}
.ticket-card:nth-child(1) {
  animation-delay: 0.15s;
}
.ticket-card:nth-child(2) {
  animation-delay: 0.25s;
}
.ticket-card:nth-child(3) {
  animation-delay: 0.35s;
}
.ticket-card:nth-child(4) {
  animation-delay: 0.45s;
}

@media (max-width: 640px) {
  .tickets-section {
    padding: 40px 6%;
  }
  hr.tickets-divider {
    margin: 0 6%;
  }
}

/* ==================== 11. CONTACT PAGE ==================== */
/* -- Hero -- */
.contact-hero {
  position: relative;
  min-height: 62vh;
  background: url("../images/background.webp") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 80px 4rem;
  overflow: hidden;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 17, 0.92) 0%,
    rgba(0, 0, 17, 0.55) 60%,
    rgba(0, 0, 17, 0.35) 100%
  );
  pointer-events: none;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.contact-hero-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.contact-hero-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 22px;
}

.contact-hero-title span {
  color: var(--gold);
}

.contact-hero-sub {
  font-family: "Barlow", sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 600px;
}

.contact-hero-bar {
  display: none;
}

/* ── WRAPPER ── */
.contact-card {
  display: flex;
  width: 100%;
  margin: 0;
  min-height: calc(100vh - var(--navbar-h));
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

/* ── LEFT PANEL ── */
.contact-left {
  width: 40%;
  flex-shrink: 0;
  position: relative;
  background: #1a1c12;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 48px;
  overflow: hidden;
}

.contact-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 80% 70%,
      rgba(50, 70, 40, 0.8) 0%,
      transparent 50%
    ),
    linear-gradient(160deg, #1a1c12 0%, #2b3018 50%, #1a1c12 100%);
  z-index: 0;
}

.contact-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(200, 184, 122, 0.04) 40px,
    rgba(200, 184, 122, 0.04) 41px
  );
  z-index: 1;
}

.contact-left-content {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  margin: 0 auto;
}

.contact-left-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255, 217, 0, 0.9);
  margin-bottom: 16px;
}

.contact-left h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.05;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.contact-left p {
  font-size: 15px;
  color: rgba(230, 237, 245, 0.75);
  line-height: 1.7;
  max-width: none;
}

/* ── LEFT DETAILS ── */
.contact-details {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.contact-detail {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 18px 18px 16px;
  backdrop-filter: blur(10px);
}

.contact-detail-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 217, 0, 0.92);
  margin-bottom: 6px;
}

.contact-detail-value {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

.contact-detail-sub {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: rgba(230, 237, 245, 0.68);
}

/* ── RIGHT PANEL ── */
.contact-right {
  flex: 1;
  background: rgba(255, 255, 255, 0.98);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

/* ── RIGHT MAP ── */
.contact-map {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - var(--navbar-h));
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - var(--navbar-h));
  border: 0;
  display: block;
  filter: grayscale(0.12) contrast(1.05);
}

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
  .contact-card {
    flex-direction: column;
    width: 100%;
  }
  .contact-left {
    width: 100%;
    min-height: 220px;
    padding: 38px 26px;
  }
  .contact-right {
    padding: 0;
  }
  .contact-left p {
    max-width: none;
  }
  .contact-map,
  .contact-map iframe {
    min-height: 360px;
  }
}

/* shop-hero styling  */
/* ========== SHOP HERO SECTION ========== */
.shop-hero {
  position: relative;
  min-height: 62vh;
  background: url("../images/background.webp") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 80px 4rem;
  overflow: hidden;
}

.shop-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 23, 0.95) 0%,
    rgba(0, 0, 23, 0.6) 55%,
    rgba(0, 0, 23, 0.35) 100%
  );
  pointer-events: none;
}

.shop-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.shop-hero-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.shop-hero-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.shop-hero-title span {
  color: var(--gold);
}

.shop-hero-sub {
  font-family: "Barlow", sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 600px;
}

.shop-hero-bar {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .shop-hero {
    padding: 4rem 30px 3rem;
  }
}
/* shop con styling  */
/* ========== SHOP CONTAINER STYLES ========== */
.shop-section-wrapper {
  padding: 2rem 0;
}
.shop-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
/* ==================== SHOP CONTACT NOTICE ==================== */
.shop-contact-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(
    135deg,
    rgba(255, 217, 0, 0.1) 0%,
    rgba(0, 69, 110, 0.1) 100%
  );
  border: 1px solid rgba(255, 217, 0, 0.3);
  border-radius: 12px;
  padding: 15px 25px;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.shop-contact-notice:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 217, 0, 0.15) 0%,
    rgba(0, 69, 110, 0.15) 100%
  );
  border-color: var(--gold);
  transform: translateY(-2px);
}

.shop-contact-notice i {
  font-size: 24px;
  color: var(--gold);
  flex-shrink: 0;
}

.shop-contact-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.shop-contact-text strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
}

.shop-contact-text span {
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  color: var(--white-dim);
}

.shop-contact-text a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.shop-contact-text a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .shop-contact-notice {
    flex-direction: column;
    text-align: center;
    padding: 15px 20px;
    margin-top: 30px;
  }

  .shop-contact-notice i {
    font-size: 28px;
  }

  .shop-contact-text strong {
    font-size: 12px;
  }

  .shop-contact-text span,
  .shop-contact-text a {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .shop-contact-notice {
    padding: 12px 15px;
    margin-top: 25px;
  }

  .shop-contact-notice i {
    font-size: 22px;
  }
}
.shop-section {
  margin-bottom: 2rem;
}

/* Section Titles */
.shop-title-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}

.shop-section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  /* color: #1e2a32; */
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.shop-title-underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c9a03d, #00456e);
  margin: 0 auto;
  border-radius: 2px;
}

/* Products Grid */
.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

/* Product Card */
.shop-product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

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

/* Product Image */
.shop-product-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f5f5f5;
}

.shop-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.shop-product-card:hover .shop-product-image img {
  transform: scale(1.05);
}

/* Product Info */
.shop-product-info {
  padding: 1.25rem;
  text-align: center;
}

.shop-product-title {
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1e2a32;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.shop-product-price {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #c9a03d;
  margin-bottom: 1rem;
}

/* Add to Cart Button */
.shop-add-btn {
  display: none;
  width: 100%;
  background: #00456e;
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  font-family: "Barlow", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.shop-add-btn:hover {
  background: #c9a03d;
  transform: scale(0.98);
}

/* Responsive Design */
@media (max-width: 768px) {
  .shop-container {
    padding: 0 1rem;
  }

  .shop-section-title {
    font-size: 1.8rem;
  }

  .shop-products-grid {
    gap: 1.25rem;
  }

  .shop-product-image {
    height: 200px;
  }

  .shop-product-title {
    font-size: 0.9rem;
  }

  .shop-product-price {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .shop-products-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== INTRO CONTENT ENHANCEMENTS ==================== */
.content-eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.content-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 32px;
  border-left: 2px solid var(--gold-dim);
  padding-left: 20px;
}

.content-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.content-highlight-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.content-highlight-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.content-highlight-item strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.content-highlight-item span {
  font-size: 0.85rem;
  color: var(--white-dim);
}

@media (max-width: 768px) {
  .content-highlights {
    margin: 20px 0 24px;
  }
}

/* ==================== COURSES PAGE ==================== */

/* Hero */
.course-hero {
  position: relative;
  min-height: 62vh;
  background: url("../images/background.webp") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 80px 4rem;
  overflow: hidden;
}

.course-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 17, 0.92) 0%,
    rgba(0, 0, 17, 0.55) 60%,
    rgba(0, 0, 17, 0.35) 100%
  );
  pointer-events: none;
}

.course-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.course-hero-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.course-hero-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 22px;
}

.course-hero-title span {
  color: var(--gold);
}

.course-hero-sub {
  font-family: "Barlow", sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 600px;
}

.course-hero-bar {
  display: none;
}

/* Overview Strip */
.courses-overview-strip {
  background: var(--bg-navy);
  border-top: 1px solid rgba(255, 217, 0, 0.1);
  border-bottom: 1px solid rgba(255, 217, 0, 0.1);
  padding: 32px 48px;
}

.courses-overview-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.courses-overview-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 180px;
}

.courses-overview-item i {
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.courses-overview-item div {
  display: flex;
  flex-direction: column;
}

.courses-overview-item strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.courses-overview-item span {
  font-size: 0.8rem;
  color: var(--white-dim);
}

.courses-overview-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 217, 0, 0.2);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .courses-overview-strip {
    padding: 24px 20px;
  }
  .courses-overview-divider {
    display: none;
  }
  .courses-overview-inner {
    gap: 16px;
  }
  .courses-overview-item {
    min-width: calc(50% - 8px);
    flex: none;
  }
}

/* Tabs */
.courses-tabs-section {
  background: var(--bg);
  padding: 36px 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.courses-tabs-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.courses-tab-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 18px 28px 22px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  color: var(--white-dim);
  transition: all 0.3s ease;
  text-align: left;
  flex: 1;
  min-width: 160px;
}

.courses-tab-btn i {
  font-size: 1.5rem;
  color: inherit;
}

.courses-tab-btn span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.courses-tab-btn em {
  font-style: normal;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.courses-tab-btn:hover {
  color: var(--white);
  border-bottom-color: var(--gold-dim);
}

.courses-tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

@media (max-width: 768px) {
  .courses-tabs-section {
    padding: 24px 16px 0;
  }
  .courses-tab-btn {
    min-width: calc(50% - 4px);
    padding: 14px 16px 18px;
  }
  .courses-tab-btn em {
    display: none;
  }
}

@media (max-width: 480px) {
  .courses-tab-btn {
    min-width: calc(50% - 4px);
  }
}

/* Module Sections */
.courses-module-section {
  padding: 80px 48px;
  background: var(--bg);
}

.courses-module-section--alt {
  background: var(--bg-card);
}

.hidden-module {
  display: none;
}
.active-module {
  display: block;
}

.courses-module-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.courses-module-section--alt .courses-module-inner {
  direction: rtl;
}

.courses-module-section--alt .courses-module-content,
.courses-module-section--alt .courses-module-image {
  direction: ltr;
}

.courses-module-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.courses-module-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  filter: brightness(0.88);
  transition: filter 0.4s ease;
}

.courses-module-image:hover img {
  filter: brightness(1);
}

.courses-module-img-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.courses-module-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.courses-module-badge {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.courses-module-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  letter-spacing: 1px;
}

.courses-module-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.courses-meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--gold-dim);
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
}

.courses-module-desc {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.75;
  border-left: 2px solid var(--gold-dim);
  padding-left: 16px;
}

.courses-topic-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 8px 0;
}

.courses-topic-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--white-dim);
}

.courses-topic-list li i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.courses-enrol-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--gold);
  color: #000;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 8px;
}

.courses-enrol-btn:hover {
  background: #fff;
  color: #000;
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .courses-module-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    direction: ltr !important;
  }
  .courses-module-section {
    padding: 48px 24px;
  }
  .courses-module-image img {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .courses-module-section {
    padding: 36px 16px;
  }
  .courses-module-image img {
    height: 220px;
  }
  .courses-overview-item {
    min-width: 100%;
  }
}

/* ==================== SHOP RESPONSIVE FIXES ==================== */
@media (max-width: 768px) {
  .shop-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .shop-product-image {
    height: 160px;
  }
  .shop-product-info {
    padding: 0.75rem;
  }
  .shop-product-title {
    font-size: 0.8rem;
  }
  .shop-product-price {
    font-size: 0.95rem;
  }
  .shop-add-btn {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
  .shop-section-wrapper {
    padding: 0;
  }
}

@media (max-width: 400px) {
  .shop-products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .shop-hero-title {
    font-size: 3rem;
  }
}

/* ==================== VIRTUAL TOUR ==================== */

/* -- Hero -- */
.vt-hero {
  position: relative;
  min-height: 62vh;
  background: url("../images/background.webp") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 80px 4rem;
  overflow: hidden;
}
.vt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 23, 0.95) 0%,
    rgba(0, 0, 23, 0.55) 60%,
    rgba(0, 0, 23, 0.3) 100%
  );
  pointer-events: none;
}
.vt-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.vt-hero-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.vt-hero-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
}
.vt-hero-title span {
  color: var(--gold);
}
.vt-hero-sub {
  font-family: "Barlow", sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 580px;
}
.vt-hero-bar {
  display: none;
}

/* -- Map section layout -- */
.vt-map-section {
  position: relative;
  /* margin-top: 1rem; */
  display: flex;
  height: 86vh;
  min-height: 520px;
}
.vt-map-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent) 30%,
    var(--accent-lt) 50%,
    var(--accent) 70%,
    transparent
  );
  opacity: 0.6;
  z-index: 2;
}

#vt-map {
  flex: 1;
  height: 100%;
  z-index: 1;
}

/* -- Layer toggle -- */
#vt-layer-toggle {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1000;
  display: flex;
  gap: 4px;
  background: rgba(0, 0, 23, 0.88);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 4px;
}
.vt-layer-btn {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 11px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--muted);
  background: transparent;
}
.vt-layer-btn.active {
  background: var(--gold);
  color: var(--bg);
}
.vt-layer-btn:hover:not(.active) {
  color: var(--gold2);
}

/* -- Sidebar -- */
#vt-sidebar {
  width: 310px;
  background: rgba(5, 5, 31, 0.97);
  border-left: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex-shrink: 0;
  z-index: 2;
}

#vt-tour-header {
  background: var(--green);
  border-bottom: 1px solid var(--gold);
  padding: 14px 16px;
}
.vt-progress-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 6px;
}
#vt-progress-wrap {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  height: 5px;
  overflow: hidden;
}
#vt-progress-bar {
  height: 100%;
  width: 10%;
  background: var(--gold);
  border-radius: 4px;
  transition: width 0.6s ease;
}
#vt-stop-count {
  margin-top: 6px;
  font-size: 11px;
  color: var(--muted);
}

/* -- Dot nav -- */
#vt-dot-nav {
  display: flex;
  gap: 6px;
  padding: 10px 16px 0;
  flex-wrap: wrap;
}
.vt-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.2s;
}
.vt-dot.vt-dot-active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}
.vt-dot:hover {
  background: var(--gold2);
}

/* -- Stop card -- */
#vt-stop-card {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
#vt-stop-card::-webkit-scrollbar {
  width: 4px;
}
#vt-stop-card::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

.vt-cat-badge {
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 3px 8px;
  border-radius: 3px;
  background: var(--gold);
  color: var(--bg);
  margin-bottom: 10px;
}
#vt-stop-icon {
  font-size: 38px;
  display: block;
  margin-bottom: 8px;
}
#vt-stop-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold2);
  line-height: 1.2;
  margin-bottom: 10px;
}
#vt-stop-desc {
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 14px;
}
.vt-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.vt-detail-icon {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
.vt-detail-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  display: block;
}
.vt-detail-val {
  color: var(--white);
  font-size: 13px;
}

/* -- Nav buttons -- */
#vt-nav-btns {
  padding: 12px 16px 16px;
  display: flex;
  gap: 8px;
}
.vt-nav-btn {
  flex: 1;
  padding: 10px 0;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s;
}
.vt-nav-prev {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.vt-nav-prev:hover:not(:disabled) {
  background: var(--gold);
  color: var(--bg);
}
.vt-nav-next {
  background: var(--gold);
  color: var(--bg);
}
.vt-nav-next:hover:not(:disabled) {
  background: var(--gold);
}
.vt-nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

/* -- Welcome overlay -- */
#vt-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 23, 0.95);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}
#vt-welcome-box {
  background: var(--bg-card);
  border: 2px solid var(--gold);
  border-radius: 14px;
  padding: 36px 32px;
  max-width: 430px;
  width: 90%;
  text-align: center;
  animation: vtFadeIn 0.5s ease;
}
@keyframes vtFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.vt-roundel {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: conic-gradient(
    #003580 0deg 120deg,
    #fff 120deg 240deg,
    #8b0000 240deg 360deg
  );
  border: 3px solid var(--gold);
  margin: 0 auto 16px;
}
#vt-welcome-box h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.vt-welcome-sub {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.vt-welcome-body {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 12px;
}
.vt-sat-note {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid rgba(255, 217, 0, 0.3);
  border-radius: 6px;
  padding: 8px 12px;
  background: rgba(255, 217, 0, 0.04);
  margin-bottom: 14px;
  line-height: 1.6;
}
.vt-sat-note strong {
  color: var(--gold);
}
.vt-stops-preview {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.vt-stops-preview span {
  background: rgba(255, 217, 0, 0.1);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 11px;
  color: var(--gold);
}
#vt-start-btn {
  background: var(--gold);
  color: var(--bg);
  border: none;
  padding: 13px 36px;
  border-radius: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
#vt-start-btn:hover {
  background: var(--gold2);
}

/* -- Map markers -- */
.vt-marker-wrap {
  width: 34px;
  height: 34px;
  position: relative;
}
.vt-marker {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 23, 0.92);
  border: 2.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--gold);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  z-index: 1;
}
.vt-marker.vt-marker-active {
  background: var(--gold);
  color: var(--bg);
  transform: scale(1.3);
  box-shadow:
    0 0 20px rgba(255, 217, 0, 0.9),
    0 2px 12px rgba(0, 0, 0, 0.8);
}
.vt-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0;
  pointer-events: none;
  animation: vtPulse 2s infinite;
}
@keyframes vtPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

/* -- Leaflet popup override -- */
.vt-map-section .leaflet-popup-content-wrapper {
  background: rgba(5, 5, 31, 0.97) !important;
  border: 1.5px solid var(--gold) !important;
  border-radius: 8px !important;
  color: var(--white) !important;
}
.vt-map-section .leaflet-popup-tip {
  background: rgba(5, 5, 31, 0.97) !important;
}
.vt-map-section .leaflet-popup-content {
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  line-height: 1.6;
}
.vt-map-section .leaflet-popup-content b {
  color: var(--gold);
}
.vt-map-section .leaflet-popup-close-button {
  color: var(--gold) !important;
}
.vt-map-section .leaflet-control-zoom a {
  background: rgba(5, 5, 31, 0.95) !important;
  color: var(--gold) !important;
  border-color: rgba(255, 217, 0, 0.4) !important;
}
.vt-map-section .leaflet-control-zoom a:hover {
  background: var(--gold) !important;
  color: var(--bg) !important;
}

/* -- Responsive -- */
@media (max-width: 900px) {
  .vt-map-section {
    flex-direction: column;
    height: auto;
  }
  #vt-map {
    height: 56vw;
    min-height: 300px;
    flex: none;
    width: 100%;
  }
  #vt-sidebar {
    width: 100%;
    border-left: none;
    border-top: 2px solid var(--gold);
    max-height: 400px;
  }
  #vt-overlay {
    position: fixed;
  }
  .vt-hero {
    padding: 4rem 24px 3rem;
  }
}
@media (max-width: 480px) {
  #vt-map {
    height: 65vw;
    min-height: 240px;
  }
  #vt-welcome-box {
    padding: 24px 16px;
  }
  #vt-layer-toggle {
    top: 8px;
    left: 8px;
  }
  .vt-layer-btn {
    padding: 5px 7px;
    font-size: 10px;
  }
}

/* ==================== SHOP — RESPONSIVE FIX ==================== */
/* Replace fixed height with aspect-ratio so images show properly on mobile */

.shop-product-image {
  width: 100%;
  height: 0;
  padding-bottom: 75%; /* 4:3 ratio — fills the card correctly on all screens */
  position: relative;
  overflow: hidden;
  background: #f0f0f0;
}

.shop-product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

/* Fluid 2-col on tablet */
@media (max-width: 768px) {
  .shop-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .shop-product-info {
    padding: 0.75rem;
  }
  .shop-product-title {
    font-size: 0.82rem;
  }
  .shop-product-price {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}

/* Still 2-col on small phones, tighter gaps */
@media (max-width: 480px) {
  .shop-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .shop-container {
    padding: 0 0.6rem;
  }
  .shop-product-info {
    padding: 0.6rem 0.5rem;
  }
  .shop-product-title {
    font-size: 0.72rem;
    letter-spacing: 0;
  }
  .shop-product-price {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }
  .shop-section-title {
    font-size: 1.4rem;
  }
}

/* Single col only on very narrow screens */
@media (max-width: 320px) {
  .shop-products-grid {
    grid-template-columns: 1fr;
  }
}
/* language switch  */
/* TAMIL */
/* SINHALA */
.lang-si .hero-title {
  font-size: 60px;
  line-height: 1.1;
  font-weight: 700;
}

/* TAMIL */
.lang-ta .hero-title {
  font-size: 60px;
  line-height: 1.1;
  font-weight: 700;
}
.lang-switcher {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: 20px;
}

.lang-switcher a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.lang-switcher a:hover {
  color: #f5c542;
}

/* vt modal styles  */
.vt-view360-btn {
  width: 100%;
  margin-top: 5px;
  padding: 10px;
  background: var(--gold);
  color: #111;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

.vt-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.vt-modal.show {
  opacity: 1;
  visibility: visible;
}

.vt-modal-content {
  position: absolute;
  inset: 3%;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
}

.vt-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.vt-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}
/* visitor styles  */
.vs-main {
  max-width: 1100px;
  margin: auto;
}

.vs-era {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vs-era:last-child {
  border-bottom: none;
}

.vs-era-year {
  display: none;
}

.vs-era-header {
  margin-bottom: 40px;
}

.vs-era-badge {
  display: inline-block;

  padding: 8px 14px;

  font-size: 11px;

  letter-spacing: 2px;

  text-transform: uppercase;

  background: rgba(255, 217, 0, 0.08);

  color: var(--gold);

  border: 1px solid rgba(255, 217, 0, 0.18);

  margin-bottom: 14px;
}

.vs-era-title {
  font-size: clamp(2rem, 5vw, 3.5rem);

  font-family: "Barlow Condensed";

  line-height: 1;

  margin-bottom: 10px;
}

.vs-era-title span {
  color: var(--gold);
}

/* REMOVE IMAGES */

.vs-block-img {
  display: none;
}

/* SIMPLE CONTENT */

.vs-block {
  display: block;

  max-width: 900px;

  margin-bottom: 50px;
}

.vs-block-text {
  background: rgba(255, 255, 255, 0.02);

  border: 1px solid rgba(255, 255, 255, 0.05);

  padding: 35px;

  border-radius: 8px;
}

.vs-block-eyebrow {
  color: var(--gold);

  font-size: 11px;

  letter-spacing: 2px;

  text-transform: uppercase;

  margin-bottom: 12px;
}

.vs-block-heading {
  font-size: 2rem;

  font-family: "Barlow Condensed";

  margin-bottom: 18px;
}

.vs-block-divider {
  width: 70px;

  height: 2px;

  background: var(--gold);

  margin-bottom: 22px;
}

.vs-block-text p {
  color: rgba(255, 255, 255, 0.72);

  line-height: 1.8;

  font-size: 16px;

  margin-bottom: 14px;
}

/* TABLE */

.vs-table-wrap {
  margin-top: 24px;
}

.vs-table {
  width: 100%;

  border-collapse: collapse;
}

.vs-table th {
  padding: 14px;

  text-align: left;

  background: rgba(255, 217, 0, 0.08);

  color: var(--gold);
}

.vs-table td {
  padding: 14px;

  border-top: 1px solid rgba(255, 255, 255, 0.06);

  color: rgba(255, 255, 255, 0.8);
}

/* CTA */

.vs-cta-btn {
  display: inline-block;

  margin-top: 18px;

  padding: 12px 22px;

  border: 1px solid var(--gold);

  color: var(--gold);

  transition: 0.3s;
}

.vs-cta-btn:hover {
  background: var(--gold);

  color: #000;
}

/* NOTICE */

.vs-callout {
  margin-top: 30px;

  padding: 26px;

  background: rgba(255, 217, 0, 0.05);

  border-left: 3px solid var(--gold);
}

.vs-callout-year {
  display: none;
}

.vs-callout-text {
  line-height: 1.8;

  color: rgba(255, 255, 255, 0.78);
}

.vs-callout-label {
  margin-top: 12px;

  font-size: 12px;

  letter-spacing: 1px;

  color: var(--gold);

  text-transform: uppercase;
}

@media (max-width: 768px) {
  .vs-block-text {
    padding: 24px;
  }

  .vs-block-heading {
    font-size: 1.6rem;
  }
}
/* services carousel  */
.links-section {
  position: relative;
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.cards-grid {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  width: 100%;
}

.link-card {
  flex: 0 0 calc((100% - 4rem) / 3);
  /* 3 cards with 2 gaps of 2rem = 4rem */
  min-width: 0;
}

/* Carousel Controls */
.carousel-controls {
  display: none;
  position: absolute;
  top: 50%;
  left: 2%;
  right: 2%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}

.carousel-btn {
  position: absolute;
  pointer-events: auto;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #667eea;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover:not(:disabled) {
  background: #004587;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.carousel-btn:active:not(:disabled) {
  transform: scale(0.95);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.prev-btn {
  left: -20px;
}

.next-btn {
  right: -20px;
}

/* Dots indicator */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #0055a5;
  width: 30px;
  border-radius: 5px;
}

.carousel-dot:hover {
  background: #a0aec0;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1024px) {
  .link-card {
    flex: 0 0 calc((100% - 4rem) / 3);
    /* Still 3 cards on larger tablets */
  }
}

@media (max-width: 768px) {
  .link-card {
    flex: 0 0 calc((100% - 2rem) / 2);
    /* 2 cards on tablet */
  }

  .prev-btn {
    left: 5px;
  }

  .next-btn {
    right: 5px;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
}

@media (max-width: 640px) {
  .link-card {
    flex: 0 0 100%;
    /* 1 card on mobile */
  }

  .carousel-btn {
    display: none;
  }
}
/* ========== craft lab HERO SECTION ========== */
.craft-hero {
  position: relative;
  min-height: 62vh;
  background: url("../images/background.webp") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 80px 4rem;
  overflow: hidden;
}

.craft-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 23, 0.95) 0%,
    rgba(0, 0, 23, 0.6) 55%,
    rgba(0, 0, 23, 0.35) 100%
  );
  pointer-events: none;
}

.craft-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.craft-hero-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.craft-hero-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.craft-hero-title span {
  color: var(--gold);
}

.craft-hero-sub {
  font-family: "Barlow", sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 600px;
}

.craft-hero-bar {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .craft-hero {
    padding: 4rem 30px 3rem;
  }
}
.craft-section-wrapper {
  padding: 2rem 0;
}
.craft-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.craft-section {
  margin-bottom: 2rem;
}

/* Section Titles */
.craft-title-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}

.craft-section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  /* color: #1e2a32; */
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.craft-title-underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c9a03d, #00456e);
  margin: 0 auto;
  border-radius: 2px;
}

/* Products Grid */
.craft-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

/* Product Card */
.craft-product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

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

/* Product Image */
.craft-product-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f5f5f5;
}

.craft-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.craft-product-card:hover .craft-product-image img {
  transform: scale(1.05);
}

/* Product Info */
.craft-product-info {
  padding: 1.25rem;
  text-align: center;
}

.craft-product-title {
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1e2a32;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.craft-product-price {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #c9a03d;
  margin-bottom: 1rem;
}

/* Add to Cart Button */
.craft-add-btn {
  display: none;
  width: 100%;
  background: #00456e;
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  font-family: "Barlow", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.craft-add-btn:hover {
  background: #c9a03d;
  transform: scale(0.98);
}

/* Responsive Design */
@media (max-width: 768px) {
  .craft-container {
    padding: 0 1rem;
  }

  .craft-section-title {
    font-size: 1.8rem;
  }

  .craft-products-grid {
    gap: 1.25rem;
  }

  .craft-product-image {
    height: 200px;
  }

  .craft-product-title {
    font-size: 0.9rem;
  }

  .craft-product-price {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .craft-products-grid {
    grid-template-columns: 1fr;
  }
}
/* Additional styles for Craft Lab page */
.craft-info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0 2rem;
}

.craft-info-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 217, 0, 0.1);
}

.craft-info-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  background: rgba(255, 217, 0, 0.05);
}

.craft-info-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.craft-info-card h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.craft-info-card p {
  font-family: "Barlow", sans-serif;
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.5;
}

/* Show button by default on mobile */
@media (max-width: 768px) {
  .craft-add-btn {
    display: block !important;
  }

  .craft-info-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .craft-info-card {
    padding: 1rem;
  }

  .craft-info-card i {
    font-size: 1.5rem;
  }

  .craft-info-card h4 {
    font-size: 0.9rem;
  }

  .craft-info-card p {
    font-size: 0.75rem;
  }

  .craft-cta-banner {
    padding: 1.5rem;
  }

  .craft-cta-content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .craft-info-section {
    grid-template-columns: 1fr;
  }
}

/* ========== SHOP CONTAINER STYLES ========== */
.handicraft-hero {
  position: relative;
  min-height: 62vh;
  background: url("../images/background.webp") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 80px 4rem;
  overflow: hidden;
}

.handicraft-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 23, 0.95) 0%,
    rgba(0, 0, 23, 0.6) 55%,
    rgba(0, 0, 23, 0.35) 100%
  );
  pointer-events: none;
}

.handicraft-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.handicraft-hero-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.handicraft-hero-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.handicraft-hero-title span {
  color: var(--gold);
}

.handicraft-hero-sub {
  font-family: "Barlow", sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 600px;
}

.handicraft-hero-bar {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .handicraft-hero {
    padding: 4rem 30px 3rem;
  }
}
.handicraft-section-wrapper {
  padding: 2rem 0;
}
.handicraft-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.handicraft-section {
  margin-bottom: 2rem;
}

/* Section Titles */
.handicraft-title-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}

.handicraft-section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  /* color: #1e2a32; */
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.handicraft-title-underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c9a03d, #00456e);
  margin: 0 auto;
  border-radius: 2px;
}

/* Products Grid */
.handicraft-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

/* Product Card */
.handicraft-product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

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

/* Product Image */
.handicraft-product-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f5f5f5;
}

.handicraft-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.handicraft-product-card:hover .handicraft-product-image img {
  transform: scale(1.05);
}

/* Product Info */
.handicraft-product-info {
  padding: 1.25rem;
  text-align: center;
}

.handicraft-product-title {
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1e2a32;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.handicraft-product-price {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #c9a03d;
  margin-bottom: 1rem;
}

/* Add to Cart Button */
.handicraft-add-btn {
  display: none;
  width: 100%;
  background: #00456e;
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  font-family: "Barlow", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.handicraft-add-btn:hover {
  background: #c9a03d;
  transform: scale(0.98);
}

/* Responsive Design */
@media (max-width: 768px) {
  .handicraft-container {
    padding: 0 1rem;
  }

  .handicraft-section-title {
    font-size: 1.8rem;
  }

  .handicraft-products-grid {
    gap: 1.25rem;
  }

  .handicraft-product-image {
    height: 200px;
  }

  .handicraft-product-title {
    font-size: 0.9rem;
  }

  .handicraft-product-price {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .handicraft-products-grid {
    grid-template-columns: 1fr;
  }
}
.handicraft-feature-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 2rem 0;
}

/* Image Side */
.handicraft-feature-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.handicraft-feature-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.handicraft-feature-image:hover img {
  transform: scale(1.03);
}

.handicraft-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  padding: 15px 20px;
  font-family: "Barlow", sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 8px;
}

.handicraft-image-caption i {
  color: var(--gold);
}

/* Content Side */
.handicraft-feature-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.handicraft-feature-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.handicraft-feature-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 1px;
}

.handicraft-feature-desc {
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* Feature List */
.handicraft-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 10px 0;
}

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

.handicraft-feature-item i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.handicraft-feature-item div {
  display: flex;
  flex-direction: column;
}

.handicraft-feature-item strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.handicraft-feature-item span {
  font-family: "Barlow", sans-serif;
  font-size: 0.85rem;
  color: var(--white-dim);
}

/* Categories Section */
.handicraft-categories {
  margin: 15px 0;
}

.handicraft-categories h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.handicraft-category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.handicraft-category-tag {
  background: rgba(255, 217, 0, 0.1);
  border: 1px solid rgba(255, 217, 0, 0.3);
  border-radius: 30px;
  padding: 6px 16px;
  font-family: "Barlow", sans-serif;
  font-size: 0.8rem;
  color: var(--white-dim);
  transition: all 0.3s ease;
}

.handicraft-category-tag:hover {
  background: rgba(255, 217, 0, 0.2);
  border-color: var(--gold);
  color: var(--gold);
}

/* Contact Row */
.handicraft-contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.handicraft-contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 217, 0, 0.1);
  border-radius: 12px;
  padding: 12px 20px;
  flex: 1;
  border-left: 3px solid var(--gold);
}

.handicraft-contact-info i {
  font-size: 1.8rem;
  color: var(--gold);
}

.handicraft-contact-info div {
  display: flex;
  flex-direction: column;
}

.handicraft-contact-info strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.handicraft-contact-info span {
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

/* Feature Button */
.handicraft-feature-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: var(--gold);
  color: #000;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.handicraft-feature-btn:hover {
  background: #fff;
  transform: translateX(5px);
}

/* Info Cards */
.handicraft-info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0 2rem;
}

.handicraft-info-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 217, 0, 0.1);
}

.handicraft-info-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  background: rgba(255, 217, 0, 0.05);
}

.handicraft-info-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.handicraft-info-card h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.handicraft-info-card p {
  font-family: "Barlow", sans-serif;
  font-size: 0.8rem;
  color: var(--white-dim);
  line-height: 1.5;
}

/* CTA Banner */
.handicraft-cta-banner {
  background: linear-gradient(
    135deg,
    rgba(0, 69, 110, 0.9) 0%,
    rgba(0, 35, 55, 0.95) 100%
  );
  border-radius: 16px;
  padding: 2.5rem;
  margin: 2rem 0 1rem;
  text-align: center;
  border: 1px solid rgba(255, 217, 0, 0.2);
}

.handicraft-cta-content h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.handicraft-cta-content p {
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  color: var(--white-dim);
  margin-bottom: 1.5rem;
}

.handicraft-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.handicraft-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #000;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.handicraft-cta-btn:hover {
  background: #fff;
  transform: translateX(5px);
}

.handicraft-cta-call {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.handicraft-cta-call:hover {
  background: var(--gold);
  color: #000;
}

/* Responsive */
@media (max-width: 968px) {
  .handicraft-feature-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .handicraft-feature-image img {
    height: 350px;
  }

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

@media (max-width: 768px) {
  .handicraft-contact-row {
    flex-direction: column;
  }

  .handicraft-contact-info {
    width: 100%;
  }

  .handicraft-feature-btn {
    width: 100%;
    justify-content: center;
  }

  .handicraft-info-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .handicraft-info-card {
    padding: 1rem;
  }

  .handicraft-info-card i {
    font-size: 1.5rem;
  }

  .handicraft-info-card h4 {
    font-size: 0.85rem;
  }

  .handicraft-info-card p {
    font-size: 0.7rem;
  }

  .handicraft-cta-banner {
    padding: 1.5rem;
  }

  .handicraft-cta-content h3 {
    font-size: 1.3rem;
  }

  .handicraft-category-tag {
    font-size: 0.7rem;
    padding: 4px 12px;
  }
}

@media (max-width: 480px) {
  .handicraft-info-cards {
    grid-template-columns: 1fr;
  }

  .handicraft-feature-image img {
    height: 250px;
  }

  .handicraft-cta-buttons {
    flex-direction: column;
  }

  .handicraft-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========== SHOP CONTAINER STYLES ========== */
.photobooth-hero {
  position: relative;
  min-height: 62vh;
  background: url("../images/background.webp") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 80px 4rem;
  overflow: hidden;
}

.photobooth-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 23, 0.95) 0%,
    rgba(0, 0, 23, 0.6) 55%,
    rgba(0, 0, 23, 0.35) 100%
  );
  pointer-events: none;
}

.photobooth-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.photobooth-hero-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.photobooth-hero-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.photobooth-hero-title span {
  color: var(--gold);
}

.photobooth-hero-sub {
  font-family: "Barlow", sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 600px;
}

.photobooth-hero-bar {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .photobooth-hero {
    padding: 4rem 30px 3rem;
  }
}
.photobooth-section-wrapper {
  padding: 2rem 0;
}
.photobooth-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.photobooth-section {
  margin-bottom: 2rem;
}

/* Section Titles */
.photobooth-title-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}

.photobooth-section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  /* color: #1e2a32; */
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.photobooth-title-underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c9a03d, #00456e);
  margin: 0 auto;
  border-radius: 2px;
}

/* Products Grid */
.photobooth-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

/* Product Card */
.photobooth-product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

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

/* Product Image */
.photobooth-product-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f5f5f5;
}

.photobooth-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.photobooth-product-card:hover .photobooth-product-image img {
  transform: scale(1.05);
}

/* Product Info */
.photobooth-product-info {
  padding: 1.25rem;
  text-align: center;
}

.photobooth-product-title {
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1e2a32;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.photobooth-product-price {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #c9a03d;
  margin-bottom: 1rem;
}

/* Add to Cart Button */
.photobooth-add-btn {
  display: none;
  width: 100%;
  background: #00456e;
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  font-family: "Barlow", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.photobooth-add-btn:hover {
  background: #c9a03d;
  transform: scale(0.98);
}

/* Responsive Design */
@media (max-width: 768px) {
  .photobooth-container {
    padding: 0 1rem;
  }

  .photobooth-section-title {
    font-size: 1.8rem;
  }

  .photobooth-products-grid {
    gap: 1.25rem;
  }

  .photobooth-product-image {
    height: 200px;
  }

  .photobooth-product-title {
    font-size: 0.9rem;
  }

  .photobooth-product-price {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .photobooth-products-grid {
    grid-template-columns: 1fr;
  }
}
/* Feature Layout */
.photobooth-feature-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 2rem 0;
}

/* Image Side */
.photobooth-feature-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.photobooth-feature-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.photobooth-feature-image:hover img {
  transform: scale(1.03);
}

.photobooth-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  padding: 15px 20px;
  font-family: "Barlow", sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 8px;
}

.photobooth-image-caption i {
  color: var(--gold);
}

/* Content Side */
.photobooth-feature-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.photobooth-feature-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.photobooth-feature-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 1px;
}

.photobooth-feature-desc {
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* Feature List */
.photobooth-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 10px 0;
}

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

.photobooth-feature-item i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.photobooth-feature-item div {
  display: flex;
  flex-direction: column;
}

.photobooth-feature-item strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.photobooth-feature-item span {
  font-family: "Barlow", sans-serif;
  font-size: 0.85rem;
  color: var(--white-dim);
}

/* Packages Section */
.photobooth-packages {
  margin: 15px 0;
}

.photobooth-packages h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.photobooth-package-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.photobooth-package-tag {
  background: rgba(255, 217, 0, 0.1);
  border: 1px solid rgba(255, 217, 0, 0.3);
  border-radius: 30px;
  padding: 6px 16px;
  font-family: "Barlow", sans-serif;
  font-size: 0.8rem;
  color: var(--white-dim);
  transition: all 0.3s ease;
}

.photobooth-package-tag:hover {
  background: rgba(255, 217, 0, 0.2);
  border-color: var(--gold);
  color: var(--gold);
}

/* Contact Row */
.photobooth-contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.photobooth-contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 217, 0, 0.1);
  border-radius: 12px;
  padding: 12px 20px;
  flex: 1;
  border-left: 3px solid var(--gold);
}

.photobooth-contact-info i {
  font-size: 1.8rem;
  color: var(--gold);
}

.photobooth-contact-info div {
  display: flex;
  flex-direction: column;
}

.photobooth-contact-info strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.photobooth-contact-info span {
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

/* Feature Button */
.photobooth-feature-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: var(--gold);
  color: #000;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.photobooth-feature-btn:hover {
  background: #fff;
  transform: translateX(5px);
}

/* Info Cards */
.photobooth-info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0 2rem;
}

.photobooth-info-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 217, 0, 0.1);
}

.photobooth-info-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  background: rgba(255, 217, 0, 0.05);
}

.photobooth-info-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.photobooth-info-card h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.photobooth-info-card p {
  font-family: "Barlow", sans-serif;
  font-size: 0.8rem;
  color: var(--white-dim);
  line-height: 1.5;
}

/* CTA Banner */
.photobooth-cta-banner {
  background: linear-gradient(
    135deg,
    rgba(0, 69, 110, 0.9) 0%,
    rgba(0, 35, 55, 0.95) 100%
  );
  border-radius: 16px;
  padding: 2.5rem;
  margin: 2rem 0 1rem;
  text-align: center;
  border: 1px solid rgba(255, 217, 0, 0.2);
}

.photobooth-cta-content h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.photobooth-cta-content p {
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  color: var(--white-dim);
  margin-bottom: 1.5rem;
}

.photobooth-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.photobooth-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #000;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.photobooth-cta-btn:hover {
  background: #fff;
  transform: translateX(5px);
}

.photobooth-cta-call {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.photobooth-cta-call:hover {
  background: var(--gold);
  color: #000;
}

/* Responsive */
@media (max-width: 968px) {
  .photobooth-feature-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .photobooth-feature-image img {
    height: 350px;
  }

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

@media (max-width: 768px) {
  .photobooth-contact-row {
    flex-direction: column;
  }

  .photobooth-contact-info {
    width: 100%;
  }

  .photobooth-feature-btn {
    width: 100%;
    justify-content: center;
  }

  .photobooth-info-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .photobooth-info-card {
    padding: 1rem;
  }

  .photobooth-info-card i {
    font-size: 1.5rem;
  }

  .photobooth-info-card h4 {
    font-size: 0.85rem;
  }

  .photobooth-info-card p {
    font-size: 0.7rem;
  }

  .photobooth-cta-banner {
    padding: 1.5rem;
  }

  .photobooth-cta-content h3 {
    font-size: 1.3rem;
  }

  .photobooth-package-tag {
    font-size: 0.7rem;
    padding: 4px 12px;
  }
}

@media (max-width: 480px) {
  .photobooth-info-cards {
    grid-template-columns: 1fr;
  }

  .photobooth-feature-image img {
    height: 250px;
  }

  .photobooth-cta-buttons {
    flex-direction: column;
  }

  .photobooth-cta-btn {
    width: 100%;
    justify-content: center;
  }
}
/* juice_bar con styling  */
/* ========== SHOP CONTAINER STYLES ========== */
.juice_bar-hero {
  position: relative;
  min-height: 62vh;
  background: url("../images/background.webp") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 80px 4rem;
  overflow: hidden;
}

.juice_bar-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 23, 0.95) 0%,
    rgba(0, 0, 23, 0.6) 55%,
    rgba(0, 0, 23, 0.35) 100%
  );
  pointer-events: none;
}

.juice_bar-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.juice_bar-hero-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.juice_bar-hero-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.juice_bar-hero-title span {
  color: var(--gold);
}

.juice_bar-hero-sub {
  font-family: "Barlow", sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 600px;
}

.juice_bar-hero-bar {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .juice_bar-hero {
    padding: 4rem 30px 3rem;
  }
}
.juice_bar-section-wrapper {
  padding: 2rem 0;
}
.juice_bar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.juice_bar-section {
  margin-bottom: 2rem;
}

/* Section Titles */
.juice_bar-title-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}

.juice_bar-section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  /* color: #1e2a32; */
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.juice_bar-title-underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c9a03d, #00456e);
  margin: 0 auto;
  border-radius: 2px;
}

/* Products Grid */
.juice_bar-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

/* Product Card */
.juice_bar-product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

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

/* Product Image */
.juice_bar-product-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f5f5f5;
}

.juice_bar-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.juice_bar-product-card:hover .juice_bar-product-image img {
  transform: scale(1.05);
}

/* Product Info */
.juice_bar-product-info {
  padding: 1.25rem;
  text-align: center;
}

.juice_bar-product-title {
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1e2a32;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.juice_bar-product-price {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #c9a03d;
  margin-bottom: 1rem;
}

/* Add to Cart Button */
.juice_bar-add-btn {
  display: none;
  width: 100%;
  background: #00456e;
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  font-family: "Barlow", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.juice_bar-add-btn:hover {
  background: #c9a03d;
  transform: scale(0.98);
}

/* Responsive Design */
@media (max-width: 768px) {
  .juice_bar-container {
    padding: 0 1rem;
  }

  .juice_bar-section-title {
    font-size: 1.8rem;
  }

  .juice_bar-products-grid {
    gap: 1.25rem;
  }

  .juice_bar-product-image {
    height: 200px;
  }

  .juice_bar-product-title {
    font-size: 0.9rem;
  }

  .juice_bar-product-price {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .juice_bar-products-grid {
    grid-template-columns: 1fr;
  }
}
.juice_bar-feature-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 2rem 0;
}

/* Image Side */
.juice_bar-feature-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.juice_bar-feature-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.juice_bar-feature-image:hover img {
  transform: scale(1.03);
}

.juice_bar-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  padding: 15px 20px;
  font-family: "Barlow", sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 8px;
}

.juice_bar-image-caption i {
  color: var(--gold);
}

/* Content Side */
.juice_bar-feature-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.juice_bar-feature-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.juice_bar-feature-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 1px;
}

.juice_bar-feature-desc {
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* Feature List */
.juice_bar-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 10px 0;
}

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

.juice_bar-feature-item i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.juice_bar-feature-item div {
  display: flex;
  flex-direction: column;
}

.juice_bar-feature-item strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.juice_bar-feature-item span {
  font-family: "Barlow", sans-serif;
  font-size: 0.85rem;
  color: var(--white-dim);
}

/* Categories Section */
.juice_bar-categories {
  margin: 15px 0;
}

.juice_bar-categories h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.juice_bar-category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.juice_bar-category-tag {
  background: rgba(255, 217, 0, 0.1);
  border: 1px solid rgba(255, 217, 0, 0.3);
  border-radius: 30px;
  padding: 6px 16px;
  font-family: "Barlow", sans-serif;
  font-size: 0.8rem;
  color: var(--white-dim);
  transition: all 0.3s ease;
}

.juice_bar-category-tag:hover {
  background: rgba(255, 217, 0, 0.2);
  border-color: var(--gold);
  color: var(--gold);
}

/* Contact Row */
.juice_bar-contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.juice_bar-contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 217, 0, 0.1);
  border-radius: 12px;
  padding: 12px 20px;
  flex: 1;
  border-left: 3px solid var(--gold);
}

.juice_bar-contact-info i {
  font-size: 1.8rem;
  color: var(--gold);
}

.juice_bar-contact-info div {
  display: flex;
  flex-direction: column;
}

.juice_bar-contact-info strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.juice_bar-contact-info span {
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

/* Feature Button */
.juice_bar-feature-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: var(--gold);
  color: #000;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.juice_bar-feature-btn:hover {
  background: #fff;
  transform: translateX(5px);
}

/* Info Cards */
.juice_bar-info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0 2rem;
}

.juice_bar-info-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 217, 0, 0.1);
}

.juice_bar-info-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  background: rgba(255, 217, 0, 0.05);
}

.juice_bar-info-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.juice_bar-info-card h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.juice_bar-info-card p {
  font-family: "Barlow", sans-serif;
  font-size: 0.8rem;
  color: var(--white-dim);
  line-height: 1.5;
}

/* CTA Banner */
.juice_bar-cta-banner {
  background: linear-gradient(
    135deg,
    rgba(0, 69, 110, 0.9) 0%,
    rgba(0, 35, 55, 0.95) 100%
  );
  border-radius: 16px;
  padding: 2.5rem;
  margin: 2rem 0 1rem;
  text-align: center;
  border: 1px solid rgba(255, 217, 0, 0.2);
}

.juice_bar-cta-content h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.juice_bar-cta-content p {
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  color: var(--white-dim);
  margin-bottom: 1.5rem;
}

.juice_bar-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.juice_bar-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #000;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.juice_bar-cta-btn:hover {
  background: #fff;
  transform: translateX(5px);
}

.juice_bar-cta-call {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.juice_bar-cta-call:hover {
  background: var(--gold);
  color: #000;
}

/* Responsive */
@media (max-width: 968px) {
  .juice_bar-feature-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .juice_bar-feature-image img {
    height: 350px;
  }

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

@media (max-width: 768px) {
  .juice_bar-contact-row {
    flex-direction: column;
  }

  .juice_bar-contact-info {
    width: 100%;
  }

  .juice_bar-feature-btn {
    width: 100%;
    justify-content: center;
  }

  .juice_bar-info-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .juice_bar-info-card {
    padding: 1rem;
  }

  .juice_bar-info-card i {
    font-size: 1.5rem;
  }

  .juice_bar-info-card h4 {
    font-size: 0.85rem;
  }

  .juice_bar-info-card p {
    font-size: 0.7rem;
  }

  .juice_bar-cta-banner {
    padding: 1.5rem;
  }

  .juice_bar-cta-content h3 {
    font-size: 1.3rem;
  }

  .juice_bar-category-tag {
    font-size: 0.7rem;
    padding: 4px 12px;
  }
}

@media (max-width: 480px) {
  .juice_bar-info-cards {
    grid-template-columns: 1fr;
  }

  .juice_bar-feature-image img {
    height: 250px;
  }

  .juice_bar-cta-buttons {
    flex-direction: column;
  }

  .juice_bar-cta-btn {
    width: 100%;
    justify-content: center;
  }
}
/* consent  */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: white;
  z-index: 10001;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.5s ease;
  border-top: 2px solid #3b82f6;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-consent-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-consent-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 2;
  min-width: 250px;
}

.cookie-icon {
  font-size: 40px;
  color: #fbbf24;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.cookie-text h3 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  color: #fbbf24;
}

.cookie-text p {
  margin: 0 0 8px 0;
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.5;
}

.cookie-links {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}

.cookie-links a {
  color: #60a5fa;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.cookie-links a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.cookie-accept {
  background: #3b82f6;
  color: white;
}

.cookie-accept:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.cookie-decline {
  background: transparent;
  color: white;
  border: 1px solid #64748b;
}

.cookie-decline:hover {
  background: rgba(100, 116, 139, 0.2);
  border-color: #94a3b8;
  transform: translateY(-2px);
}

/* Responsive Design for Cookie Banner */
@media (max-width: 768px) {
  .cookie-consent-container {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-links {
    justify-content: center;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .cookie-consent-container {
    padding: 15px;
  }

  .cookie-icon {
    font-size: 30px;
  }

  .cookie-text h3 {
    font-size: 1rem;
  }

  .cookie-text p {
    font-size: 0.8rem;
  }

  .cookie-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}
/* Cookie Modal Styles */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-content {
  background: white;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideIn 0.3s ease;
}

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

.cookie-modal-header {
  padding: 20px;
  background: #003366;
  color: white;
  border-radius: 20px 20px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-close {
  font-size: 28px;
  cursor: pointer;
  transition: transform 0.3s;
}

.cookie-modal-close:hover {
  transform: rotate(90deg);
}

.cookie-modal-body {
  padding: 20px;
}

.cookie-setting {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #e2e8f0;
}

.setting-info {
  flex: 1;
  padding-right: 20px;
}

.setting-info strong {
  display: block;
  margin-bottom: 5px;
  color: #1e293b;
}

.setting-info p {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
}

/* Toggle Switch */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 24px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: #3b82f6;
}

input:checked + .cookie-slider:before {
  transform: translateX(26px);
}

input:disabled + .cookie-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-footer {
  padding: 20px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

/* Additional Button Styles */
.cookie-essential {
  background: #64748b;
  color: white;
}

.cookie-essential:hover {
  background: #475569;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .cookie-setting {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .setting-info {
    padding-right: 0;
  }
}
/* Policy Links Section - Between footer content and footer bottom */
.footer-policy-links {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  /* margin-top: 30px; */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-links-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0 20px;
}

.policy-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.policy-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.policy-link:hover {
  color: #60a5fa;
  transform: translateY(-2px);
}

.policy-link:hover i {
  transform: scale(1.1);
}

.policy-separator {
  color: #475569;
  font-size: 12px;
}

/* Responsive design for policy links */
@media (max-width: 768px) {
  .policy-links-container {
    flex-direction: column;
    gap: 12px;
  }

  .policy-separator {
    display: none;
  }

  .policy-link {
    font-size: 12px;
    padding: 5px 0;
  }

  .footer-policy-links {
    padding: 15px 0;
    margin-top: 20px;
  }
}

/* Optional: Add subtle animation */
.policy-link {
  position: relative;
}

.policy-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #60a5fa;
  transition: width 0.3s ease;
}

.policy-link:hover::after {
  width: 100%;
}
/* ========== CRAFT LAB FEATURE LAYOUT ========== */
.craft-feature-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

/* Image Side */
.craft-feature-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.craft-feature-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.craft-feature-image:hover img {
  transform: scale(1.03);
}

.craft-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  padding: 15px 20px;
  font-family: "Barlow", sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 8px;
}

.craft-image-caption i {
  color: var(--gold);
}

/* Content Side */
.craft-feature-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.craft-feature-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.craft-feature-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 1px;
}

.craft-feature-desc {
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* Feature List */
.craft-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 10px 0;
}

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

.craft-feature-item i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.craft-feature-item div {
  display: flex;
  flex-direction: column;
}

.craft-feature-item strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.craft-feature-item span {
  font-family: "Barlow", sans-serif;
  font-size: 0.85rem;
  color: var(--white-dim);
}

/* Feature Button */
.craft-feature-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: var(--gold);
  color: #000;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 10px;
}

.craft-feature-btn:hover {
  background: #fff;
  transform: translateX(5px);
}

/* Info Cards */
.craft-info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0 2rem;
}

.craft-info-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 217, 0, 0.1);
}

.craft-info-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  background: rgba(255, 217, 0, 0.05);
}

.craft-info-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.craft-info-card h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.craft-info-card p {
  font-family: "Barlow", sans-serif;
  font-size: 0.8rem;
  color: var(--white-dim);
  line-height: 1.5;
}

/* CTA Banner */
.craft-cta-banner {
  background: linear-gradient(
    135deg,
    rgba(0, 69, 110, 0.9) 0%,
    rgba(0, 35, 55, 0.95) 100%
  );
  border-radius: 16px;
  padding: 2.5rem;
  margin: 2rem 0 1rem;
  text-align: center;
  border: 1px solid rgba(255, 217, 0, 0.2);
}

.craft-cta-content h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.craft-cta-content p {
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  color: var(--white-dim);
  margin-bottom: 1.5rem;
}

.craft-cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: #000;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.craft-cta-btn:hover {
  background: #fff;
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 968px) {
  .craft-feature-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .craft-feature-image img {
    height: 350px;
  }

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

@media (max-width: 768px) {
  .craft-hero {
    padding: 4rem 30px 3rem;
  }

  .craft-info-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .craft-info-card {
    padding: 1rem;
  }

  .craft-info-card i {
    font-size: 1.5rem;
  }

  .craft-info-card h4 {
    font-size: 0.85rem;
  }

  .craft-info-card p {
    font-size: 0.7rem;
  }

  .craft-cta-banner {
    padding: 1.5rem;
  }

  .craft-cta-content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .craft-info-cards {
    grid-template-columns: 1fr;
  }

  .craft-feature-image img {
    height: 250px;
  }

  .craft-feature-btn {
    width: 100%;
    justify-content: center;
  }
}
/* Price Section */
.craft-price-section {
  display: flex;
  gap: 20px;
  margin: 15px 0;
  flex-wrap: wrap;
}

.craft-price-item {
  background: linear-gradient(
    135deg,
    rgba(0, 69, 110, 0.3) 0%,
    rgba(0, 35, 55, 0.5) 100%
  );
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex: 1;
  min-width: 150px;
}

.craft-price-size {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.craft-price-amount {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}

/* Contact Info */
.craft-contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 217, 0, 0.1);
  border-radius: 12px;
  padding: 12px 20px;
  margin: 15px 0;
  border-left: 3px solid var(--gold);
}

.craft-contact-info i {
  font-size: 1.8rem;
  color: var(--gold);
}

.craft-contact-info div {
  display: flex;
  flex-direction: column;
}

.craft-contact-info strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.craft-contact-info span {
  font-family: "Barlow", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
  .craft-price-section {
    flex-direction: column;
    gap: 12px;
  }

  .craft-price-item {
    justify-content: space-between;
  }

  .craft-contact-info {
    padding: 10px 15px;
  }

  .craft-contact-info i {
    font-size: 1.4rem;
  }

  .craft-contact-info span {
    font-size: 0.95rem;
  }
}
/* History view more Styles */
/* Paragraph Wrapper Styles */
.para-wrapper {
    margin-bottom: 20px;
    position: relative;
}

.short-text, .full-text {
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 12px;
}

/* View More Button - Premium Design */
.view-more-btn, .view-less-btn {
    background: linear-gradient(135deg, #000017 0%, #004c93 100%);
    border: none;
    color: white;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    margin-top: 8px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    display: inline-flex; w
    align-items: center;
    gap: 8px;
    font-family: inherit;
    letter-spacing: 0.5px;
}

.view-more-btn::after {
    content: '▼';
    font-size: 10px;
    transition: transform 0.3s ease;
}

.view-less-btn::after {
    content: '▲';
    font-size: 10px;
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.view-more-btn:hover, .view-less-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 76, 147, 0.3);
    background: linear-gradient(135deg, #000017 0%, #004c93 100%);
    gap: 10px;
}

.view-more-btn:active, .view-less-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Alternative: Vintage Military Style (matches your historical theme) */
.view-more-btn.vintage, .view-less-btn.vintage {
    background: #2c1810;
    border: 1px solid #c4a47c;
    color: #c4a47c;
    box-shadow: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-more-btn.vintage::after {
    content: '»';
    font-size: 14px;
}

.view-less-btn.vintage::after {
    content: '«';
    font-size: 14px;
}

.view-more-btn.vintage:hover, .view-less-btn.vintage:hover {
    background: #c4a47c;
    color: #2c1810;
    border-color: #2c1810;
}

/* Alternative: Minimal Gold Accent */
.view-more-btn.gold, .view-less-btn.gold {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    box-shadow: none;
}

.view-more-btn.gold:hover, .view-less-btn.gold:hover {
    background: #d4af37;
    color: #1a1a1a;
    border-color: #d4af37;
}

/* Ripple Effect */
.view-more-btn, .view-less-btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .view-more-btn, .view-less-btn {
        padding: 6px 16px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }
}

/* Smooth Animation for Text Toggle */
.truncated-view, .full-view {
    transition: all 0.3s ease;
}

.full-view {
    animation: fadeIn 0.3s ease;
}

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