
/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0a0a0a;
  --crimson: #c0392b;
  --off-white: #f0eeeb;
  --charcoal: #1a1a1a;
  --smoke: #6b6b6b;
  --pearl: #ffffff;
  --section-alt: #111111;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  --glass-blur: blur(20px) saturate(180%);
  --body-font: 'Outfit', sans-serif;
  --text-font: 'Playfair Display', serif;

}

::selection { background: var(--crimson); color: var(--pearl); }

html {
  scroll-behavior: auto;
  font-size: 16px;
}

body {
  font-family: var(--body-font);
  background: var(--black);
  color: var(--off-white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--crimson); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #e74c3c; }

/* Noise Texture Overlay */
.noise-overlay::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Glass Panels */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Label */
.section-label {
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--crimson);
}

/* Section Heading */
.section-heading {
  font-family: var(--text-font);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--pearl);
  margin-bottom: 24px;
}
.section-heading em {
  color: var(--crimson);
  font-style: italic;
}

/* Red accent rule */
.red-rule {
  width: 60px;
  height: 2px;
  background: var(--crimson);
  margin: 32px 0;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== LOADING SCREEN ========== */
#loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
}
#loader .loader-line {
  width: 0;
  height: 1px;
  background: var(--crimson);
  transition: width 1.2s ease;
  margin-bottom: 30px;
}
#loader.animate .loader-line {
  width: 120px;
}
#loader .loader-logo {
  font-family: var(--text-font);
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 16px;
  text-transform: uppercase;
  color: var(--pearl);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}
#loader.animate .loader-logo {
  opacity: 1;
  transform: translateY(0);
}
#loader .loader-sub {
  font-family: var(--body-font);
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--smoke);
  opacity: 0;
  transition: opacity 0.8s ease 1s;
  margin-top: 10px;
}
#loader.animate .loader-sub {
  opacity: 1;
}

/* ========== NAVIGATION ========== */
#navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 9000;
  padding: 24px 0;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  padding: 14px 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
#navbar .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#navbar .nav-logo {
  font-family: var(--text-font);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--pearl);
  text-decoration: none;
  flex-shrink: 0;
}
#navbar .nav-logo span { color: var(--crimson); }
#navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
#navbar .nav-links a {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}
#navbar .nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--crimson);
  transition: width 0.3s ease;
}
#navbar .nav-links a:hover { color: var(--crimson); }
#navbar .nav-links a:hover::after { width: 100%; }
#navbar .nav-cta {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pearl) !important;
  background: var(--crimson);
  padding: 12px 28px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  border-radius: 12px;
}
#navbar .nav-cta::after { display: none !important; }
#navbar .nav-cta:hover { background: #e74c3c; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 9002;
  background: none;
  border: none;
  padding: 5px;
}
.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--pearl);
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 9001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--text-font);
  font-size: 32px;
  font-weight: 600;
  color: var(--off-white);
  text-decoration: none;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--crimson); }contact
.mobile-close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  color: var(--off-white);
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
}
.mobile-close:hover { color: var(--crimson); }

/* ========== HERO SLIDER ========== */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient( 135deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.8) 50%, rgba(10, 10, 10, 0) 100% )
}
.hero-slide::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.hero-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  width: 90%;
  max-width: 900px;
}
.hero-tag {
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--text-font);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--pearl);
  margin-bottom: 24px;
}
.hero-title em {
  color: var(--crimson);
  font-style: italic;
}
.hero-subtitle {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--smoke);
  letter-spacing: 2px;
  margin-bottom: 48px;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pearl);
  background: var(--crimson);
  padding: 16px 40px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 12px;
}
.btn-primary:hover { background: #e74c3c; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(192, 57, 43, 0.3); }
.btn-outline {
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pearl);
  background: transparent;
  padding: 16px 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 12px;
}
.btn-outline:hover { border-color: var(--crimson); color: var(--crimson); }

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.hero-dot {
  width: 12px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
  border-radius: 4px;
}
.hero-dot.active { width: 32px; background: var(--crimson); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--smoke);
}
.scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--crimson), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ========== ABOUT SECTION ========== */
#about {
  position: relative;
  background: var(--section-alt);
  padding: 120px 0;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-left .about-quote {
  font-family: var(--text-font);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  font-style: italic;
  color: var(--pearl);
  line-height: 1.5;
  margin-bottom: 24px;
  position: relative;
  padding-left: 24px;
  border-left: 2px solid var(--crimson);
}
.about-left .about-text {
  font-size: 14px;
  color: var(--smoke);
  line-height: 1.9;
  margin-top: 16px;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  padding: 32px;
  text-align: center;
  border-radius: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.stat-card:hover { transform: translateY(-4px); border-color: rgba(192, 57, 43, 0.3); }
.stat-card .stat-number {
  font-family: var(--text-font);
  font-size: 48px;
  font-weight: 600;
  color: var(--crimson);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card .stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--smoke);
}

/* ========== SERVICES ========== */
#services {
  position: relative;
  background: var(--black);
  padding: 120px 0;
  overflow: hidden;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.service-card {
  border-radius: 16px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--crimson), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(192, 57, 43, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(192, 57, 43, 0.08);
}
.service-card:hover::before { opacity: 1; }
.service-img {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}
.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--crimson);
  fill: none;
  stroke-width: 1.5;
}
.service-card h3 {
  font-family: var(--text-font);
  font-size: 24px;
  font-weight: 600;
  color: var(--pearl);
  margin-bottom: 16px;
}
.service-card p {
  font-size: 13px;
  color: var(--smoke);
  line-height: 1.8;
}

/* ========== STATS BAR ========== */
#stats-bar {
  background: var(--charcoal);
  padding: 80px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stats-bar-item .counter-number {
  font-family: var(--text-font);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 600;
  color: var(--pearl);
  line-height: 1;
}
.stats-bar-item .counter-number span { color: var(--crimson); }
.stats-bar-item .counter-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--smoke);
  margin-top: 8px;
}

/* ========== BRANDS ========== */
#brands {
  position: relative;
  background: var(--black);
  padding: 100px 0;
  overflow: hidden;
}
.brands-subtitle {
  font-size: 14px;
  color: var(--smoke);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 60px;
}
.brands-marquee-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.brands-marquee-wrap::before,
.brands-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.brands-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--black), transparent);
}
.brands-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--black), transparent);
}
.brands-track {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.brands-track:hover {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 40px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 14px;
  min-width: 200px;
  height: 90px;
  transition: all 0.4s ease;
  cursor: default;
}
.brand-item:hover {
  border-color: rgba(192, 57, 43, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 20px rgba(192,57,43,0.08);
}
.brand-item svg {
  height: 28px;
  width: auto;
  fill: var(--smoke);
  transition: fill 0.4s ease;
}
.brand-item:hover svg {
  fill: var(--off-white);
}
.brand-item .brand-text {
  font-family: var(--text-font);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--smoke);
  transition: color 0.4s ease;
  white-space: nowrap;
}
.brand-item:hover .brand-text {
  color: var(--off-white);
}

/* ========== FEATURED EVENTS ========== */
#events {
  position: relative;
  background: var(--section-alt);
  padding: 120px 0;
  overflow: hidden;
}
.events-slider-wrap {
  position: relative;
  margin-top: 60px;
  overflow: hidden;
  padding: 0 64px;
}
.events-track {
  display: flex;
  gap: 28px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.event-card {
  position: relative;
  overflow: hidden;
  height: 420px;
  cursor: pointer;
  border-radius: 16px;
  flex: 0 0 calc((100% - 56px) / 3);
  display: block;
  color: inherit;
  text-decoration: none;
}
.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.event-card:hover img { transform: scale(1.08); }
.event-overlay {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background 0.4s ease;
}
.event-card:hover .event-overlay {
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(192, 57, 43, 0.1) 60%);
}
.event-overlay .glass-tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pearl);
  margin-bottom: 12px;
  width: fit-content;
  border-radius: 8px;
}
.event-overlay h3 {
  font-family: var(--text-font);
  font-size: 26px;
  font-weight: 600;
  color: var(--pearl);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-overlay .event-date {
  font-size: 12px;
  color: var(--smoke);
  letter-spacing: 1px;
}

.ev-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
  border-radius: 14px;
}
.ev-arrow:hover {
  background: rgba(192, 57, 43, 0.2);
  border-color: var(--crimson);
  box-shadow: 0 0 24px rgba(192, 57, 43, 0.15);
}
.ev-arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--pearl);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}
.ev-arrow:hover svg { stroke: var(--crimson); }
.ev-prev { left: 0; }
.ev-next { right: 0; }
.ev-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.ev-dot {
  width: 10px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  border-radius: 4px;
}
.ev-dot.active { width: 28px; background: var(--crimson); }

/* ========== GALLERY ========== */
#gallery {
  position: relative;
  background: var(--black);
  padding: 120px 0;
  overflow: hidden;
}
.gallery-grid {
  column-count: 3;
  column-gap: 20px;
  margin-top: 60px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 14px;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .gallery-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(192, 57, 43, 0.15);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--text-font);
  font-size: 20px;
  color: var(--pearl);
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

/* ========== TESTIMONIALS ========== */
#testimonials {
  position: relative;
  background: var(--glass-bg);
  padding: 120px 0;
  overflow: hidden;
}
.testimonials-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 960px;
  margin: 60px auto 0;
}
.testimonials-track {
  flex: 1;
  position: relative;
  min-height: 380px;
}
.testimonial-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  padding: 48px;
  border-radius: 16px;
  text-align: center;
}
.testimonial-slide.active { opacity: 1; }
.testimonial-quote-mark {
  font-family: var(--text-font);
  font-size: 72px;
  color: var(--crimson);
  line-height: 0.5;
  margin-bottom: 24px;
}
.testimonial-text {
  font-family: var(--text-font);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 500;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 32px;
}
.testimonial-author {
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pearl);
}
.testimonial-role {
  font-size: 11px;
  color: var(--smoke);
  letter-spacing: 1px;
  margin-top: 4px;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}
.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  padding: 0;
}
.t-dot.active { background: var(--crimson); }

/* ========== CONTACT ========== */
#contact {
  position: relative;
  background: var(--section-alt);
  padding: 120px 0;
  overflow: hidden;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}
.contact-info h3 {
  font-family: var(--text-font);
  font-size: 28px;
  font-weight: 600;
  color: var(--pearl);
  margin-bottom: 20px;
}
.contact-info p {
  font-size: 14px;
  color: var(--smoke);
  line-height: 1.9;
  margin-bottom: 32px;
}
.contact-detail-card {
  padding: 24px;
  margin-bottom: 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.3s ease;
}
.contact-detail-card:hover { border-color: rgba(192, 57, 43, 0.3); }
.contact-detail-card .cdc-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-card .cdc-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--crimson);
  fill: none;
  stroke-width: 1.5;
}
.cdc-text{
  text-decoration: none;
}
.contact-detail-card .cdc-text .cdc-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 4px;
}
.contact-detail-card .cdc-text .cdc-value {
  font-size: 14px;
  color: var(--off-white);
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { position: relative; }
.form-group label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 8px;
  display: block;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  color: var(--off-white);
  font-family: var(--body-font);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 12px;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--crimson);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--charcoal); color: var(--off-white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.btn-submit {
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pearl);
  background: var(--crimson);
  padding: 18px 40px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  border-radius: 12px;
}
.btn-submit:hover { background: #e74c3c; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(192, 57, 43, 0.3); }

.gallery-hidden { display: none; }
.gallery-item.gallery-more { cursor: pointer; }
.gallery-more-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: background 0.3s ease;
}
.gallery-item.gallery-more:hover .gallery-more-overlay { background: rgba(192, 57, 43, 0.55); }
.gallery-more-plus {
  font-family: var(--text-font);
  font-size: 52px;
  font-weight: 300;
  color: var(--pearl);
  line-height: 1;
}
.gallery-more-count {
  font-family: var(--text-font);
  font-size: 28px;
  font-weight: 600;
  color: var(--pearl);
  line-height: 1;
}
.gallery-more-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}

/* ========== GALLERY LIGHTBOX ========== */
#galleryLightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
#galleryLightbox.active {
  opacity: 1;
  visibility: visible;
}
.lb-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#lbImg {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  transition: opacity 0.25s ease;
}
#lbImg.fading { opacity: 0; }
.lb-caption {
  margin-top: 14px;
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--smoke);
  text-align: center;
}
.lb-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--smoke);
}
.lb-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.lb-close:hover { background: rgba(192,57,43,0.2); border-color: var(--crimson); }
.lb-close svg {
  width: 18px; height: 18px;
  stroke: var(--pearl); fill: none;
  stroke-width: 2; stroke-linecap: round;
}
.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
  z-index: 10;
}
.lb-arrow:hover { background: rgba(192,57,43,0.2); border-color: var(--crimson); box-shadow: 0 0 24px rgba(192,57,43,0.15); }
.lb-arrow svg {
  width: 20px; height: 20px;
  stroke: var(--pearl); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke 0.3s ease;
}
.lb-arrow:hover svg { stroke: var(--crimson); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

@media (max-width: 768px) {
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-arrow { width: 40px; height: 40px; }
  .testimonials-track { min-height: 260px; }
}

/* ========== FOOTER ========== */
#footer {
  background: var(--charcoal);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-links-row {
  display: flex;
  gap: 48px;
}
.footer-brand .footer-logo {
  font-family: var(--text-font);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--pearl);
  margin-bottom: 16px;
}
.footer-brand .footer-logo span { color: var(--crimson); }
.footer-brand .footer-tagline {
  font-size: 13px;
  color: var(--smoke);
  line-height: 1.8;
  max-width: 300px;
}
.footer-col h4 {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pearl);
  margin-bottom: 24px;
}
.footer-col a {
  display:inline;
  font-size: 13px;
  color: var(--smoke);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.3s ease;
  margin-right: 16px;
}
.footer-col a:hover { color: var(--crimson); }
.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 0;
  border-radius: 12px;
  text-decoration: none;
}
.social-icons a:hover {
  border-color: var(--crimson);
  background: rgba(192, 57, 43, 0.1);
}
.social-icons a i {
  font-size: 15px;
  color: var(--off-white);
  transition: color 0.3s ease;
}
.social-icons a:hover i { color: var(--crimson); }
.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 12px;
  color: var(--smoke);
  letter-spacing: 1px;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float i {
  font-size: 30px;
  color: #fff;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  animation: none;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ========== SLIDER ARROWS ========== */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
  border-radius: 14px;
}
.slider-arrow:hover {
  background: rgba(192, 57, 43, 0.2);
  border-color: var(--crimson);
  box-shadow: 0 0 24px rgba(192, 57, 43, 0.15);
}
.slider-arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--pearl);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}
.slider-arrow:hover svg { stroke: var(--crimson); }
.slider-arrow.arrow-prev { left: 24px; }
.slider-arrow.arrow-next { right: 24px; }

/* Testimonial arrows */
.t-arrow {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
  border-radius: 14px;
}
.t-arrow:hover {
  background: rgba(192, 57, 43, 0.2);
  border-color: var(--crimson);
  box-shadow: 0 0 24px rgba(192, 57, 43, 0.15);
}
.t-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--pearl);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}
.t-arrow:hover svg { stroke: var(--crimson); }

@media (max-width: 768px) {
  .slider-arrow { width: 44px; height: 44px; }
  .slider-arrow.arrow-prev { left: 12px; }
  .slider-arrow.arrow-next { right: 12px; }
  .slider-arrow svg { width: 16px; height: 16px; }
  .t-arrow { width: 40px; height: 40px; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .event-card { flex: 0 0 calc((100% - 28px) / 2); }
  .ev-prev { left: 0; }
  .ev-next { right: 0; }
  .gallery-grid { column-count: 2; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links-row { gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .event-card { flex: 0 0 100%; height: 340px; }
  .ev-prev { left: 0; }
  .ev-next { right: 0; }
  .gallery-grid { column-count: 2; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-links-row { gap: 24px; }
  .hero-title { font-size: clamp(32px, 8vw, 56px); }
  .section-heading { font-size: clamp(28px, 6vw, 42px); }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 280px; text-align: center; display: block; }
}

@media (max-width: 480px) {
  .gallery-grid { column-count: 1; }
  .stats-bar-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stats-grid { grid-template-columns: 1fr; }
  .testimonial-slide { padding: 24px; }
  .testimonials-wrapper { gap: 12px; }
  .testimonials-track { min-height: 360px; }
  .testimonial-dots { margin-top: 16px; }
  #about, #services, #events, #gallery, #testimonials, #contact { padding: 80px 0; }
  #stats-bar { padding: 60px 0; }
  .testimonials-track { min-height: 260px; }
}

/* ========== EVENT DETAIL PAGE ========== */
#event-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.ed-slider { width: 100%; height: 100%; position: relative; }
.ed-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.ed-slide.active { opacity: 1; }
.ed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.3) 60%, transparent 100%);
  z-index: 1;
}
.ed-hero-content {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  width: 90%;
  max-width: 800px;
}
.ed-category {
  display: inline-block;
  padding: 6px 18px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pearl);
  border-radius: 8px;
  margin-bottom: 20px;
}
.ed-title {
  font-family: var(--text-font);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 600;
  color: var(--pearl);
  line-height: 1.15;
  margin-bottom: 16px;
}
.ed-meta {
  font-size: 13px;
  color: var(--smoke);
  letter-spacing: 2px;
}
.ed-dot-sep { margin: 0 12px; color: var(--crimson); }
.ed-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.ed-arrow:hover { background: rgba(192,57,43,0.2); border-color: var(--crimson); }
.ed-arrow svg { width: 20px; height: 20px; stroke: var(--pearl); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.3s ease; }
.ed-arrow:hover svg { stroke: var(--crimson); }
.ed-prev { left: 24px; }
.ed-next { right: 24px; }
.ed-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.ed-dot {
  width: 10px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  border-radius: 4px;
}
.ed-dot.active { width: 28px; background: var(--crimson); }

/* Details Section */
#event-details {
  position: relative;
  background: var(--section-alt);
  padding: 100px 0 120px;
  overflow: hidden;
}
.ed-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--smoke);
  text-decoration: none;
  margin-bottom: 60px;
  transition: color 0.3s ease;
}
.ed-back-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ed-back-link:hover { color: var(--crimson); }
.ed-details-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}
.ed-desc-text {
  font-size: 15px;
  color: var(--off-white);
  line-height: 1.9;
  margin-bottom: 40px;
}
.ed-highlights-title {
  font-family: var(--text-font);
  font-size: 22px;
  font-weight: 600;
  color: var(--pearl);
  margin-bottom: 20px;
}
.ed-highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ed-highlights-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--off-white);
}
.ed-highlight-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--crimson);
  flex-shrink: 0;
}
.ed-info-card {
  padding: 36px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 24px;
}
.ed-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ed-info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ed-info-icon svg { width: 22px; height: 22px; stroke: var(--crimson); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.ed-info-label { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--smoke); margin-bottom: 4px; }
.ed-info-value { font-size: 15px; color: var(--pearl); font-weight: 500; }
.ed-cta-btn {
  display: block;
  text-align: center;
  padding: 18px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pearl);
  background: var(--crimson);
  text-decoration: none;
  transition: all 0.3s ease;
}
.ed-cta-btn:hover { background: #e74c3c; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(192,57,43,0.3); }

@media (max-width: 992px) {
  .ed-details-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .ed-prev { left: 8px; }
  .ed-next { right: 8px; }
  .ed-arrow { width: 40px; height: 40px; }
  #event-details { padding: 60px 0 80px; }
}

/* ========== ABOUT PAGE BANNER ========== */
.about-page-banner {
  position: relative;
  width: 100%;
  height: 72vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.about-page-banner .page-banner-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 110%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: translateZ(0);
}
.about-page-banner .page-banner-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.88) 60%, rgba(10,10,10,0.95) 100%);
}
.page-banner-content {
  position: relative;
  z-index: 2;
}
.page-banner-title {
  font-family: var(--text-font);
  font-size: clamp(42px, 7vw, 84px);
  font-weight: 600;
  color: var(--pearl);
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-banner-title em {
  color: var(--crimson);
  font-style: italic;
}
.page-banner-sub {
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 28px;
}
.page-banner-breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.page-banner-breadcrumb a {
  color: var(--smoke);
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-banner-breadcrumb a:hover { color: var(--crimson); }
.page-banner-breadcrumb span { color: var(--smoke); }
.page-banner-breadcrumb span:last-child { color: var(--crimson); }

/* ========== ABOUT STORY SECTION ========== */
#about-story {
  position: relative;
  background: var(--section-alt);
  padding: 120px 0;
  overflow: hidden;
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.about-story-img {
  position: relative;
  border-radius: 16px;
}
.about-story-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  filter: brightness(0.9) contrast(1.05);
}
.about-img-badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  padding: 20px 28px;
  border-radius: 12px;
  text-align: center;
  min-width: 130px;
}
.about-img-badge-num {
  display: block;
  font-family: var(--text-font);
  font-size: 36px;
  font-weight: 600;
  color: var(--pearl);
  line-height: 1;
}
.about-img-badge-txt {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--smoke);
  margin-top: 6px;
}
.about-story-text { }

/* ========== MISSION & VISION ========== */
#mission-vision {
  position: relative;
  background: var(--black);
  padding: 120px 0;
  overflow: hidden;
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}
.mv-card {
  padding: 48px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--crimson), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mv-card:hover { transform: translateY(-6px); border-color: rgba(192,57,43,0.3); }
.mv-card:hover::before { opacity: 1; }
.mv-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  background: rgba(192,57,43,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(192,57,43,0.2);
}
.mv-icon svg {
  width: 22px; height: 22px;
  stroke: var(--crimson);
  fill: none;
  stroke-width: 1.5;
}
.mv-title {
  font-family: var(--text-font);
  font-size: 28px;
  font-weight: 600;
  color: var(--pearl);
  margin-bottom: 16px;
}
.mv-rule {
  width: 40px;
  height: 1px;
  background: var(--crimson);
  margin-bottom: 20px;
}
.mv-text {
  font-size: 14px;
  color: var(--smoke);
  line-height: 1.9;
}

/* ========== OUR VALUES ========== */
#our-values {
  position: relative;
  background: var(--section-alt);
  padding: 120px 0;
  overflow: hidden;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.value-card {
  padding: 36px 28px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: all 0.4s ease;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--crimson), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.value-card:hover { transform: translateY(-8px); border-color: rgba(192,57,43,0.3); }
.value-card:hover::before { opacity: 1; }
.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  background: rgba(192,57,43,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(192,57,43,0.2);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.value-card:hover .value-icon {
  background: rgba(192,57,43,0.15);
  border-color: rgba(192,57,43,0.4);
}
.value-icon svg {
  width: 22px; height: 22px;
  stroke: var(--crimson);
  fill: none;
  stroke-width: 1.5;
}
.value-title {
  font-family: var(--text-font);
  font-size: 22px;
  font-weight: 600;
  color: var(--pearl);
  margin-bottom: 12px;
}
.value-text {
  font-size: 13px;
  color: var(--smoke);
  line-height: 1.85;
}

/* ========== ABOUT CTA ========== */
#about-cta {
  position: relative;
  background: var(--charcoal);
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.about-cta-text {
  font-size: 15px;
  color: var(--smoke);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ========== RESPONSIVE: ABOUT PAGE ========== */
@media (max-width: 1100px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .mv-grid { grid-template-columns: 1fr; }
  .about-page-banner { background-attachment: scroll; }
  .about-page-banner .page-banner-bg { background-attachment: scroll; }
}
@media (max-width: 600px) {
  .about-page-banner { height: 60vh; min-height: 420px; }
  .page-banner-title { font-size: clamp(32px, 8vw, 52px); }
  .about-story-img img { height: 280px; }
  .values-grid { grid-template-columns: 1fr; }
  .mv-card { padding: 32px 24px; }
  .about-img-badge { right: 16px; bottom: 16px; padding: 16px 20px; }
}
