/* ==========================================
   RAAJARAM - Premium Corporate Website
   Design System
   ========================================== */

:root {
  /* Brand Colors */
  --brand-primary: #212d63;
  --brand-primary-dark: #16204a;
  --brand-primary-light: #2e3f8a;
  --brand-accent: #212d63;
  --brand-accent-light: #e74c3c;
  --brand-secondary: #e8242e;

  /* Light Mode */
  --bg: #ffffff;
  --bg-alt: #f7f8fc;
  --bg-subtle: #eef0f8;
  --text-primary: #0d1117;
  --text-secondary: #4a5568;
  --text-muted: #8896a9;
  --border: #e2e8f0;
  --card-bg: #ffffff;
  --shadow: rgba(33, 45, 99, 0.08);
  --shadow-deep: rgba(33, 45, 99, 0.18);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;

  /* Transitions */
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --bg: #0a0e1a;
  --bg-alt: #111827;
  --bg-subtle: #1a2235;
  --text-primary: #f0f4ff;
  --text-secondary: #a8b4cc;
  --text-muted: #5a6a84;
  --border: #1e2d4a;
  --card-bg: #111827;
  --shadow: rgba(0, 0, 0, 0.3);
  --shadow-deep: rgba(0, 0, 0, 0.5);
}

/* ==========================================
   BASE RESET & TYPOGRAPHY
   ========================================== */

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}




body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  transition: background 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--brand-primary); border-radius: 3px; }

/* ==========================================
   HEADER
   ========================================== */

#mainHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}

#mainHeader.scrolled {
  background: var(--bg);
  box-shadow: 0 2px 24px var(--shadow-deep);
}



.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
          padding-right: 7rem !important;
        padding-left: 7rem !important;
}

.logo-img {
  height: 44px;
  width: auto;
  transition: var(--transition);
}
.header-logo {      background-color: #fff !important;
    border-radius: 0;
    padding-top: 15px;
    padding-left: 7px;
    padding-right: 7px;
    padding-bottom: 9px;}

#mainHeader.scrolled .logo-img {
  height: 36px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;

}

.header-nav a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  position: relative;
      padding: 22px 0px;
  transition: var(--transition);
}

#mainHeader.scrolled .header-nav a {
  color: var(--text-primary);
}


.header-nav a:hover::after { width: 100%; }
.header-nav a:hover { color: #fff; }
#mainHeader.scrolled .header-nav a:hover { color: #e8242e; }
.header-nav a.nav-active,
.header-nav .nav-dropdown-toggle.nav-active,
.nav-dropdown-item.nav-active { color: #e8242e !important; }
#mainHeader.scrolled .header-nav a.nav-active,
#mainHeader.scrolled .header-nav .nav-dropdown-toggle.nav-active { color: #e8242e !important; }
.nav-mega-menu a {padding:10px !important;}
.header-phone {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

#mainHeader.scrolled .header-phone {
  color: var(--text-secondary);
}

.header-phone:hover { color: var(--brand-accent-light); }

.theme-toggle {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}

/* Sticky dark mode button - fixed to left side of screen */
.theme-toggle-sticky {
        position: fixed;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1200;
    background: #00000085;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-top-left-radius: 8px;
    transition: var(--transition);
    backdrop-filter: blur(4px);
    border-bottom-left-radius: 8px;
}

.theme-toggle-sticky:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: white;
  transform: translateY(-50%) scale(1.08);
}

[data-theme="dark"] .theme-toggle-sticky {
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
}

[data-theme="dark"] .footer-links a:hover {
    color: #e8242e;
    transform: translateX(4px);
}



[data-theme="dark"] .nav-mega-item:hover {
    background: var(--bg-alt);
     color: #e8242e !important;
}



[data-theme="dark"] .nav-dropdown-item:hover {
    color: #e8242e !important;
    background: var(--bg-alt);
    padding-left: 28px;
}


[data-theme="dark"] .gal-filter-btn:hover {
    border-color: #e8242e);
    color: #e8242e;
    background: rgba(33, 45, 99, 0.05);
}


[data-theme="dark"] .theme-toggle-sticky:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: white;
}

#mainHeader.scrolled .theme-toggle {
  border-color: var(--border);
  color: var(--text-secondary);
}

.theme-toggle:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: white;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: var(--transition);
  border-radius: 2px;
}

#mainHeader.scrolled .hamburger span {
  background: var(--text-primary);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  background: var(--bg);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 
}

.mobile-nav.open { max-height: 85vh; overflow-y: auto; }

.mobile-nav-link {
  display: block;
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.mobile-nav-link:hover {
  color: var(--brand-primary);
  background: var(--bg-alt);
  padding-left: 32px;
}

/* ==========================================
   DESKTOP DROPDOWN MENUS
   ========================================== */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-chevron {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
}

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

/* Standard dropdown */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 40px var(--shadow-deep);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  transform: translateX(-50%) translateY(8px);
  z-index: 1100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}



.nav-dropdown-item {
  display: block;
  padding: 10px 20px !important;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary) !important;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-dropdown-item:hover {
  color: #e8242e !important;
  background: var(--bg-alt);
  padding-left: 28px;
}

/* Arrow pointer on dropdown 
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--bg);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}*/

/* Mega menu for products */
.nav-mega-menu {
  display: flex !important;
  flex-direction: row;
  gap: 0;
  width: max-content;
  padding: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  padding-bottom:0px;
}

.nav-dropdown:hover .nav-mega-menu {
  transform: translateX(-50%) translateY(0);
}

.nav-mega-item {
  flex: 0 0 auto;
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  text-decoration: none;
  border-radius: 6px;
  transition: var(--transition);
  color: var(--text-primary) !important;
}

.nav-mega-item:hover {
  background: var(--bg-alt);
  color: #e8242e !important;
}

.nav-mega-img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.nav-mega-item:hover .nav-mega-img {
  transform: scale(1.04);
}

.nav-mega-item span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==========================================
   MOBILE ACCORDION MENUS
   ========================================== */

.mobile-nav-accordion {
  border-bottom: 1px solid var(--border);
}

.mobile-acc-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: none;
  cursor: pointer;
  text-align: left;
}

.mobile-acc-icon {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
}

.mobile-nav-accordion.open .mobile-acc-icon {
  transform: rotate(180deg);
}

.mobile-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-alt);
}

.mobile-nav-accordion.open .mobile-acc-body {
  max-height: 300px;
}

.mobile-sub-link {
  display: block;
  padding: 11px 36px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.mobile-sub-link:last-child {
  border-bottom: none;
}

.mobile-sub-link:hover {
  color: var(--brand-primary);
  padding-left: 44px;
}

/* Keep max-height larger when mobile accordions open */
.mobile-nav.open {
  max-height: 800px !important;
}

/* ==========================================
   HERO
   ========================================== */

#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ── Each slide: crossfade via opacity ── */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  overflow: hidden;
}

.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide.leaving { opacity: 0; z-index: 0; }

/* ── Ken Burns zoom on background ── */
.hero-slide-bg {
  position: absolute;
  inset: -4%;
  background-size: cover;
  background-position: center;
  /* Default: stay at zoomed-in state so removing .active never snaps back */
  transform: scale(1.06);
  will-change: transform;
}

@keyframes kenburns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.06); }
}

/* Active slide: animate in from scale(1) */
.hero-slide.active .hero-slide-bg {
  animation: kenburns 6s ease-in-out forwards;
}

/* Outgoing slide: freeze at current zoom, fade handled by parent */
.hero-slide.leaving .hero-slide-bg {
  animation: none;
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13, 17, 40, 0.72) 0%,
    rgba(33, 45, 99, 0.45) 50%,
    rgba(0, 0, 0, 0.18) 100%
  );
  z-index: 1;
}

/* ── Fixed hero content (Aditya Birla style) ── */
.hero-content-fixed {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5vw;
  pointer-events: none;
  text-align: left;
}

/* ── Outer title row: static text + clipping window side by side ── */
.hero-brand-title {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}

/* Static part — NEVER moves */
.hero-brand-static {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.8vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}

.hero-separator {
  font-weight: 100;
  margin: 0 0.28em;
  color: rgba(255,255,255,0.55);
}

/* ── Word clip window: just clips overflow, no width transitions ── */
.hero-word-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  /* height slightly generous so descenders/ascenders aren't clipped */
  height: 1.45em;
  vertical-align: middle;
  /* width tracks the hidden sizer automatically — no JS, no transitions */
}

/* Hidden sizer: identical styles, stays in flow → drives wrapper width */
.hero-word-sizer {
  display: inline-block;
  visibility: hidden;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.8vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.45;
  pointer-events: none;
  user-select: none;
}

/* Rolling words — absolute inside the clip window */
.hero-dynamic-word {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.8vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  will-change: transform, opacity;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .hero-content-fixed {
    justify-content: center;
    padding: 0 24px !important;
    text-align: center;
  }
  .hero-brand-title {
    flex-direction: column;
    align-items: center;
    white-space: normal;
    text-align: center;
  }
  .hero-brand-static {
    display: block;
    text-align: center;
    white-space: nowrap;
  }
  .hero-word-wrapper {
    margin-top: 0.1em;
    display: flex;
    justify-content: center;
  }
  .hero-separator { display: none; }
}

@media (max-width: 600px) {
  .hero-brand-title {
    flex-direction: column;
    align-items: center;
    white-space: normal;
    text-align: center;
  }
  .hero-brand-static {
    display: block;
    text-align: center;
  }
  .hero-word-wrapper {
    margin-top: 0.1em;
    justify-content: center;
  }
  .hero-separator { display: none; }
}

/* Default hidden state */
.hero-dynamic-word.current {
  transform: translateY(0);
  opacity: 1;
}

.hero-dynamic-word.next {
  transform: translateY(100%);
  opacity: 0;
}

/* Exit: current rolls upward and fades */
@keyframes wordExit {
  0%   { transform: translateY(0);     opacity: 1; }
  100% { transform: translateY(-110%); opacity: 0; }
}

/* Enter: next rises in from below */
@keyframes wordEnter {
  0%   { transform: translateY(110%); opacity: 0; }
  100% { transform: translateY(0);    opacity: 1; }
}

.hero-dynamic-word.animating-out {
  animation: wordExit 0.7s ease-in-out forwards;
}

.hero-dynamic-word.animating-in {
  animation: wordEnter 0.7s ease-in-out forwards;
}

/* ── Keep old classes harmless (used nowhere but safe) ── */
.hero-content { display: none; }
.animate-up   { opacity: 0; }
.hero-slide.active .animate-up { opacity: 1; }
.hero-slide.active .delay-1 { transition-delay: 0.15s; }
.hero-slide.active .delay-2 { transition-delay: 0.28s; }
.hero-slide.active .delay-3 { transition-delay: 0.42s; }

/* Slider Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: none !important;
}

.slider-btn:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}

.slider-prev { left: 24px; }
.slider-next { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  display: none !important;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: white;
  width: 24px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.22s; }
.reveal.delay-3 { transition-delay: 0.32s; }
.reveal.delay-4 { transition-delay: 0.42s; }

/* ==========================================
   SHARED SECTION STYLES
   ========================================== */

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 14px;
}

.section-label.light { color: rgba(255,255,255,0.6); }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 0;
}

.section-heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--brand-primary);
}

[data-theme="dark"] .section-heading em { color: #ffffff; }

.section-body {
  font-size: 0.97rem;
  line-height: 1.78;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.section-sub-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 16px auto 0;
  line-height: 1.7;
}

.btn-primary-custom {
  display: inline-block;
  padding: 14px 40px;
  background: var(--brand-primary);
  color: white;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--brand-primary);
  cursor: pointer;
}

.btn-primary-custom:hover {
  background: var(--brand-primary-dark);
  border-color: var(--brand-primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-deep);
}

.btn-light-custom {
  display: inline-block;
  padding: 14px 40px;
  background: transparent;
  color: white;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.6);
  transition: var(--transition);
}

.btn-light-custom:hover {
  background: white;
  color: var(--brand-primary);
  border-color: white;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.section-about {
  padding: 100px 0;
  background: var(--bg);
}

.about-text-col {
  padding: 60px 60px 60px 0;
}

@media (max-width: 991px) {
  .about-text-col { padding: 40px 0; }
}

.brand-quote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  color: var(--brand-primary);
  border-left: 3px solid var(--brand-secondary);
  padding: 12px 0 12px 24px;
  margin: 28px 0 8px;
  line-height: 1.6;
}

[data-theme="dark"] .brand-quote { color: #9aabe8; }

.quote-attr {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin: 0;
}

.about-image-col {
  position: relative;
}

.about-img-wrapper {
  position: relative;
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.about-img-wrapper:hover .about-img { transform: scale(1.04); }

.about-badge {
  position: absolute;
  bottom: 32px;
  left: -20px;
  background: var(--brand-secondary);
  color: white;
  padding: 20px 28px;
  text-align: center;
}

.badge-year {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 4px;
}

/* ==========================================
   LEGACY SECTION
   ========================================== */

.section-legacy {
  position: relative;
}

.legacy-bg {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  position: relative;
}

@media (max-width: 768px) {
  .legacy-bg { background-attachment: scroll; padding: 80px 0; }
}

.legacy-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 17, 40, 0.9) 0%, rgba(33, 45, 99, 0.8) 100%);
}

.legacy-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 900px;
}

@media (max-width: 768px) {
  .legacy-content { padding: 0 24px; }
}

.legacy-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  color: white;
  line-height: 1.1;
  margin: 12px 0 20px;
}

.legacy-heading em { font-style: italic; font-weight: 300; }

.legacy-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  line-height: 1.75;
}

.legacy-stats {}

.stat-block {
  text-align: center;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  transition: var(--transition);
      min-height: 145px;
}

.stat-block:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

/* ==========================================
   PRODUCTS
   ========================================== */

.section-products {
  padding: 70px 0;
  background: var(--bg-alt);
}

/* ==========================================
   COLLECTIONS MASONRY GRID
   ========================================== */

.collections-masonry {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  grid-auto-rows: auto;
  
  align-items: start;
}

.collections-masonry .collection-card:nth-child(1) { grid-row: span 2; }
.collections-masonry .collection-card:nth-child(4) { grid-row: span 2; }

@media (max-width: 1199px) {
  .collections-masonry {
    grid-template-columns: 1fr 1fr;
  }
  .collections-masonry .collection-card:nth-child(1),
  .collections-masonry .collection-card:nth-child(4) {
    grid-row: auto;
  }
}

@media (max-width: 575px) {
  .collections-masonry { grid-template-columns: 1fr; }
}

/* ── Card ── */
.collection-card {
  position: relative;
  cursor: pointer;
}

/* ── Image wrap — clips everything ── */
.collection-img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
      min-height:522px;
}

.collection-img-wrap img {
  width: 100%;
  height: 100%;
 min-height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.collections-masonry .collection-card:nth-child(1) .collection-img-wrap img,
.collections-masonry .collection-card:nth-child(4) .collection-img-wrap img {
  min-height: 520px;
  max-height: 520px;
}

.collection-card:hover .collection-img-wrap img {
  transform: scale(1.06);
}

/* ── Always-visible title bar at bottom — gradient only, no solid bg ── */
.collection-title-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 20px 18px;
  background: linear-gradient(to top, rgba(10,14,30,0.78) 0%, transparent 100%);
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 1;
}

/* Hide the static title bar when hover panel is visible */
.collection-card:hover .collection-title-bar {
  opacity: 0;
}

.collection-title-bar .cl-tag {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 3px;
}

.collection-title-bar .cl-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* ── Hover panel — full content, slides up from bottom ── */
.collection-hover-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 52px 20px 22px;
  background: linear-gradient(to top, rgba(10,14,30,0.93) 0%, rgba(10,14,30,0.75) 60%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.collection-card:hover .collection-hover-panel {
  transform: translateY(0);
}

.collection-hover-panel .cl-tag {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.collection-hover-panel .cl-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.25;
}

.collection-desc {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin-bottom: 14px;
}

.collection-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.45);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}

.collection-link:hover {
  color: var(--brand-accent-light);
  border-color: var(--brand-accent-light);
}

/* Clean up old class references */
.collection-label-bar,
.collection-overlay,
.collection-header { display: none; }

/* ==========================================
   VISION & MISSION
   ========================================== */

.section-vision {
  padding: 100px 0;
  background: var(--bg);
}

.vision-block {
  padding: 48px;
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.vision-block::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--brand-primary);
  transition: width 0.5s ease;
}

.vision-block:hover::before { width: 100%; }
.vision-block:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 12px 40px var(--shadow);
  transform: translateY(-4px);
}

.vision-block.mission::before { background: var(--brand-secondary); }

.vm-icon {
  font-size: 2rem;
  color: var(--brand-primary);
  margin-bottom: 20px;
}

.vision-block.mission .vm-icon { color: var(--brand-secondary); }

.vm-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.vm-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
}

/* ==========================================
   VALUES - VISUAL GRID
   ========================================== */

.section-values {
  padding: 100px 0;
  background: var(--bg-alt);
}

.values-visual-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  overflow: hidden;
}

.value-visual-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  cursor: default;
}

.value-visual-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.45);
}

.value-visual-card:hover .value-visual-img {
  transform: scale(1.08);
  filter: brightness(0.3);
}

.value-visual-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 32px 24px;
  text-align: center;
  background: linear-gradient(to top, rgba(33,45,99,0.92) 0%, rgba(33,45,99,0.4) 50%, transparent 100%);
  transition: var(--transition);
}

.value-visual-card:hover .value-visual-overlay {
  background: linear-gradient(to top, rgba(33,45,99,0.98) 0%, rgba(33,45,99,0.7) 60%, rgba(33,45,99,0.2) 100%);
}

.value-visual-icon {
  font-size: 2rem;
  color: var(--brand-accent);
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.value-visual-card:hover .value-visual-icon {
  transform: scale(1.2);
}

.value-visual-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.value-visual-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.value-visual-card:hover .value-visual-desc {
  max-height: 60px;
  opacity: 1;
}

@media (max-width: 991px) {
  .values-visual-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .value-visual-card {
    height: 280px;
  }
}

@media (max-width: 575px) {
  .values-visual-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .value-visual-card {
    height: 240px;
  }
}

/* ==========================================
   BRANDS - VISUAL GRID
   ========================================== */

.section-brands {
  padding: 100px 0;
  background: var(--bg);
}

.brands-visual-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 9px;
}

.brand-visual-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  height: 340px;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.brand-visual-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px var(--shadow-deep);
  border-color: var(--brand-primary);
}

.brand-visual-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.35);
}

.brand-visual-card:hover .brand-visual-img {
  transform: scale(1.08);
  filter: brightness(0.25);
}

.brand-visual-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  text-align: center;
  background: linear-gradient(to bottom, transparent 0%, rgba(33,45,99,0.75) 100%);
  transition: background 0.4s ease;
}

.brand-visual-card:hover .brand-visual-content {
  background: linear-gradient(to bottom, rgba(33,45,99,0.5) 0%, rgba(33,45,99,0.92) 100%);
}

.brand-visual-icon {
  font-size: 2.2rem;
  color: var(--brand-accent);
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.brand-visual-card:hover .brand-visual-icon {
  transform: scale(1.15);
}

.brand-visual-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.brand-visual-tag {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.brand-visual-line {
  width: 0;
  height: 2px;
  background: var(--brand-accent);
  transition: width 0.4s ease;
  margin: 0 auto;
}

.brand-visual-card:hover .brand-visual-line {
  width: 48px;
}

@media (max-width: 991px) {
  .brands-visual-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .brand-visual-card {
    height: 280px;
  }
}

@media (max-width: 575px) {
  .brands-visual-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-visual-card {
    height: 240px;
  }
}

/* ==========================================
   TESTIMONIALS SLIDER
   ========================================== */

.section-testimonials {
  padding: 110px 0;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.testimonials-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(33,45,99,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(192,57,43,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Wrapper holds prev/next + track */
.testimonials-slider-wrapper {
  position: relative;
  padding: 0 60px;
}

/* Prev / Next buttons */
.tslider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--brand-primary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--shadow);
}

.tslider-btn:hover {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
  box-shadow: 0 8px 30px var(--shadow-deep);
}

.tslider-prev { left: 0; }
.tslider-next { right: 0; }

/* Track outer: clips overflow */
.tslider-track-outer {
  overflow: hidden;
}

/* Track scrolls horizontally */
.tslider-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

/* Each slide */
.tslider-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 8px 4px;
}

/* Split layout inside slide */
.tslider-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 300px;
  background: var(--card-bg);
 

  overflow: hidden;
}

/* Left: image panel */
.tslider-left {
  position: relative;
  overflow: hidden;
}

.tslider-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}

.tslider-slide.active .tslider-img {
  transform: scale(1.04);
}

.tslider-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(33,45,99,0.7) 0%, rgba(192,57,43,0.35) 100%);
}

.tslider-img-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  width: 56px;
  height: 56px;
  background: var(--brand-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 6px 20px rgba(192,57,43,0.4);
}

/* Right: content panel */
.tslider-right {
  padding: 52px 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tslider-stars {
  color: #f5a623;
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.tslider-text {
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.85;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 36px;
  flex: 1;
}

.tslider-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tslider-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 3px solid var(--brand-primary);
}

.tslider-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.tslider-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Dots */
.tslider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.tslider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.tslider-dot.active {
  background: var(--brand-primary);
  transform: scale(1.3);
}

.tslider-dot:hover {
  background: var(--brand-primary-light);
}

/* Responsive */
@media (max-width: 991px) {
  .tslider-inner {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 1fr;
    min-height: unset;
  }
  .tslider-left {
    height: 260px;
    position: relative;
  }
  .tslider-img { position: absolute; }
  .tslider-right {
    padding: 36px 32px 32px;
  }
  .testimonials-slider-wrapper {
    padding: 0 44px;
  }
}

@media (max-width: 575px) {
  .testimonials-slider-wrapper {
    padding: 0 36px;
  }
  .tslider-btn {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
  .tslider-right {
    padding: 28px 20px 24px;
  }
  .tslider-text {
    font-size: 1rem;
  }
}

/* ==========================================
   GALLERY
   ========================================== */

/* ==========================================
   GALLERY SECTION
   ========================================== */

.section-gallery {
  padding: 100px 0;
  background: var(--bg-alt);
}

/* ── Gallery Tabs ── */
.gallery-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px;
  width: fit-content;
  margin: 0 auto 48px;
}

.gallery-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.87rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-tab-btn.active {
  background: var(--brand-primary);
  color: white;
  box-shadow: 0 4px 14px rgba(33,45,99,0.3);
}

.gallery-tab-btn:hover:not(.active) {
  color: var(--brand-primary);
  background: var(--border);
}

/* ── Tab Content ── */
.gallery-tab-content {
  display: none;
}

.gallery-tab-content.active {
  display: block;
}

/* ── Image Gallery Masonry Grid (7 items) ── */
.gallery-masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px 220px;
  gap: 10px;
}

/* Tall items span 2 rows */
.gallery-masonry-grid .gi-tall {
  grid-row: span 2;
}

/* Wide items span 2 cols */
.gallery-masonry-grid .gi-wide {
  grid-column: span 2;
}

/* Precise positioning for a balanced 7-image masonry layout */
.gallery-masonry-grid .gallery-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.gallery-masonry-grid .gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery-masonry-grid .gallery-item:nth-child(3) { grid-column: 3; grid-row: 1; }
.gallery-masonry-grid .gallery-item:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }
.gallery-masonry-grid .gallery-item:nth-child(5) { grid-column: 4; grid-row: 1 / 3; }
.gallery-masonry-grid .gallery-item:nth-child(6) { grid-column: 1 / 3; grid-row: 3; }
.gallery-masonry-grid .gallery-item:nth-child(7) { grid-column: 3 / 5; grid-row: 3; }

@media (max-width: 991px) {
  .gallery-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 200px 200px 200px 200px;
  }
  .gallery-masonry-grid .gallery-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
  .gallery-masonry-grid .gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
  .gallery-masonry-grid .gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
  .gallery-masonry-grid .gallery-item:nth-child(4) { grid-column: 1 / 3; grid-row: 3; }
  .gallery-masonry-grid .gallery-item:nth-child(5) { grid-column: 1; grid-row: 4; }
  .gallery-masonry-grid .gallery-item:nth-child(6) { grid-column: 2; grid-row: 4; }
  .gallery-masonry-grid .gallery-item:nth-child(7) { grid-column: 1 / 3; grid-row: 5; }
}

@media (max-width: 575px) {
  .gallery-masonry-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-masonry-grid .gallery-item,
  .gallery-masonry-grid .gallery-item:nth-child(n) {
    grid-column: 1;
    grid-row: auto;
    height: 220px;
  }
}

/* ── Gallery Item ── */
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ── Hover Overlay with centered eye icon ── */
.gallery-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(33, 45, 99, 0.72);
  display: flex;
  align-items: center;       /* vertical center */
  justify-content: center;   /* horizontal center */
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-hover-overlay {
  opacity: 1;
}

.gallery-view-icon {
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  transform: scale(0.75);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
}

.gallery-item:hover .gallery-view-icon {
  transform: scale(1);
}

/* ── Video Gallery Grid ── */
.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 991px) {
  .video-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .video-gallery-grid { grid-template-columns: 1fr; }
}

.vgallery-item {
  cursor: pointer;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vgallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--shadow-deep);
}

.vgallery-thumb {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.vgallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.vgallery-item:hover .vgallery-thumb img {
  transform: scale(1.06);
}

.vgallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,17,40,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.vgallery-item:hover .vgallery-overlay {
  background: rgba(33, 45, 99, 0.75);
}

.vgallery-play-btn {
  width: 56px;
  height: 56px;
  background: var(--brand-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
  padding-left: 3px; /* optical centering for play icon */
}

.vgallery-item:hover .vgallery-play-btn {
  transform: scale(1.1);
  background: var(--brand-accent-light);
}

.vgallery-info {
  padding: 14px 16px;
}

.vgallery-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 6px;
  line-height: 1.3;
}

.vgallery-duration {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ── Video Modal ── */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(6px);
}

.video-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.video-modal-box {
  position: relative;
  width: 90vw;
  max-width: 900px;
  transform: scale(0.88);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal-overlay.open .video-modal-box {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.video-modal-close:hover {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
}

.video-modal-frame {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  background: black;
}

.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── Image Lightbox Modal ── */
.image-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(8px);
}

.image-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.image-modal-content {
  max-width: 88vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-modal-content img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  animation: imgModalIn 0.35s ease;
}

@keyframes imgModalIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

.image-modal-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  transition: background 0.2s;
}

.image-modal-close:hover { background: var(--brand-accent); border-color: var(--brand-accent); }

.image-modal-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  transition: background 0.2s;
}

.image-modal-nav:hover { background: var(--brand-primary); border-color: var(--brand-primary); }
.image-modal-nav.prev { left: 20px; }
.image-modal-nav.next { right: 20px; }

/* ==========================================
   NEWS
   ========================================== */

.section-news {
  padding: 100px 0;
  background: var(--bg);
}

.news-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px var(--shadow);
}

.news-img {
  overflow: hidden;
  height: 220px;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-img img { transform: scale(1.06); }

.news-body { padding: 28px; }

.news-date {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-accent);
  display: block;
  margin-bottom: 10px;
}

.news-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 12px;
}

.news-excerpt {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.news-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.news-link:hover { gap: 12px; color: var(--brand-primary-dark); }

/* ==========================================
   CAREERS
   ========================================== */

.section-careers {
  position: relative;
}

.careers-bg {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 140px 0;
  position: relative;
}

@media (max-width: 768px) {
  .careers-bg { background-attachment: scroll; padding: 100px 0; }
}

.careers-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,17,40,0.88) 0%, rgba(33,45,99,0.75) 100%);
}

.careers-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 700px;
  margin: 0 auto;
}

.careers-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  color: white;
  line-height: 1.1;
  margin: 12px 0 20px;
}

.careers-heading em { font-style: italic; font-weight: 300; }

.careers-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto;
}

/* ==========================================
   CONTACT
   ========================================== */

.section-contact {
  padding: 0;
  background: var(--brand-primary);
}

.contact-block {
  padding: 100px 0;
}

.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: white;
  line-height: 1.1;
  margin: 12px 0 20px;
}

.contact-heading em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.7); }

.contact-sub {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.contact-item i { font-size: 1rem; color: rgba(255,255,255,0.4); }

.contact-form {}

.rj-input {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: white !important;
  padding: 14px 18px !important;
  border-radius: 0 !important;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  transition: var(--transition) !important;
}

.rj-input::placeholder { color: rgba(255,255,255,0.4) !important; }

.rj-input:focus {
  background: rgba(255,255,255,0.13) !important;
  border-color: rgba(255,255,255,0.5) !important;
  box-shadow: none !important;
  outline: none !important;
}

.section-contact .btn-primary-custom {
  background: white;
  color: var(--brand-primary);
  border-color: white;
  width: 100%;
  text-align: center;
  justify-content: center;
}

.section-contact .btn-primary-custom:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

/* ==========================================
   FOOTER
   ========================================== */

.site-footer {
  background: var(--bg-alt);
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
}

[data-theme="dark"] .site-footer {
  background: #060a13;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-desc {
  font-size: 0.86rem;
  line-height: 1.72;
  color: var(--text-muted);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: white;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.86rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: #e8242e;
  transform: translateX(4px);
}

/* Company footer: split into two columns and allow a forced column-break */

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  letter-spacing: 0.04em;
}

/* ==========================================
   RESPONSIVE POLISH
   ========================================== */

@media (max-width: 991px) {
  .section-about,
  .section-products,
  .section-vision,
  .section-values,
  .section-brands,
  .section-gallery,
  .section-news { padding: 70px 0; }

  .about-img { height: 380px; }
  .about-badge { left: 16px; }
  .collection-img-wrap {     min-height: 523px; }
  .legacy-content, .careers-content { padding: 0 24px; }
}

@media (max-width: 768px) {
  .slider-btn { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .vision-block { padding: 32px; }
  .contact-block { padding: 60px 0; }
}

/* (Reverted temporary company split CSS — layout is handled by JS now) */


/* ===========================================
   NEW: LEGACY & LEADERSHIP SECTION
   =========================================== */

.section-ll {
  background: var(--bg-primary, #fff);
  padding: 60px 0 0;
      margin-bottom: 35px;
}

[data-theme="dark"] .section-ll {
  background: var(--bg-primary);
}

.ll-header {
  padding: 0 122px 36px;
}

@media (max-width: 768px) {
  .ll-header { padding: 0 24px 28px; }
}

.ll-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--brand-accent);
  margin: 0 0 6px;
  line-height: 1.15;
}

.ll-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted, #888);
  margin: 0;
  letter-spacing: 0.02em;
}

.ll-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  height: clamp(300px, 42vw, 540px);
}

@media (max-width: 768px) {
  .ll-cards-row {
    grid-template-columns: 1fr;
    height: auto;
  }
}

.ll-card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .ll-card { height: 260px; }
}

.ll-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transform: scale(1);
  transition: transform 0.7s ease;
}

.ll-card:hover .ll-card-img {
  transform: scale(1.04);
}

.ll-card:first-child .ll-card-img {
  filter: sepia(60%) contrast(1.1) brightness(0.85);
}

.ll-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.18) 55%,
    rgba(0,0,0,0.05) 100%
  );
  transition: background 0.4s ease;
}

.ll-card:hover .ll-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.28) 60%,
    rgba(0,0,0,0.08) 100%
  );
}

.ll-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 36px;
  z-index: 2;
}

@media (max-width: 768px) {
  .ll-card-content { padding: 20px; }
}

.ll-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.85rem);
  font-weight: 400;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.3;
}

.ll-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.ll-card:hover .ll-card-link {
  color: #fff;
  border-color: rgba(255,255,255,0.8);
}

/* ===========================================
   NEW: A FORCE FOR GOOD SECTION
   =========================================== */

.section-ffg {
  width: 100%;
}

.ffg-bg {
  position: relative;
  width: 100%;
  height: clamp(300px, 45vw, 580px);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ffg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
}

.ffg-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.ffg-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 5.5rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.04em;
  margin: 0 0 20px;
  line-height: 1.1;
}

.ffg-logo {
  display: block;
  width: clamp(220px, 30vw, 420px);
  max-width: 100%;
  height: auto;
  margin: 0 auto 20px;
}

.ffg-red {
  color: #fff;
  font-weight: 600;
}

.ffg-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}

.ffg-link:hover {
  color: #fff;
  border-color: #fff;
}

/* ===========================================
   NEW: QUICK TAKES SECTION
   =========================================== */

.section-qt {
  background: #fff;
  padding: 70px 0 80px;
  overflow: hidden;
  padding-left: 122px;
    padding-right: 122px;
}

[data-theme="dark"] .section-qt { background: #1a1a1a; }

.qt-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 44px;
}

@media (max-width: 900px) {
  .qt-top { grid-template-columns: 1fr; gap: 16px; }
}

.qt-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 600;
  color: var(--brand-accent);
  margin: 0;
  line-height: 1.1;
}

.qt-desc {
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--text-secondary, #555);
  line-height: 1.7;
  margin: 0 0 18px;
}

[data-theme="dark"] .qt-desc { color: rgba(255,255,255,0.6); }

.qt-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-accent);
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1.5px solid var(--brand-accent);
  padding-bottom: 2px;
  transition: opacity 0.3s;
}

.qt-view-all:hover { opacity: 0.72; color: var(--brand-accent); }



/* --- Desktop & Laptop (≥1024px): 6-column grid --- */
.qt-track-wrap {
  overflow: visible;
}
.qt-track-wrap.dragging { cursor: grabbing; user-select: none; }

.qt-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 80%;
  max-width: 760px;
  margin: 0 auto;
  padding: 4px 2px 12px;
}

.qt-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(130px, 11vw, 170px);
  padding: 16px;
  background: #fff;
  /* box-shadow: 0 4px 24px rgba(0,0,0,0.18); */
}

.qt-card-logo {
  width: 190px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.qt-card-logo--vitto {
  width: 190px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

/* --- Tablet (768px – 1023px): 3-column grid --- */
@media (min-width: 768px) and (max-width: 1023px) {
  .qt-track-wrap { overflow: visible; }
  .qt-track { grid-template-columns: repeat(3, 1fr); gap: 12px; width: 100%; }
  .qt-card {
    height: clamp(110px, 12vw, 145px);
  }
  .qt-card-logo,
  .qt-card-logo--vitto {
    width: 140px;
  }
}

/* --- Mobile (575px – 767px): 2-column grid --- */
@media (max-width: 767px) {
  .qt-track-wrap {
    overflow: visible;
    padding-bottom: 0;
  }
  .qt-track-wrap::-webkit-scrollbar { display: none; }
  .qt-track {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 12px;
    padding: 4px 0 12px;
  }
  .qt-card {
    height: clamp(105px, 30vw, 145px);
  }
  .qt-card-logo,
  .qt-card-logo--vitto {
    width: clamp(90px, 28vw, 130px);
  }
  /* Dot bullets */
  .qt-dots {
    display: none;
  }
  .qt-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(192,57,43,0.25);
    display: inline-block;
    transition: background 0.3s;
    cursor: pointer;
  }
  .qt-dots span.active {
    background: var(--brand-accent, #c0392b);
  }
}

/* --- Small Mobile (≤574px): 2-column grid --- */
@media (max-width: 574px) {
  .qt-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .qt-card {
    height: clamp(85px, 32vw, 120px);
  }
  .qt-card-logo,
  .qt-card-logo--vitto {
    width: clamp(70px, 32vw, 120px);
  }
}

/* Hide dots on tablet and above */
@media (min-width: 768px) {
  .qt-dots { display: none !important; }
}

/* ==========================================
   BUSINESSES SECTION
   ========================================== */

.section-businesses {
  background: var(--bg);
     padding: 0px 122px;
}

[data-theme="dark"] .section-businesses { background: #0a0e1a; }

.biz-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 48px;
}

@media (max-width: 768px) {
  .biz-header { grid-template-columns: 1fr; gap: 20px; padding-top: 50px; padding-bottom: 30px; }
}

.biz-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--brand-accent);
  margin: 0 0 6px;
  line-height: 1.1;
}

.biz-sub {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin: 0;
}

.biz-desc {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 0 18px;
}

[data-theme="dark"] .biz-desc { color: rgba(255,255,255,0.6); }

.biz-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.87rem;
  font-weight: 500;
  color: #e6242e;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.3s;
}

.biz-view-all:hover { opacity: 0.72; color: var(--brand-accent); }

/* Grid: 3 columns, no gap */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

@media (max-width: 768px) {
  .biz-grid { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .biz-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Individual card */
.biz-card {
  position: relative;
  height: 420px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;

  /* Flip animation initial state */
  opacity: 0;
  transform: perspective(1000px) rotateY(-90deg);
  transform-origin: center center;
  transition: none;
}

@media (max-width: 768px) {
  .biz-card { height: 300px; }
}

/* Triggered visible state */
.biz-card.biz-visible {
  animation: flipLeft 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Dark gradient overlay */
.biz-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.18) 55%, transparent 100%);
  transition: background 0.4s ease;
}

.biz-card:hover .biz-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.38) 65%, rgba(0,0,0,0.08) 100%);
}

/* Zoom on hover */
.biz-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.biz-card:hover .biz-card-overlay,
.biz-card:hover .biz-card-content { z-index: 2; }

/* Pseudo zoom via scale on card itself via inner img trick — use transform on overlay instead */
/* Subtle scale on hover — separate from flip */
.biz-card .biz-card-overlay,
.biz-card .biz-card-content {
  position: absolute;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}

/* Content at bottom */
.biz-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 24px;
  z-index: 2;
}

.biz-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.15;
}

.biz-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.biz-card-link:hover { color: #fff; }


/* ==========================================
   COMMUNITY SECTION
   ========================================== */

.section-community {
  background: var(--bg);
}

[data-theme="dark"] .section-community { background: #0a0e1a; }

.comm-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 48px;
      padding-left: 122px !important;
    padding-right: 122px !important;
}

@media (max-width: 768px) {
  .comm-header { grid-template-columns: 1fr; gap: 20px; padding-top: 50px; padding-bottom: 30px; }
}

.comm-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--brand-accent);
  margin: 0 0 6px;
  line-height: 1.1;
}

.comm-sub {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin: 0;
}

.comm-desc {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 0 18px;
}

[data-theme="dark"] .comm-desc { color: rgba(255,255,255,0.6); }

.comm-visit-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.87rem;
  font-weight: 500;
  color: #e6242e;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.3s;
}

.comm-visit-link:hover { opacity: 0.72; color: var(--brand-accent); }

/* Full-width banner image */
.comm-banner {
  position: relative;
  width: 100%;
  height: 480px;
  background-size: cover;
  background-position: center top;
  overflow: hidden;

  /* Flip scroll animation initial state — flip from left */
  opacity: 0;
  transform: rotateY(-90deg) translateX(-40px);
  transform-origin: left center;
  transform-style: preserve-3d;
  transition:
    opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.comm-banner.biz-visible {
  opacity: 1;
  transform: rotateY(0deg) translateX(0);
}

@media (max-width: 768px) {
  .comm-banner { height: 340px; }
}

.comm-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.28) 55%, transparent 100%);
}

.comm-banner-content {
  position: absolute;
     bottom: 147px;
  left: 0;
  padding: 48px 48px 44px;
  max-width: 520px;
  z-index: 2;
}

@media (max-width: 768px) {
  .comm-banner-content { padding: 28px 24px; max-width: 100%; }
}

.comm-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
}

.comm-banner-sub {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: rgba(255,255,255,0.85);
  margin: 0 0 18px;
  line-height: 1.6;
}

.comm-banner-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.comm-banner-link:hover { color: #fff; }


/* ==========================================
   FFG CONTENT — FADE IN FROM BOTTOM ON SCROLL
   ========================================== */

.ffg-content {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

.ffg-content.ffg-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ==========================================
   DARK MODE — BUSINESSES & COMMUNITY TEXT FIXES
   ========================================== */

[data-theme="dark"] .biz-sub,
[data-theme="dark"] .comm-sub {
  color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .biz-desc,
[data-theme="dark"] .biz-view-all,
[data-theme="dark"] .comm-visit-link,
[data-theme="dark"] .comm-desc {
  color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .biz-card-title,
[data-theme="dark"] .biz-card-link,
[data-theme="dark"] .comm-banner-title,
[data-theme="dark"] .ll-heading,
[data-theme="dark"] .biz-heading,
[data-theme="dark"] .comm-heading,
[data-theme="dark"] .comm-banner-sub,
[data-theme="dark"] .comm-banner-link {
  color: #fff;
}


/* ==========================================
   DARK MODE — MISSING TEXT COLOR FIXES
   ========================================== */




[data-theme="dark"] .section-label {
  color: rgba(255, 255, 255, 0.75);
}

[data-theme="dark"] .qt-heading {
  color: #fff;
}

[data-theme="dark"] .qt-view-all {
  color: var(--brand-accent);
}


/* ==========================================
   DARK MODE — ICON & ADDITIONAL TEXT FIXES
   ========================================== */

[data-theme="dark"] .vm-icon {
  color: #fff;
}

[data-theme="dark"] .vw-icon {
  color: #fff);
}

[data-theme="dark"] .vision-block.mission .vm-icon {
  color: #fff;
}


/* ==========================================
   COMPREHENSIVE RESPONSIVE FIXES
   ========================================== */

/* --- Header responsive --- */
/* Desktop nav (header-nav / header-phone) switches to the hamburger menu
   at 1151px instead of Bootstrap's 992px breakpoint class — with 7 nav
   items, dropdown chevrons, and the phone number, the full nav row
   doesn't actually fit until ~1150px, so anything below that overlapped.
   1151 isn't a Bootstrap breakpoint, so visibility is driven here rather
   than with Bootstrap's display utility classes. */
@media (min-width: 1151px) {
  .header-nav { display: flex !important; }
  .header-phone { display: flex !important; }
  #hamburger { display: none !important; }
}

@media (max-width: 1150px) {
  .header-nav { display: none !important; }
  .header-phone { display: none !important; }
  #hamburger { display: flex !important; }
}

@media (max-width: 1399px) {
  .header-inner {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
}

@media (max-width: 575px) {
  .header-inner {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
}

/* --- Sticky theme toggle hide on very small if overlapping --- */
@media (max-width: 360px) {
  .theme-toggle-sticky {
    right: 0px;
    width: 34px;
    height: 34px;
    font-size: 0.78rem;
  }

}

/* --- Hero section responsive --- */
@media (max-width: 991px) {
  .slider-btn { width: 40px; height: 40px; }
}

@media (max-width: 575px) {
  .slider-btn { display: none; }
  .slider-dots { bottom: 16px; }
}

/* --- Section Qt responsive --- */
@media (max-width: 991px) {
  .section-qt {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/* --- Businesses section responsive --- */
@media (max-width: 991px) {
  .section-businesses {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

@media (max-width: 575px) {
  .section-businesses {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .biz-header {
    padding-left: 16px;
    padding-right: 16px;
  }
  .biz-card { height: 260px; }
}

/* --- Legacy & leadership responsive --- */
@media (max-width: 991px) {
  .ll-header { padding: 0 24px 28px; }
  .ll-cards-row { height: auto; }
  .ll-card { height: 280px; }
}

@media (max-width: 575px) {
  .ll-header { padding: 0 16px 20px; }
  .ll-card { height: 240px; }
  .ll-card-content { padding: 16px; }
}

/* --- Community section responsive --- */
@media (max-width: 575px) {
  .comm-header { padding-left: 16px !important; padding-right: 16px !important; }
  .comm-banner-content h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
}

/* --- Vision section responsive --- */
@media (max-width: 575px) {
  .vision-block { padding: 24px 20px; }
  .vm-title { font-size: 1.2rem; }
}

/* --- Gallery extra responsive --- */
@media (max-width: 480px) {
  .gallery-tab-btn { font-size: 0.8rem; padding: 10px 14px; }
  .section-gallery { padding: 60px 0; }
}

/* --- Testimonials responsive extra --- */
@media (max-width: 480px) {
  .tslider-text { font-size: 0.95rem; line-height: 1.7; }
  .tslider-name { font-size: 0.95rem; }

}

/* --- Footer responsive --- */
@media (max-width: 575px) {
  .footer-logo { height: 36px; }
  .footer-desc { font-size: 0.84rem; }
  .site-footer { padding-top: 48px; }

}

/* ==========================================
   CULTURE LEGACY & LEADERSHIP — FADE UP ANIMATION
   ========================================== */
@keyframes fadeUpIn {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.ll-header,
.ll-cards-row {
  opacity: 0;
  transform: translateY(60px);
}

.ll-header.ll-animate,
.ll-cards-row.ll-animate {
  animation: fadeUpIn 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.ll-cards-row.ll-animate {
  animation-delay: 0.08s;
}

/* ==========================================
   QT-CARD FLIP-LEFT SCROLL ANIMATION
   ========================================== */
@keyframes flipLeft {
  0% {
    opacity: 0;
    transform: perspective(1000px) rotateY(-90deg);
  }
  100% {
    opacity: 1;
    transform: perspective(1000px) rotateY(0deg);
  }
}

.qt-card {
  opacity: 0;
  transform: perspective(1000px) rotateY(-90deg);
  transform-origin: center center;
  transition: none;
}

.qt-card.qt-card--visible {
  animation: flipLeft 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* --- Tablet (768-1023) specific tweaks --- */
@media (min-width: 768px) and (max-width: 1023px) {
  .section-qt {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .section-businesses {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .ll-header { padding: 0 32px 28px; }
  .biz-grid { grid-template-columns: repeat(2, 1fr); }
}





/* ==========================================================================
   LEADERSHIP TEAM PAGE — CSS ADDITIONS
   Append this block to the bottom of style.css
   All styles use existing CSS variables for full dark mode compatibility.
   ========================================================================== */


/* ── HERO: reuse .about-hero but override background image ── */
.ldr-hero-bg {
  background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1920&q=80');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.ldr-hero-bg.loaded { transform: scale(1); }


/* ── SHARED LEADERSHIP PAGE UTILITIES ── */
.ldr-section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 0.85rem;
}

.ldr-section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.ldr-section-heading em {
  font-style: italic;
  color: var(--brand-primary);
}

/* Scroll-reveal base state */
.ldr-ab-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.ldr-ab-reveal.ldr-visible {
  opacity: 1;
  transform: translateY(0);
}
.ldr-delay-1 { transition-delay: 0.12s; }
.ldr-delay-2 { transition-delay: 0.24s; }
.ldr-delay-3 { transition-delay: 0.36s; }

/* Alternate background sections */
.ldr-alt-bg { background: var(--bg-alt); }


/* ── FOUNDERS SECTION ── */
.ldr-founders-section {
  padding: 6rem 0;
  background: var(--bg);
}

.ldr-founders-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: flex-start;
}

.ldr-founders-img-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: sticky;
  top: 120px;
}

.ldr-founders-img-frame {
  position: relative;
  width: 100%;
  border-radius: 2px;
  overflow: visible;
}

.ldr-founders-img-frame::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 2px solid var(--brand-primary);
  border-radius: 2px;
  opacity: 0.25;
  z-index: 0;
}

.ldr-founders-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 2px;
  position: relative;
  z-index: 1;
  filter: grayscale(20%);
  transition: filter 0.4s ease;
}
.ldr-founders-img:hover { filter: grayscale(0%); }

.ldr-founders-img-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 52px;
  height: 52px;
  background: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(33,45,99,0.35);
}

.ldr-founders-caption {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.ldr-founders-text {
  padding-top: 0.5rem;
}

.ldr-founders-tribute {
  margin-bottom: 2rem;
}

.ldr-founders-tribute-names {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.ldr-founders-tribute-message {
  font-family: var(--font-body);
  font-size: 1.025rem;
  color: var(--text-secondary);
  line-height: 1.88;
  margin-bottom: 1rem;
}

.ldr-founders-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.ldr-founders-divider::before,
.ldr-founders-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.ldr-divider-icon {
  color: var(--brand-primary);
  font-size: 1.1rem;
  opacity: 0.6;
}


/* ── LEADERSHIP PROFILES ── */
.ldr-profiles-section {
  padding: 6rem 0;
  background: var(--bg-alt);
}

.ldr-profiles-header {
  margin-bottom: 4rem;
}

.ldr-profiles-subtext {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

.ldr-profiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 960px;
  margin: 0 auto;
}

.ldr-profile-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.ldr-profile-card:hover {
  box-shadow: 0 16px 48px rgba(33,45,99,0.1);
  transform: translateY(-4px);
}

.ldr-profile-img-wrap {
  position: relative;
}

.ldr-profile-img-frame {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.ldr-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.6s ease;
}
.ldr-profile-card:hover .ldr-profile-img { transform: scale(1.04); }

.ldr-profile-gen-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--brand-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}
.ldr-gen-3 {
  background: var(--brand-primary-light);
}

.ldr-profile-info {
  padding: 2rem 1.75rem 2.25rem;
}

.ldr-profile-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.ldr-profile-designation {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 0.15rem;
}

.ldr-profile-company {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.ldr-profile-divider {
  height: 2px;
  width: 40px;
  background: var(--brand-primary);
  margin: 1.25rem 0;
  opacity: 0.4;
}

.ldr-profile-bio {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.82;
  margin-bottom: 0;
}
.ldr-profile-bio em {
  font-style: italic;
  color: var(--text-primary);
}


/* ── NARRATIVE / EDITORIAL SECTIONS ── */
.ldr-narrative-section {
  padding: 0;
  overflow: hidden;
}

.ldr-editorial-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.ldr-editorial-reverse {
  direction: rtl;
}
.ldr-editorial-reverse > * {
  direction: ltr;
}

.ldr-editorial-img {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.ldr-editorial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.ldr-editorial-img:hover img { transform: scale(1.04); }

.ldr-editorial-text {
  padding: 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}

.ldr-alt-bg .ldr-editorial-text {
  background: var(--bg-alt);
}

.ldr-narrative-text {
  font-family: var(--font-body);
  font-size: 1.025rem;
  color: var(--text-secondary);
  line-height: 1.88;
  margin-bottom: 1.1rem;
}
.ldr-narrative-text:last-child { margin-bottom: 0; }


/* ── QUOTE SECTION ── */
.ldr-quote-section {
  position: relative;
  padding: 8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.ldr-quote-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/bg_section1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.ldr-quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,30,0.88) 0%, rgba(33,45,99,0.82) 100%);
}

.ldr-quote-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.ldr-quote-icon {
  font-size: 3rem;
  color: rgba(255,255,255,0.2);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.ldr-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 2rem;
  border: none;
  padding: 0;
}

.ldr-quote-attribution {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.ldr-quote-author {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.ldr-quote-role {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
}


/* ── PHILOSOPHY SECTION ── */
.ldr-philosophy-section {
  padding: 6rem 0;
  background: var(--bg);
}

.ldr-philosophy-intro {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

.ldr-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.ldr-philosophy-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ldr-philosophy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--brand-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ldr-philosophy-card:hover {
  box-shadow: 0 12px 40px rgba(33,45,99,0.1);
  transform: translateY(-3px);
}
.ldr-philosophy-card:hover::before { opacity: 1; }

.ldr-philosophy-icon {
  font-size: 1.75rem;
  color: var(--brand-primary);
  margin-bottom: 1.25rem;
  opacity: 0.85;
}

.ldr-philosophy-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
}

.ldr-philosophy-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0;
}


/* ── CTA SECTION ── */
.ldr-cta-section {
  position: relative;
  padding: 7rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.ldr-cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1596755094514-f87e34085b2c?w=1920&q=80');
  background-size: cover;
  background-position: center;
}

.ldr-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,14,30,0.8) 0%, rgba(10,14,30,0.92) 100%);
}

.ldr-cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.ldr-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.ldr-cta-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

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


/* ── DARK MODE OVERRIDES ── */

[data-theme="dark"] .ldr-founders-img {
  filter: grayscale(30%) brightness(0.9);
}
[data-theme="dark"] .ldr-founders-img:hover {
  filter: grayscale(0%) brightness(1);
}

[data-theme="dark"] .ldr-profile-card {
  background: var(--bg-alt);
  border-color: var(--border);
}
[data-theme="dark"] .ldr-profile-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}

[data-theme="dark"] .ldr-founders-img-badge {
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

[data-theme="dark"] .ldr-philosophy-card {
  background: var(--bg-subtle);
}
[data-theme="dark"] .ldr-philosophy-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

[data-theme="dark"] .ldr-editorial-text {
  background: var(--bg);
}
[data-theme="dark"] .ldr-alt-bg .ldr-editorial-text {
  background: var(--bg-alt);
}

[data-theme="dark"] .ldr-quote-section .ldr-quote-text {
  color: rgba(255,255,255,0.95);
}

[data-theme="dark"] .ldr-section-label {
  color: #6d88e0;
}

[data-theme="dark"] .ldr-section-heading em {
  color: #ffffff;
}

[data-theme="dark"] .ldr-profile-designation {
  color: #6d88e0;
}

[data-theme="dark"] .ldr-philosophy-icon {
  color: #6d88e0;
}

[data-theme="dark"] .ldr-philosophy-card::before {
  background: #6d88e0;
}

[data-theme="dark"] .ldr-founders-tribute-names {
  color: #6d88e0;
}


/* ── RESPONSIVE ── */

/* Tablet */
@media (max-width: 1024px) {
  .ldr-founders-inner {
    grid-template-columns: 300px 1fr;
    gap: 3.5rem;
  }
  .ldr-philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ldr-editorial-text {
    padding: 4rem 3rem;
  }
}

/* Mobile landscape / tablet portrait */
@media (max-width: 768px) {
  .ldr-founders-section { padding: 4rem 0; 
  .ldr-quote-section { padding: 3rem 1.25rem; }
  .ldr-cta-section { padding: 3rem 1.25rem; }
}
  .ldr-profiles-section { padding: 4rem 0; }
  .ldr-philosophy-section { padding: 4rem 0; }

  .ldr-founders-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ldr-founders-img-wrap {
    position: static;
    max-width: 320px;
    margin: 0 auto;
  }

  .ldr-profiles-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .ldr-editorial-block {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ldr-editorial-reverse {
    direction: ltr;
  }
  .ldr-editorial-img {
    min-height: 280px;
  }
  .ldr-editorial-text {
    padding: 3rem 1.75rem;
  }

  .ldr-philosophy-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ldr-quote-section {
    padding: 5rem 1.5rem;
  }
  .ldr-quote-bg {
    background-attachment: scroll;
  }

  .ldr-cta-section {
    padding: 5rem 1.5rem;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .ldr-founders-inner {
    gap: 2rem;
  }
  .ldr-profile-info {
    padding: 1.5rem 1.25rem 1.75rem;
  }
  .ldr-profile-name {
    font-size: 1.4rem;
  }
  .ldr-cta-btns {
    flex-direction: column;
    align-items: center;
  }
}


 /* ── ABOUT HERO ── */
    .about-hero {
    position: relative;
    height: 70vh;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 0 84px;
    }
    @media (max-width: 991px) { .about-hero { padding: 0 40px; min-height: 420px; } }
    @media (max-width: 575px) { .about-hero { padding: 0 20px; height: 60vh; min-height: 360px; } }
    .about-hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?w=1920&q=80');
      background-size: cover;
      background-position: center 30%;
      transform: scale(1.05);
      transition: transform 6s ease;
    }
    .about-hero-bg.loaded { transform: scale(1); }
    .about-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(10,14,30,0.55) 0%, rgba(10,14,30,0.72) 100%);
    }
    .about-hero-content {
      position: relative;
      z-index: 2;
      text-align: left;
      padding: 0 1.5rem;
    }
    .about-hero-label {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
      margin-bottom: 1.25rem;
    }
    .about-hero-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 7vw, 3.5rem);
      font-weight: 600;
      color: #fff;
      line-height: 1;
      letter-spacing: 0.04em;
      margin-bottom: 1.25rem;
    }
    .about-hero-subtitle {
      font-family: var(--font-display);
      font-size: clamp(1.1rem, 2.5vw, 1.65rem);
      font-weight: 300;
      font-style: italic;
      color: rgba(255,255,255,0.82);
      letter-spacing: 0.02em;
    }
    @media (max-width: 575px) {
      .about-hero-title { font-size: clamp(1.8rem, 8vw, 2.8rem); }
      .about-hero-subtitle { font-size: clamp(1rem, 4vw, 1.2rem); }
      .about-hero-label { font-size: 0.65rem; }
    }
    .about-hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255,255,255,0.55);
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }
    .about-hero-scroll-line {
      width: 1px;
      height: 48px;
      background: rgba(255,255,255,0.35);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%,100% { opacity: 0.3; transform: scaleY(1); }
      50% { opacity: 1; transform: scaleY(0.6); }
    }


/* ==========================================
   MILESTONES PAGE — style additions
   All new rules namespaced with .ms-
   ========================================== */

/* ── Hero override for Milestones page ── */
.ms-hero-bg {
  background-image: url('images/milestone_cover_hero_bg.jpg');
  background-position: center 40%;
}

/* ── Intro Section ── */
.ms-intro-section {
  padding: 6rem 0 2rem;
  background: var(--bg);
}

.ms-intro-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.ms-section-label {
  display: inline-block;
  margin-bottom: 1.25rem;
    color: #e6242e;
}
.ab-label {color: #e6242e;}

.ms-intro-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.ms-intro-heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--brand-primary);
}

[data-theme="dark"] .ms-intro-heading em {
  color: #ffffff;
}

.ms-intro-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
}

/* ── Timeline Section Wrapper ── */
.ms-timeline-section {
  position: relative;
  padding: 5rem 0 6rem;
  background: var(--bg-alt);
  overflow: hidden;
}

/* ── Vertical Center Line ── */
.ms-timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--brand-primary) 8%,
    var(--brand-primary) 92%,
    transparent 100%
  );
  opacity: 0.25;
  transition: height 2s ease;
  z-index: 0;
}

.ms-timeline-line.ms-line--active {
  height: 100%;
}

/* ── Timeline Item Base ── */
.ms-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 5rem;
  z-index: 1;
}

.ms-item:last-child {
  margin-bottom: 0;
}

/* Left items: content on left, dot on right side of centre */
.ms-item--left {
  flex-direction: row;
  justify-content: flex-start;
}

.ms-item--left .ms-item-content {
  width: calc(50% - 3.5rem);
  margin-right: auto;
  padding-right: 0;
}

/* Right items: content on right, dot on left side of centre */
.ms-item--right {
  flex-direction: row-reverse;
  justify-content: flex-start;
}

.ms-item--right .ms-item-content {
  width: calc(50% - 3.5rem);
  margin-left: auto;
  padding-left: 0;
}

/* Centre dot */
.ms-connector-dot {
  position: absolute;
  left: 50%;
  top: 2.25rem;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand-primary);
  border: 3px solid var(--bg-alt);
  box-shadow: 0 0 0 3px rgba(33, 45, 99, 0.2);
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ms-item:hover .ms-connector-dot {
  transform: translateX(-50%) scale(1.35);
  box-shadow: 0 0 0 6px rgba(33, 45, 99, 0.15);
}

.ms-dot--gold {
  background: #b8960c;
  box-shadow: 0 0 0 3px rgba(184, 150, 12, 0.25);
}

.ms-item:hover .ms-dot--gold {
  box-shadow: 0 0 0 6px rgba(184, 150, 12, 0.18);
}

/* ── Item Content ── */
.ms-item-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ── Icon Wrap ── */
.ms-item-icon-wrap {
  display: flex;
}

.ms-item--left .ms-item-icon-wrap {
  justify-content: flex-end;
  padding-right: 1.75rem;
}

.ms-item--right .ms-item-icon-wrap {
  justify-content: flex-start;
  padding-left: 1.75rem;
}

.ms-item-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 18px rgba(33, 45, 99, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.ms-item:hover .ms-item-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(33, 45, 99, 0.35);
}

.ms-icon--gold {
  background: linear-gradient(135deg, #d4a01a 0%, #b8960c 100%);
  box-shadow: 0 4px 18px rgba(184, 150, 12, 0.35);
}

/* ── Card ── */
.ms-item-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.ms-item-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--shadow-deep);
}

.ms-item--left .ms-item-card {
  margin-right: 1.75rem;
}

.ms-item--right .ms-item-card {
  margin-left: 1.75rem;
}

/* ── Card Image ── */
.ms-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.ms-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ms-item-card:hover .ms-card-img {
  transform: scale(1.06);
}

.ms-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(10, 14, 30, 0.55) 100%
  );
}

/* ── Card Body ── */
.ms-card-body {
  padding: 1.75rem 1.75rem 1.5rem;
}

.ms-year {
  display: inline-block;
  font-family: arial;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

[data-theme="dark"] .ms-year {
  color: #8899cc;
}

.ms-year--gold {
  color: #b8960c !important;
  background: linear-gradient(135deg, #d4a01a, #8b6914);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .ms-year--gold {
  background: linear-gradient(135deg, #f0c040, #c8960c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ms-card-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.ms-card-desc {
  font-family: var(--font-body);
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

/* ── Card Tag ── */
.ms-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: rgba(33, 45, 99, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}

[data-theme="dark"] .ms-card-tag {
  color: #a8b4cc;
  background: rgba(168, 180, 204, 0.1);
}

/* ── Featured card ── */
.ms-card--featured {
  border: 1.5px solid rgba(184, 150, 12, 0.45);
  box-shadow: 0 4px 28px rgba(184, 150, 12, 0.15);
}

.ms-card--featured:hover {
  box-shadow: 0 16px 52px rgba(184, 150, 12, 0.22);
}

.ms-featured-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 3;
  background: linear-gradient(135deg, #d4a01a, #b8960c);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ── Stats Strip ── */
.ms-stats-section {
  padding: 5rem 0;
  background: var(--brand-primary);
}

.ms-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.ms-stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.ms-stat-item:last-child {
  border-right: none;
}

.ms-stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: inline-block;
}

.ms-stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1;
  display: inline-block;
}

.ms-stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 0.75rem;
}

/* ── CTA Banner ── */
.ms-cta-section {
  position: relative;
}

.ms-cta-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 7rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ms-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,14,30,0.7), rgba(10,14,30,0.82));
}

.ms-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
}

.ms-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.ms-cta-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.ms-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
  padding: 0.9rem 2.25rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.ms-cta-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
  color: #fff;
}

/* ── Reveal animation (reuses .reveal + .visible from script.js) ── */
/* ── Timeline items: always visible ── */
.ms-item .ms-item-content {
  opacity: 1;
  transform: none;
}

.ms-item--left .ms-item-content {
  transform: none;
}

.ms-item--right .ms-item-content {
  transform: none;
}

/* ── Dark mode adjustments ── */
[data-theme="dark"] .ms-timeline-section {
  background: var(--bg-alt);
}

[data-theme="dark"] .ms-intro-section {
  background: var(--bg);
}

[data-theme="dark"] .ms-connector-dot {
  border-color: var(--bg-alt);
}

[data-theme="dark"] .ms-item-card {
  background: var(--card-bg);
  border-color: var(--border);
}

[data-theme="dark"] .ms-stats-section {
  background: var(--brand-primary-dark, #16204a);
}

/* ==========================================
   MILESTONES — RESPONSIVE
   ========================================== */

/* Tablet: narrower cards */
@media (max-width: 1100px) {
  .ms-item--left .ms-item-content,
  .ms-item--right .ms-item-content {
    width: calc(50% - 2.5rem);
  }
}

/* Mobile: stack to single column */
@media (max-width: 767px) {
  .ms-timeline-line {
    left: 1.6rem;
  }

  .ms-intro-section { padding: 3rem 0 2rem; }
  .ms-stats-section { padding: 3rem 0; }
  .ms-cta-section { padding: 3rem 0; }

  .ms-connector-dot {
    left: 1.6rem;
    top: 1.5rem;
  }

  .ms-item--left,
  .ms-item--right {
    flex-direction: column;
    padding-left: 3.75rem;
  }

  .ms-item--left .ms-item-content,
  .ms-item--right .ms-item-content {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .ms-item--left .ms-item-icon-wrap,
  .ms-item--right .ms-item-icon-wrap {
    justify-content: flex-start;
    padding: 0;
    margin-bottom: 0.75rem;
  }

  .ms-item--left .ms-item-card,
  .ms-item--right .ms-item-card {
    margin: 0;
  }

  /* Mobile: items always visible */
  .ms-item--left .ms-item-content,
  .ms-item--right .ms-item-content {
    opacity: 1 !important;
    transform: none !important;
  }

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

  .ms-stat-item:nth-child(2) {
    border-right: none;
  }

  .ms-stat-item {
    border-right: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .ms-stat-item:nth-child(3),
  .ms-stat-item:nth-child(4) {
    border-bottom: none;
  }

  .ms-intro-section {
    padding: 4rem 0 2rem;
  }

  .ms-card-img-wrap {
    height: 180px;
  }

  .ms-cta-bg {
    background-attachment: scroll;
    padding: 5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .ms-timeline-section {
    padding: 3.5rem 0 4rem;
  }

  .ms-item {
    margin-bottom: 3.5rem;
  }

  .ms-card-body {
    padding: 1.25rem;
  }

  .ms-year {
    font-size: 2rem;
  }

  .ms-card-title {
    font-size: 1.2rem;
  }

  .ms-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}


/* ==========================================
   INFRASTRUCTURE PAGE — style additions
   All rules namespaced with .infra-
   ========================================== */

/* ── Hero override ── */
.infra-hero-bg {
  background-image: url('images/infra_hero_bg.jpg');
  background-position: center 35%;
}

/* ==========================================
   INTRO SECTION
   ========================================== */
.infra-intro-section {
  padding: 6rem 0;
  background: var(--bg);
}

.infra-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.infra-intro-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.infra-intro-heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--brand-primary);
}

[data-theme="dark"] .infra-intro-heading em {
  color: #ffffff;
}

.infra-intro-para {
  font-family: var(--font-body);
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.infra-intro-badges {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 2rem;
}

.infra-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.infra-badge i {
  color: var(--brand-primary);
  font-size: 1.05rem;
  flex-shrink: 0;
}

[data-theme="dark"] .infra-badge i {
  color: #8899cc;
}

/* Intro image */
.infra-intro-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.infra-intro-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 60px var(--shadow-deep);
}

.infra-intro-img-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--brand-primary);
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(33,45,99,0.35);
}

.infra-img-badge-num {
  display: block;
  font-family: arial;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.infra-img-badge-num sup {
  font-size: 1.2rem;
}

.infra-img-badge-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 0.35rem;
}

/* ==========================================
   PROCESS / ZIGZAG FLOW SECTION
   ========================================== */
.infra-process-section {
  padding: 6rem 0 4rem;
  background: var(--bg-alt);
  position: relative;
}

.infra-process-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 5rem;
}

.infra-process-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.infra-process-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--brand-primary);
}

[data-theme="dark"] .infra-process-title em {
  color: #ffffff;
}

.infra-process-sub {
  font-family: var(--font-body);
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ── Flow wrapper ── */
.infra-flow {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Vertical center spine */
.infra-flow::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(33,45,99,0.2) 5%,
    rgba(33,45,99,0.2) 95%,
    transparent 100%
  );
  z-index: 0;
}

/* ── Each step row ── */
.infra-flow-step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  position: relative;
  padding: 3rem 0;
}

/* left-step: img | connector | card */
.infra-step--left .infra-step-img-col  { order: 1; display: flex; justify-content: flex-end; padding-right: 2.5rem; }
.infra-step--left .infra-step-connector { order: 2; }
.infra-step--left .infra-step-content-col { order: 3; padding-left: 2.5rem; }

/* right-step: card | connector | img */
.infra-step--right .infra-step-content-col { order: 1; display: flex; justify-content: flex-end; padding-right: 2.5rem; }
.infra-step--right .infra-step-connector  { order: 2; }
.infra-step--right .infra-step-img-col    { order: 3; padding-left: 2.5rem; }

/* ── Circle image ── */
.infra-step-img-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--bg);
  box-shadow: 0 8px 32px var(--shadow-deep);
  flex-shrink: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.infra-flow-step:hover .infra-step-img-circle {
  transform: scale(1.04);
  box-shadow: 0 14px 44px var(--shadow-deep);
}

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

/* ── Connector (number + dot on spine) ── */
.infra-step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 80px;
  flex-shrink: 0;
}

.infra-step-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #fff;
  background: var(--brand-primary);
  border-radius: 100px;
  padding: 0.3rem 0.65rem;
  margin-bottom: 0.6rem;
}

.infra-step-line {
  width: 2px;
  flex: 1;
  min-height: 30px;
  background: rgba(33,45,99,0.15);
}

.infra-step-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-primary);
  border: 4px solid var(--bg-alt);
  box-shadow: 0 0 0 3px rgba(33,45,99,0.18);
  flex-shrink: 0;
  margin-top: 0.6rem;
  transition: transform 0.3s ease;
}

.infra-flow-step:hover .infra-step-dot {
  transform: scale(1.3);
}

.infra-step-dot--last {
  background: #b8960c;
  box-shadow: 0 0 0 3px rgba(184,150,12,0.25);
}

.infra-step-line--end {
  background: linear-gradient(to bottom, rgba(33,45,99,0.15), transparent);
}

/* ── Step card ── */
.infra-step-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 2rem 1.75rem;
  box-shadow: 0 4px 20px var(--shadow);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  max-width: 420px;
}

.infra-step--right .infra-step-card {
  margin-left: auto;
}

.infra-flow-step:hover .infra-step-card {
  box-shadow: 0 12px 40px var(--shadow-deep);
  transform: translateY(-4px);
}

.infra-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(33,45,99,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

[data-theme="dark"] .infra-step-icon {
  background: rgba(168,180,204,0.1);
  color: #a8b4cc;
}

.infra-step-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.infra-step-subtitle {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 300;
  color: var(--brand-primary);
  margin-bottom: 0.85rem;
}

[data-theme="dark"] .infra-step-subtitle {
  color: #8899cc;
}

.infra-step-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.infra-step-list {
  list-style: none;
  padding: 0;
  margin: 0.85rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}

.infra-step-list li {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.infra-step-list li i {
  color: var(--brand-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ==========================================
   WHY SECTION
   ========================================== */
.infra-why-section {
  position: relative;
}

.infra-why-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 6rem 0;
}

.infra-why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,30,0.88) 0%, rgba(33,45,99,0.82) 100%);
}

.infra-why-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.infra-why-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-top: 0.75rem;
}

.infra-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.infra-why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, transform 0.3s ease;
}

.infra-why-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.infra-why-icon {
  font-size: 2.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
}

.infra-why-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.infra-why-card-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.infra-why-quote {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 2.5rem;
}

.infra-why-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================
   DESIGN SECTION
   ========================================== */
.infra-design-section {
  padding: 6rem 0;
  background: var(--bg);
}

.infra-design-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.infra-design-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.infra-design-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--brand-primary);
}

[data-theme="dark"] .infra-design-title em { color: #ffffff; }

.infra-design-sub {
  font-family: var(--font-body);
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.infra-design-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.infra-design-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.infra-design-card:hover {
  box-shadow: 0 12px 40px var(--shadow-deep);
  transform: translateY(-4px);
}

.infra-design-card-num {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(33,45,99,0.06);
  line-height: 1;
  pointer-events: none;
}

[data-theme="dark"] .infra-design-card-num {
  color: rgba(168,180,204,0.06);
}

.infra-design-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(33,45,99,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--brand-primary);
  margin-bottom: 1.1rem;
}

[data-theme="dark"] .infra-design-card-icon {
  background: rgba(168,180,204,0.1);
  color: #a8b4cc;
}

.infra-design-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.65rem;
}

.infra-design-card-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
}

/* Precision banner */
.infra-design-precision {
  background: var(--brand-primary);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  color: #fff;
}

.infra-precision-icon {
  font-size: 2.2rem;
  opacity: 0.85;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.infra-precision-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.6rem;
}

.infra-precision-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

/* ==========================================
   FACILITY GALLERY
   ========================================== */
.infra-gallery-section {
  padding: 6rem 0;
  background: var(--bg-alt);
}

.infra-gallery-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.infra-gallery-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin-top: 0.75rem;
}

.infra-gallery-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--brand-primary);
}

[data-theme="dark"] .infra-gallery-title em { color: #ffffff; }

.infra-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}

.infra-gallery-item--wide {
  grid-column: span 2;
}

.infra-gallery-item--tall {
  grid-row: span 2;
}

.infra-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
}

.infra-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.infra-gallery-item:hover img {
  transform: scale(1.07);
}

.infra-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem 1rem;
  background: linear-gradient(to top, rgba(10,14,30,0.75) 0%, transparent 100%);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.infra-gallery-item:hover .infra-gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ── Lightbox ── */
.infra-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: pointer;
}

.infra-lightbox-inner {
  position: relative;
  max-width: 1000px;
  width: 100%;
}

.infra-lightbox-inner img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}

.infra-lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.infra-lightbox-close:hover {
  opacity: 1;
}

/* ==========================================
   INFRASTRUCTURE — RESPONSIVE
   ========================================== */

@media (max-width: 1100px) {
  .infra-intro-grid {
    gap: 3rem;
  }

  .infra-step-img-circle {
    width: 240px;
    height: 240px;
  }

  .infra-step-card {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .infra-why-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .infra-design-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  /* Intro */
  .infra-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .infra-intro-visual {
    order: -1;
  }

  .infra-intro-img {
    height: 300px;
  }

  .infra-intro-img-badge {
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Process flow — stack vertically on mobile */
  .infra-flow::before {
    left: 1.5rem;
  }

  .infra-flow-step {
    grid-template-columns: 1fr;
    padding: 2rem 0 2rem 4rem;
    gap: 1.5rem;
  }

  .infra-step--left .infra-step-img-col,
  .infra-step--right .infra-step-img-col { order: 1; justify-content: flex-start; padding: 0; }

  .infra-step--left .infra-step-connector,
  .infra-step--right .infra-step-connector {
    order: 0;
    position: absolute;
    left: 0;
    top: 2rem;
    width: 48px;
    flex-direction: column;
    align-items: center;
  }

  .infra-step--left .infra-step-content-col,
  .infra-step--right .infra-step-content-col { order: 2; justify-content: flex-start; padding: 0; }

  .infra-step-img-circle {
    width: 180px;
    height: 180px;
  }

  .infra-step-card {
    max-width: 100%;
  }

  /* Why */
  .infra-why-bg {
    background-attachment: scroll;
    padding: 4rem 0;
  }

  /* Design precision */
  .infra-design-precision {
    flex-direction: column;
    gap: 1rem;
    padding: 1.75rem;
  }

  /* Gallery */
  .infra-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .infra-gallery-item--wide {
    grid-column: span 2;
  }

  .infra-gallery-item--tall {
    grid-row: span 1;
  }

  .infra-gallery-caption {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .infra-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .infra-gallery-item--wide,
  .infra-gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .infra-step-line { min-height: 20px; }

  .infra-process-section { padding: 4rem 0 2rem; }
}


/* ==========================================
   PRODUCT PAGES — shared design system
   All rules namespaced with .prod-
   ========================================== */

/* ── Hero overrides per page ── */
.prod-hero-bg--men        { background-image: url('images/mens_cover_hero_bg.jpg'); background-position: center 30%; }
.prod-hero-bg--women      { background-image: url('images/product_setsaree.jpg'); background-position: center 25%; }
.prod-hero-bg--kids       { background-image: url('images/product_pattupavada.jpg'); background-position: center 20%; }
.prod-hero-bg--accessories{ background-image: url('images/acc3.jpg'); background-position: center 35%; }

.prod-hero--men    .about-hero-title em,
.prod-hero--kids   .about-hero-title em { font-style: italic; font-weight: 300; }
.prod-hero--women  .about-hero-title em,
.prod-hero--accessories .about-hero-title em { font-style: italic; font-weight: 300; }

/* ── Sticky Tab Nav ── */
.prod-tab-nav {
  position: sticky;
  top: 65px;
  z-index: 100;
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px var(--shadow);
}

.prod-tab-list {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.prod-tab-list::-webkit-scrollbar { display: none; }

.prod-tab-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 1.15rem 1.5rem;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.prod-tab-link:hover {
  color: var(--brand-primary);
  border-bottom-color: var(--brand-primary);
}
.prod-tab-link.active {
  color: #e8242e;
  border-bottom-color: #e8242e;
}

[data-theme="dark"] .prod-tab-link:hover {
  color: #a8b4cc;
  border-bottom-color: #a8b4cc;
}
[data-theme="dark"] .prod-tab-link.active {
  color: #e8242e;
  border-bottom-color: #e8242e;
}

/* ── Section wrapper ── */
.prod-section {
  padding: 6rem 0;
  background: var(--bg);
  padding-top:0px;
}

.prod-section--alt {
  background: var(--bg-alt);
}

/* ── Section header ── */
.prod-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.prod-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.prod-section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--brand-primary);
}

[data-theme="dark"] .prod-section-title em { color: #ffffff; }

.prod-section-title--left {
  text-align: left;
}

.prod-section-sub {
  font-family: var(--font-body);
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ==========================================
   PRODUCT CARDS GRID
   ========================================== */
.prod-cards-grid {
  display: grid;
  gap: 2rem;
}

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

.prod-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--shadow-deep);
}

.prod-card--featured {
  border-color: rgba(184,150,12,0.35);
  box-shadow: 0 4px 24px rgba(184,150,12,0.12);
}

.prod-card--featured:hover {
  box-shadow: 0 16px 52px rgba(184,150,12,0.2);
}

/* Horizontal card layout */
.prod-card--horizontal {
  flex-direction: row;
  border-radius: 18px;
}

.prod-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
  flex-shrink: 0;
}

.prod-card-img-wrap--half {
  width: 220px;
  height: 100%;
  border-radius: 0;
}

.prod-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.prod-card:hover .prod-card-img {
  transform: scale(1.06);
}

.prod-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--brand-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

.prod-badge--gold { background: linear-gradient(135deg, #d4a01a, #b8960c); }
.prod-badge--green { background: #2d7a4f; }

.prod-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.prod-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(33,45,99,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--brand-primary);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

[data-theme="dark"] .prod-card-icon {
  background: rgba(168,180,204,0.08);
  color: #a8b4cc;
}

.prod-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.prod-card-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.78;
  color: var(--text-secondary);
  flex: 1;
  margin-bottom: 1.25rem;
}

.prod-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}

.prod-card-tags span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: rgba(33,45,99,0.07);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}

[data-theme="dark"] .prod-card-tags span {
  color: #a8b4cc;
  background: rgba(168,180,204,0.08);
}

/* ==========================================
   SPLIT LAYOUT
   ========================================== */
.prod-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.prod-split--img-right .prod-split-visual { order: 2; }
.prod-split--img-right .prod-split-content { order: 1; }
.prod-split--img-left .prod-split-visual  { order: 1; }
.prod-split--img-left .prod-split-content { order: 2; }

.prod-split-img-stack {
  position: relative;
}

.prod-split-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  box-shadow: 0 16px 52px var(--shadow-deep);
}

.prod-split-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  border: 5px solid var(--bg);
  box-shadow: 0 8px 24px var(--shadow-deep);
}

.prod-split-desc {
  font-family: var(--font-body);
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 1.1rem;
}

.prod-attr-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.prod-attr {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.prod-attr i {
  color: var(--brand-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

[data-theme="dark"] .prod-attr i { color: #8899cc; }

/* ── Feature list (shirts section) ── */
.prod-feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1rem;
}

.prod-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.prod-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(33,45,99,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--brand-primary);
  flex-shrink: 0;
}

[data-theme="dark"] .prod-feature-icon {
  background: rgba(168,180,204,0.08);
  color: #a8b4cc;
}

.prod-feature-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.prod-feature-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
}

/* ==========================================
   BANNER FULL
   ========================================== */
.prod-banner-full {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.prod-banner-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.prod-banner-img--tall { height: 480px; }

.prod-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,14,30,0.82) 0%, rgba(10,14,30,0.3) 100%);
  display: flex;
  align-items: center;
  padding: 3rem 3.5rem;
}

.prod-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.prod-banner-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.prod-banner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.prod-banner-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.88);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

/* ==========================================
   WHY RAAJARAM SECTION
   ========================================== */
.prod-why-section { position: relative; }

.prod-why-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 6rem 0;
}

.prod-why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,30,0.9) 0%, rgba(33,45,99,0.85) 100%);
}

.prod-why-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.prod-why-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-top: 0.75rem;
}

.prod-why-title em {
  font-style: italic;
  font-weight: 300;
}

.prod-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.prod-why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, transform 0.3s ease;
}

.prod-why-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.prod-why-icon {
  font-size: 2.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
}

.prod-why-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.65rem;
}

.prod-why-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.prod-why-tagline {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 2.5rem;
  margin: 0;
}

/* ==========================================
   BESPOKE SECTION (Womens)
   ========================================== */
.prod-bespoke-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.prod-bespoke-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.prod-bespoke-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: box-shadow 0.3s ease;
}

.prod-bespoke-step:hover {
  box-shadow: 0 6px 24px var(--shadow-deep);
}

.prod-bespoke-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-primary);
  flex-shrink: 0;
  line-height: 1.2;
}

[data-theme="dark"] .prod-bespoke-num { color: #8899cc; }

.prod-bespoke-step h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.prod-bespoke-step p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.prod-bespoke-visual {
  position: relative;
}

.prod-bespoke-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 16px 52px var(--shadow-deep);
}

.prod-bespoke-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--brand-primary);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(33,45,99,0.35);
}

.prod-bespoke-badge i { font-size: 1.2rem; }

/* ==========================================
   ACCESSORIES — BED SHEETS
   ========================================== */
.prod-bedsheet-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.prod-bedsheet-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 16px 52px var(--shadow-deep);
}

.prod-bedsheet-features {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.prod-bedsheet-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.prod-bedsheet-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(33,45,99,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--brand-primary);
  flex-shrink: 0;
}

[data-theme="dark"] .prod-bedsheet-icon {
  background: rgba(168,180,204,0.08);
  color: #a8b4cc;
}

.prod-bedsheet-feature h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.prod-bedsheet-feature p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
}

/* Accessories floating badge */
.prod-acc-badge-floating {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: linear-gradient(135deg, #d4a01a, #b8960c);
  color: #fff;
  padding: 0.85rem 1.35rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(184,150,12,0.3);
}

/* ==========================================
   PRODUCT PAGES — RESPONSIVE
   ========================================== */
@media (max-width: 1100px) {
  .prod-split { gap: 3rem; }
  .prod-bespoke-wrap { gap: 3rem; }
  .prod-bedsheet-showcase { gap: 2.5rem; }
  .prod-split-img-accent { display: none; }
}

@media (max-width: 900px) {
  .prod-cards-grid--3 { grid-template-columns: 1fr 1fr; }
  .prod-why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .prod-section { padding: 4rem 0; }

  .prod-cards-grid--3,
  .prod-cards-grid--2 { grid-template-columns: 1fr; }

  .prod-card--horizontal {
    flex-direction: column;
  }

  .prod-card-img-wrap--half {
    width: 100%;
    height: 220px;
  }

  .prod-split,
  .prod-bespoke-wrap,
  .prod-bedsheet-showcase {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .prod-split--img-right .prod-split-visual,
  .prod-split--img-right .prod-split-content,
  .prod-split--img-left .prod-split-visual,
  .prod-split--img-left .prod-split-content {
    order: unset;
  }

  .prod-split-img-main {
    height: 300px;
  }

  .prod-bespoke-img {
    height: 280px;
  }

  .prod-bespoke-badge,
  .prod-acc-badge-floating {
    bottom: auto;
    right: auto;
    left: 1rem;
    top: 1rem;
    position: absolute;
  }

  .prod-why-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }

  .prod-why-bg { background-attachment: scroll; padding: 4rem 0; }

  .prod-banner-img,
  .prod-banner-img--tall { height: 340px; }

  .prod-banner-overlay { padding: 2rem; }

  .prod-bedsheet-img { height: 260px; }

  .prod-tab-link { padding: 1rem 1.1rem; font-size: 0.73rem; }
}

@media (max-width: 480px) {
  .prod-banner-img,
  .prod-banner-img--tall { height: 260px; }
  .prod-banner-tags { flex-direction: column; align-items: flex-start; }
}


/* ==========================================
   GALLERY PAGES — shared + photo + video
   All rules namespaced with .gal-
   ========================================== */

/* ── Hero overrides ── */
.gal-photo-hero-bg {
  background-image: url('images/photogallery_cover_bg.jpg');
  background-position: center 40%;
}
.gal-video-hero-bg {
  background-image: url('images/videogallery_cover_bg.jpg');
  background-position: center 30%;
}

/* ==========================================
   FILTER BAR (Photo Gallery)
   ========================================== */
.gal-filter-bar {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top:65px;
  z-index: 100;
  box-shadow: 0 2px 12px var(--shadow);
}

.gal-filter-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.85rem 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.gal-filter-list::-webkit-scrollbar { display: none; }

.gal-filter-btn {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.gal-filter-btn:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  background: rgba(33,45,99,0.05);
}

.gal-filter-btn.active {
  color: #e8242e;
}

/* ==========================================
   PHOTO GRID
   ========================================== */
.gal-photo-section {
  padding: 4rem 0 6rem;
  background: var(--bg-alt);
}

.gal-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
}

.gal-item--wide { grid-column: span 2; }
.gal-item--tall { grid-row: span 2; }

/* ── Photo item ── */
.gal-photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  background: var(--bg-subtle);
}

.gal-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}

.gal-photo-item:hover img {
  transform: scale(1.07);
}

/* ── Hover overlay ── */
.gal-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(10,14,30,0.88) 0%,
    rgba(10,14,30,0.4)  50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gal-photo-item:hover .gal-photo-overlay {
  opacity: 1;
}

.gal-photo-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.gal-photo-cat {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.4rem;
}

.gal-photo-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.gal-photo-desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Zoom button ── */
.gal-photo-zoom {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(4px);
}

.gal-photo-zoom:hover {
  background: rgba(255,255,255,0.28);
  transform: scale(1.1);
}

/* ── Empty state ── */
.gal-empty {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 6rem 0;
  color: var(--text-muted);
}

.gal-empty i {
  font-size: 3.5rem;
  opacity: 0.35;
}

.gal-empty p {
  font-family: var(--font-body);
  font-size: 0.95rem;
}

/* ==========================================
   PHOTO LIGHTBOX
   ========================================== */
.gal-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gal-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.gal-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 20, 0.95);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.gal-lb-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: calc(100% - 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.gal-lightbox.active .gal-lb-inner {
  transform: scale(1);
}

.gal-lb-img-wrap {
  width: 100%;
  max-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gal-lb-img-wrap img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  display: block;
}

/* Caption */
.gal-lb-caption {
  text-align: center;
  max-width: 620px;
}

.gal-lb-cap-cat {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.4rem;
}

.gal-lb-cap-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.gal-lb-cap-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}

.gal-lb-counter {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
}

/* Lightbox controls */
.gal-lb-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease;
  z-index: 3;
}

.gal-lb-close:hover { background: rgba(255,255,255,0.22); }

.gal-lb-prev,
.gal-lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  z-index: 3;
}

.gal-lb-prev { left: 1.5rem; }
.gal-lb-next { right: 1.5rem; }

.gal-lb-prev:hover { background: rgba(255,255,255,0.2); transform: translateY(-50%) scale(1.05); }
.gal-lb-next:hover { background: rgba(255,255,255,0.2); transform: translateY(-50%) scale(1.05); }

/* ==========================================
   VIDEO GALLERY — INTRO
   ========================================== */
.gal-vid-intro {
  padding: 5rem 0 3rem;
  background: var(--bg);
}

.gal-vid-intro-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.gal-vid-intro-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.gal-vid-intro-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--brand-primary);
}

[data-theme="dark"] .gal-vid-intro-title em { color: #ffffff; }

.gal-vid-intro-sub {
  font-family: var(--font-body);
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.gal-vid-intro-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.gal-vid-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.gal-vid-stat i {
  font-size: 1rem;
  color: var(--brand-primary);
}

[data-theme="dark"] .gal-vid-stat i { color: #8899cc; }

/* ==========================================
   VIDEO CARD GRID
   ========================================== */
.gal-vid-section {
  padding: 1rem 0 6rem;
  background: var(--bg);
}

.gal-vid-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

/* ── Video card ── */
.gal-vid-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.gal-vid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px var(--shadow-deep);
}

/* ── Thumbnail ── */
.gal-vid-thumb-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;    /* Shorts portrait ratio */
  max-height: 420px;
  cursor: pointer;
  background: #111;
}

.gal-vid-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.35s ease;
}

.gal-vid-card:hover .gal-vid-thumb {
  transform: scale(1.05);
  filter: brightness(0.75);
}

/* Thumbnail overlay */
.gal-vid-thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,14,30,0.25);
  transition: background 0.35s ease;
}

.gal-vid-card:hover .gal-vid-thumb-overlay {
  background: rgba(10,14,30,0.5);
}

/* Play button */
.gal-vid-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  color: var(--brand-primary);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 28px rgba(0,0,0,0.35);
  padding-left: 4px; /* optical centre for play icon */
}

.gal-vid-card:hover .gal-vid-play-btn {
  transform: scale(1.12);
  background: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.45);
}

/* Shorts badge */
.gal-vid-type-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255,0,0,0.85);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* YouTube tag bottom-right */
.gal-vid-duration {
  position: absolute;
  bottom: 0.9rem;
  right: 0.9rem;
  background: rgba(0,0,0,0.65);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ── Card info ── */
.gal-vid-info {
  padding: 1.75rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gal-vid-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.gal-vid-cat {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-primary);
}

[data-theme="dark"] .gal-vid-cat { color: #8899cc; }

.gal-vid-dot {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.gal-vid-platform {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.gal-vid-platform i {
  color: #ff0000;
  font-size: 0.9rem;
}

.gal-vid-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.gal-vid-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.78;
  color: var(--text-secondary);
  flex: 1;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Watch Now button */
.gal-vid-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: rgba(33,45,99,0.07);
  border: 1.5px solid rgba(33,45,99,0.15);
  border-radius: 100px;
  padding: 0.65rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.gal-vid-watch-btn:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

[data-theme="dark"] .gal-vid-watch-btn {
  color: #a8b4cc;
  background: rgba(168,180,204,0.08);
  border-color: rgba(168,180,204,0.15);
}

[data-theme="dark"] .gal-vid-watch-btn:hover {
  background: #2e3f8a;
  border-color: #2e3f8a;
  color: #fff;
}

/* ==========================================
   VIDEO MODAL POPUP
   ========================================== */
.gal-vid-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gal-vid-modal.active {
  opacity: 1;
  pointer-events: all;
}

.gal-vid-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 20, 0.96);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.gal-vid-modal-inner {
  position: relative;
  z-index: 2;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 520px;      /* suits portrait Shorts */
  box-shadow: 0 32px 100px rgba(0,0,0,0.7);
  transform: scale(0.93) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.gal-vid-modal.active .gal-vid-modal-inner {
  transform: scale(1) translateY(0);
}

/* Modal header */
.gal-vid-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border);
}

.gal-vid-modal-titlebar {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  flex: 1;
  min-width: 0;
}

.gal-vid-modal-icon {
  font-size: 1.6rem;
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

[data-theme="dark"] .gal-vid-modal-icon { color: #8899cc; }

.gal-vid-modal-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.2rem;
}

.gal-vid-modal-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 340px;
}

/* Close button */
.gal-vid-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(33,45,99,0.07);
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.gal-vid-modal-close:hover {
  background: rgba(33,45,99,0.14);
  color: var(--text-primary);
}

/* Video player */
.gal-vid-modal-player {
  background: #000;
  position: relative;
}

.gal-vid-modal-iframe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;  /* Shorts portrait */
  max-height: 60vh;
  background: #000;
}

.gal-vid-modal-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Modal footer */
.gal-vid-modal-footer {
  padding: 1.1rem 1.5rem 1.25rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--border);
}

.gal-vid-modal-desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gal-vid-modal-yt-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: #ff0000;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.gal-vid-modal-yt-link:hover { opacity: 0.75; color: #ff0000; }
.gal-vid-modal-yt-link i { font-size: 1rem; }

/* ==========================================
   GALLERY PAGES — RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .gal-photo-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }
  .gal-item--wide  { grid-column: span 2; }
  .gal-item--tall  { grid-row: span 2; }
}

@media (max-width: 767px) {
  /* Photo grid — single column on mobile */
  .gal-photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gal-item--wide,
  .gal-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* Always show captions on mobile (no hover) */
  .gal-photo-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(10,14,30,0.75) 0%, transparent 60%);
  }

  .gal-photo-zoom { opacity: 1; }

  /* Lightbox controls */
  .gal-lb-prev { left: 0.5rem; }
  .gal-lb-next { right: 0.5rem; }
  .gal-lb-close { top: 0.75rem; right: 0.75rem; }

  /* Video grid */
  .gal-vid-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gal-vid-thumb-wrap {
    max-height: 300px;
    aspect-ratio: 9 / 14;
  }

  /* Modal */
  .gal-vid-modal {
    padding: 0;
    align-items: flex-end;
  }

  .gal-vid-modal-inner {
    border-radius: 20px 20px 0 0;
    max-width: 100%;
    max-height: 92vh;
    overflow-y: auto;
  }

  .gal-vid-modal-iframe-wrap {
    max-height: 50vh;
  }

  .gal-vid-modal-footer {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .gal-photo-grid { grid-auto-rows: 200px; }
  .gal-vid-play-btn { width: 58px; height: 58px; font-size: 1.5rem; }
  .gal-vid-modal-title { max-width: 200px; }
}


/* ==========================================
   CAREER PAGE — all rules namespaced .car-
   ========================================== */

/* ── Hero ── */
.car-hero-bg {
  background-image: url('images/careerbg.jpg');
  background-position: center 35%;
}

/* ==========================================
   WHY JOIN US
   ========================================== */
.car-why-section {
  padding: 6rem 0;
  background: var(--bg);
}

.car-why-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 3.5rem;
}

.car-why-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.car-why-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--brand-primary);
}

[data-theme="dark"] .car-why-title em { color: #ffffff; }

.car-why-sub {
  font-family: var(--font-body);
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.car-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.car-why-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.car-why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px var(--shadow-deep);
}

.car-why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(33,45,99,0.07);
  color: var(--brand-primary);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

[data-theme="dark"] .car-why-icon {
  background: rgba(168,180,204,0.09);
  color: #a8b4cc;
}

.car-why-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.car-why-card p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
}

/* ==========================================
   FORM SECTION LAYOUT
   ========================================== */
.car-form-section {
  padding: 5rem 0 7rem;
  background: var(--bg-alt);
}

.car-form-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: flex-start;
}

/* ── Left info panel ── */
.car-form-info {
  position: sticky;
  top: 110px;
}

.car-form-info-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1.1rem;
}

.car-form-info-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--brand-primary);
}

[data-theme="dark"] .car-form-info-title em { color: #ffffff; }

.car-form-info-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

/* Steps */
.car-info-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.car-info-step {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.car-info-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.car-info-step h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.car-info-step p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* Contact strip */
.car-info-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 1.35rem;
}

.car-info-contact > i {
  font-size: 1.4rem;
  color: var(--brand-primary);
  flex-shrink: 0;
}

[data-theme="dark"] .car-info-contact > i { color: #8899cc; }

.car-info-contact-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.car-info-contact-val {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
  transition: opacity 0.2s;
}

.car-info-contact-val:hover { opacity: 0.75; color: var(--brand-primary); }

[data-theme="dark"] .car-info-contact-val { color: #a8b4cc; }

/* ── Form card ── */
.car-form-wrap { }

.car-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2.5rem 2rem;
  box-shadow: 0 8px 40px var(--shadow);
}

.car-form-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.25rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.car-form-card-icon {
  font-size: 2rem;
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

[data-theme="dark"] .car-form-card-icon { color: #8899cc; }

.car-form-card-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.car-form-card-sub {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* Section labels inside form */
.car-form-section-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin: 2rem 0 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

[data-theme="dark"] .car-form-section-label { color: #8899cc; }

.car-form-section-label:first-of-type { margin-top: 0; }

/* ── Form elements ── */
.car-form-group {
  margin-bottom: 1.25rem;
  position: relative;
}

.car-form-group--half {
  max-width: 280px;
}

.car-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.car-form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.car-form-hint {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.car-required-star {
  color: #e53e3e;
  font-size: 0.9rem;
  line-height: 1;
}

/* Input */
.car-form-input {
  width: 100%;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  padding: 0.72rem 1rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  -webkit-appearance: none;
}

.car-form-input::placeholder { color: var(--text-muted); }

.car-form-input:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(33,45,99,0.1);
  background: var(--bg);
}

.car-form-input.car-input--error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}

/* Prefix (+91) */
.car-form-input-prefix-wrap {
  display: flex;
  align-items: center;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.car-form-input-prefix-wrap:focus-within {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(33,45,99,0.1);
  background: var(--bg);
}

.car-form-prefix {
  padding: 0.72rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-right: 1.5px solid var(--border);
  background: var(--bg-subtle);
  flex-shrink: 0;
  white-space: nowrap;
}

.car-form-input--prefixed {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  flex: 1;
}

.car-form-input--prefixed.car-input--error ~ .car-form-input-prefix-wrap,
.car-form-input-prefix-wrap:has(.car-input--error) {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}

/* Select */
.car-form-select-wrap {
  position: relative;
}

.car-form-select {
  width: 100%;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  padding: 0.72rem 2.5rem 0.72rem 1rem;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.car-form-select:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(33,45,99,0.1);
  background: var(--bg);
}

.car-form-select.car-input--error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}

.car-form-select option[disabled] { color: var(--text-muted); }

.car-select-arrow {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  color: var(--text-muted);
  pointer-events: none;
}

/* Error message */
.car-form-error {
  display: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #e53e3e;
  margin-top: 0.4rem;
}

.car-form-error--checkbox {
  margin-top: 0.5rem;
}

/* ── File upload zone ── */
.car-upload-zone {
  border: 2px dashed var(--border);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
  background: var(--bg-alt);
  overflow: hidden;
}

.car-upload-zone:hover,
.car-upload-zone--drag {
  border-color: var(--brand-primary);
  background: rgba(33,45,99,0.04);
}

.car-upload-zone--has-file {
  border-color: #2d7a4f;
  border-style: solid;
  background: rgba(45,122,79,0.04);
}

.car-upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.car-upload-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.25rem 1.5rem;
  pointer-events: none;
  text-align: center;
}

.car-upload-icon {
  font-size: 2.2rem;
  color: var(--brand-primary);
  margin-bottom: 0.75rem;
  opacity: 0.75;
}

[data-theme="dark"] .car-upload-icon { color: #8899cc; }

.car-upload-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
}

.car-upload-browse {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

[data-theme="dark"] .car-upload-browse { color: #a8b4cc; }

.car-upload-hint {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

/* Selected file state */
.car-upload-selected {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1.25rem;
  pointer-events: none;
}

.car-upload-file-icon {
  font-size: 1.6rem;
  color: #2d7a4f;
  flex-shrink: 0;
}

.car-upload-filename {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.car-upload-remove {
  font-size: 1.1rem;
  color: #e53e3e;
  background: none;
  border: none;
  cursor: pointer;
  pointer-events: all;
  z-index: 3;
  position: relative;
  flex-shrink: 0;
  transition: opacity 0.2s;
  line-height: 1;
  padding: 0.2rem;
}

.car-upload-remove:hover { opacity: 0.7; }

/* ── Checkbox declaration ── */
.car-form-group--checkbox {
  margin-top: 1.5rem;
}

.car-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  cursor: pointer;
}

.car-checkbox-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.car-checkbox-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--border);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.car-checkbox-tick {
  font-size: 0.85rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.car-checkbox-input:checked ~ .car-checkbox-box {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}

.car-checkbox-input:checked ~ .car-checkbox-box .car-checkbox-tick {
  opacity: 1;
}

.car-checkbox-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ── Submit button ── */
.car-submit-btn {
  width: 100%;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: var(--brand-primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 18px rgba(33,45,99,0.3);
}

.car-submit-btn:hover:not(:disabled) {
  background: var(--brand-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(33,45,99,0.4);
}

.car-submit-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.car-submit-text {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

/* Loading dots */
.car-submit-loader {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.car-loader-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  animation: carDotBounce 1.2s infinite ease-in-out;
}

.car-loader-dot:nth-child(2) { animation-delay: 0.2s; }
.car-loader-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes carDotBounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
  40%           { transform: scale(1);   opacity: 1; }
}

/* ── Success state ── */
.car-success-msg {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 1rem;
}

.car-success-icon {
  font-size: 4rem;
  color: #2d7a4f;
  animation: carSuccessPop 0.5s cubic-bezier(0.175,0.885,0.32,1.275) both;
}

@keyframes carSuccessPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.car-success-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.car-success-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 420px;
  margin: 0;
}

.car-success-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
  border: 1.5px solid var(--brand-primary);
  padding: 0.7rem 1.6rem;
  border-radius: 100px;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.car-success-home:hover {
  background: var(--brand-primary);
  color: #fff;
}

/* ==========================================
   CAREER — RESPONSIVE
   ========================================== */
@media (max-width: 1100px) {
  .car-form-layout { gap: 3rem; }
  .car-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .car-form-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .car-form-info {
    position: static;
  }
}

@media (max-width: 767px) {
  .car-why-grid { grid-template-columns: 1fr 1fr; }

  .car-form-card {
    padding: 1.75rem 1.25rem;
  }

  .car-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .car-form-group--half {
    max-width: 100%;
  }
}

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

  .car-form-section-label { font-size: 0.65rem; }

  .car-upload-inner { padding: 1.75rem 1rem; }
}


/* ==========================================
   PRESS RELEASE PAGE — all rules .pr-
   ========================================== */

/* ── Hero ── */
.pr-hero-bg {
  background-image: url('images/press_release_cover_bg.jpg');
  background-position: center 30%;
}

.pr-hero-overlay {
  background: linear-gradient(135deg,
    rgba(10,14,30,0.82) 0%,
    rgba(33,45,99,0.68) 100%
  );
}

/* ==========================================
   STATS STRIP
   ========================================== */
.pr-stats-strip {
  background: var(--brand-primary);
  padding: 0;
}

.pr-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.pr-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.6rem 3.5rem;
  text-align: center;
}

.pr-stat-num {
  font-family:arial;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.pr-stat-num sup {
  font-size: 1.1rem;
}

.pr-stat-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}

.pr-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

/* ==========================================
   INTRO
   ========================================== */
.pr-intro-section {
  padding: 5rem 0 2.5rem;
  background: var(--bg);
}

.pr-intro-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.pr-intro-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.pr-intro-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--brand-primary);
}

[data-theme="dark"] .pr-intro-title em { color: #ffffff; }

.pr-intro-sub {
  font-family: var(--font-body);
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ==========================================
   VIDEO SECTION
   ========================================== */
.pr-video-section {
  padding: 2rem 0 6rem;
  background: var(--bg);
}

/* ── Featured video (horizontal layout) ── */
.pr-featured-video {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 3.5rem;
  cursor: pointer;
  transition: box-shadow 0.35s ease;
}

.pr-featured-video:hover {
  box-shadow: 0 16px 56px var(--shadow-deep);
}

/* Featured thumbnail */
.pr-featured-thumb-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.pr-featured-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.35s ease;
}

.pr-featured-video:hover .pr-featured-thumb {
  transform: scale(1.05);
  filter: brightness(0.8);
}

.pr-featured-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,14,30,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
}

.pr-featured-video:hover .pr-featured-overlay {
  background: rgba(10,14,30,0.55);
}

/* Featured play button — larger */
.pr-featured-play {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  color: var(--brand-primary);
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding-left: 5px;
  box-shadow: 0 8px 36px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pr-featured-video:hover .pr-featured-play {
  transform: scale(1.1);
  box-shadow: 0 14px 48px rgba(0,0,0,0.5);
}

/* Featured release badge */
.pr-featured-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: linear-gradient(135deg, #d4a01a, #b8960c);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Featured info */
.pr-featured-info {
  padding: 2.5rem 2.5rem 2.5rem 0.5rem;
}

.pr-featured-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.pr-meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: rgba(33,45,99,0.08);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

[data-theme="dark"] .pr-meta-tag {
  color: #a8b4cc;
  background: rgba(168,180,204,0.1);
}

.pr-meta-dot {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.pr-meta-date,
.pr-meta-platform {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.pr-meta-platform i { color: #ff0000; font-size: 0.95rem; }

.pr-featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1.1rem;
}

.pr-featured-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--brand-primary);
}

[data-theme="dark"] .pr-featured-title em { color: #ffffff; }

.pr-featured-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.pr-featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Buttons */
.pr-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.72rem 1.6rem;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1.5px solid transparent;
}

.pr-play-btn--primary {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
  box-shadow: 0 4px 16px rgba(33,45,99,0.3);
}

.pr-play-btn--primary:hover {
  background: var(--brand-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(33,45,99,0.4);
  color: #fff;
}

.pr-play-btn--outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}

.pr-play-btn--outline:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
  background: var(--bg-subtle);
}

/* ── Section divider ── */
.pr-video-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
}

.pr-video-divider::before,
.pr-video-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.pr-video-divider span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── Video grid ── */
.pr-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ── Video card ── */
.pr-vid-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.pr-vid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px var(--shadow-deep);
}

/* Thumbnail */
.pr-vid-thumb-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  background: #111;
}

.pr-vid-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.35s ease;
}

.pr-vid-card:hover .pr-vid-thumb {
  transform: scale(1.06);
  filter: brightness(0.75);
}

.pr-vid-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,14,30,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
}

.pr-vid-card:hover .pr-vid-thumb-overlay {
  background: rgba(10,14,30,0.52);
}

.pr-vid-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  color: var(--brand-primary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding-left: 3px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pr-vid-card:hover .pr-vid-play-btn {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}

.pr-vid-yt-badge {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 1rem;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

/* Card body */
.pr-vid-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pr-vid-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.pr-vid-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: rgba(33,45,99,0.07);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}

[data-theme="dark"] .pr-vid-tag {
  color: #a8b4cc;
  background: rgba(168,180,204,0.08);
}

.pr-vid-date {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.pr-vid-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.pr-vid-desc {
  font-family: var(--font-body);
  font-size: 0.86rem;
  line-height: 1.75;
  color: var(--text-secondary);
  flex: 1;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pr-vid-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: rgba(33,45,99,0.06);
  border: 1.5px solid rgba(33,45,99,0.14);
  border-radius: 100px;
  padding: 0.55rem 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.pr-vid-watch-btn:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

[data-theme="dark"] .pr-vid-watch-btn {
  color: #a8b4cc;
  background: rgba(168,180,204,0.07);
  border-color: rgba(168,180,204,0.14);
}

[data-theme="dark"] .pr-vid-watch-btn:hover {
  background: #2e3f8a;
  border-color: #2e3f8a;
  color: #fff;
}

/* Placeholder card */
.pr-vid-card--placeholder {
  border-style: dashed;
  border-color: var(--border);
  background: var(--bg-alt);
  cursor: default;
  min-height: 320px;
}

.pr-vid-card--placeholder:hover {
  transform: none;
  box-shadow: 0 4px 20px var(--shadow);
}

.pr-vid-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 2.5rem 1.75rem;
  gap: 0.75rem;
}

.pr-vid-placeholder-icon {
  font-size: 2.5rem;
  color: var(--text-muted);
  opacity: 0.45;
}

.pr-vid-placeholder-inner h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 0;
}

.pr-vid-placeholder-inner p {
  font-family: var(--font-body);
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* ── Modal: wider for landscape videos ── */
.pr-modal-wide {
  max-width: 860px !important;
}

.pr-modal-iframe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.pr-modal-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ==========================================
   BRAND PARTNERS SECTION
   ========================================== */
.pr-brands-section {
  padding: 6rem 0;
  background: var(--bg-alt);
}

.pr-brands-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.pr-brands-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.pr-brands-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--brand-primary);
}

[data-theme="dark"] .pr-brands-title em { color: #ffffff; }

.pr-brands-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.pr-brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pr-brand-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 18px var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pr-brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 42px var(--shadow-deep);
}

.pr-brand-img-wrap {
  height: 200px;
  overflow: hidden;
}

.pr-brand-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.pr-brand-card:hover .pr-brand-img {
  transform: scale(1.06);
}

.pr-brand-body {
  padding: 1.5rem;
}

.pr-brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.pr-brand-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.78;
  color: var(--text-secondary);
  margin: 0;
}

/* ==========================================
   PRESS CONTACT SECTION
   ========================================== */
.pr-contact-section { position: relative; }

.pr-contact-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 6rem 0;
}

.pr-contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,30,0.9) 0%, rgba(33,45,99,0.85) 100%);
}

.pr-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.pr-contact-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.pr-contact-title em {
  font-style: italic;
  font-weight: 300;
}

.pr-contact-sub {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.pr-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pr-contact-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(6px);
  transition: background 0.3s ease;
}

.pr-contact-card:hover {
  background: rgba(255,255,255,0.13);
}

.pr-contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pr-contact-card-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.2rem;
}

.pr-contact-card-val {
  display: block;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: opacity 0.2s;
}

.pr-contact-card-val:hover { opacity: 0.72; color: rgba(255,255,255,0.88); }

/* ==========================================
   PRESS RELEASE — RESPONSIVE
   ========================================== */
@media (max-width: 1100px) {
  .pr-featured-video { gap: 2.5rem; }
  .pr-featured-info { padding-right: 2rem; }
  .pr-video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .pr-contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .pr-brands-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

@media (max-width: 767px) {
  /* Featured video stacks */
  .pr-featured-video {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pr-featured-thumb-wrap {
    aspect-ratio: 16 / 9;
  }

  .pr-featured-info {
    padding: 2rem 1.75rem;
  }

  .pr-featured-play {
    width: 68px;
    height: 68px;
    font-size: 1.7rem;
  }

  /* Video grid */
  .pr-video-grid { grid-template-columns: 1fr; }

  /* Stats strip */
  .pr-stats-inner { flex-wrap: wrap; gap: 0; }
  .pr-stat { padding: 1.25rem 2rem; }
  .pr-stat-divider { display: none; }
  .pr-stat { border-bottom: 1px solid rgba(255,255,255,0.1); width: 50%; }
  .pr-stat:nth-last-child(-n+2) { border-bottom: none; }

  /* Brands */
  .pr-brands-grid { grid-template-columns: 1fr; }

  /* Contact */
  .pr-contact-bg { background-attachment: scroll; padding: 4rem 0; }

  /* Wide modal → standard size */
  .pr-modal-wide { max-width: 100% !important; }
  .pr-modal-iframe-wrap { aspect-ratio: 16 / 9; }
}

@media (max-width: 480px) {
  .pr-featured-actions { flex-direction: column; }
  .pr-play-btn { justify-content: center; }
}


/* ── YouTube embed fallback (Error 153 / local file workaround) ── */
.pr-embed-fallback {
  position: absolute;
  inset: 0;
  background: #0a0e1a;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.pr-embed-fallback-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  text-align: center;
  padding: 2rem;
}

.pr-fallback-yt-icon {
  font-size: 3.5rem;
  color: #ff0000;
  opacity: 0.85;
}

.pr-embed-fallback-inner p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.pr-fallback-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  background: #ff0000;
  border: none;
  border-radius: 100px;
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.pr-fallback-btn:hover {
  opacity: 0.88;
  color: #fff;
  transform: translateY(-2px);
}


/* ==========================================
   YOUTUBE MODAL — thumbnail preview + open
   Works for Shorts & all YouTube videos
   Namespaced .yt-modal
   ========================================== */
.yt-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.yt-modal.active {
  opacity: 1;
  pointer-events: all;
}

/* Backdrop */
.yt-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 20, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

/* Inner card */
.yt-modal-inner {
  position: relative;
  z-index: 2;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  width: 100%;
  max-width: 560px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.75);
  transform: scale(0.92) translateY(24px);
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.yt-modal.active .yt-modal-inner {
  transform: scale(1) translateY(0);
}

/* Close button */
.yt-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(4px);
}

.yt-modal-close:hover {
  background: rgba(0,0,0,0.8);
  transform: scale(1.08);
}

/* Thumbnail section */
.yt-modal-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 14;
  max-height: 420px;
  overflow: hidden;
  background: #0a0e1a;
  cursor: pointer;
}

.yt-modal-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.4s ease;
}

.yt-modal-inner:hover .yt-modal-thumb {
  transform: scale(1.04);
  filter: brightness(0.72);
}

/* Overlay on thumbnail */
.yt-modal-thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  background: rgba(10,14,30,0.35);
  transition: background 0.35s ease;
}

.yt-modal-inner:hover .yt-modal-thumb-overlay {
  background: rgba(10,14,30,0.58);
}

/* Big play button */
.yt-modal-big-play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ff0000;
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding-left: 5px; /* optical centre */
  box-shadow: 0 8px 40px rgba(255,0,0,0.5);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.3s ease,
              background 0.3s ease;
}

.yt-modal-big-play:hover {
  transform: scale(1.12);
  background: #cc0000;
  box-shadow: 0 12px 52px rgba(255,0,0,0.65);
  color: #fff;
}

/* "Tap to watch" hint */
.yt-modal-tap-hint {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(0,0,0,0.45);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

/* YouTube logo badge bottom-left */
.yt-modal-yt-logo {
  position: absolute;
  bottom: 0.9rem;
  left: 0.9rem;
  background: rgba(0,0,0,0.65);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.yt-modal-yt-logo i {
  color: #ff0000;
  font-size: 0.95rem;
}

/* Info section */
.yt-modal-info {
  padding: 1.5rem 1.75rem 1.75rem;
}

.yt-modal-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.yt-modal-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: rgba(33,45,99,0.08);
  padding: 0.28rem 0.75rem;
  border-radius: 100px;
}

[data-theme="dark"] .yt-modal-tag {
  color: #a8b4cc;
  background: rgba(168,180,204,0.1);
}

.yt-modal-platform {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.yt-modal-platform i { color: #ff0000; font-size: 0.9rem; }

.yt-modal-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.yt-modal-desc {
  font-family: var(--font-body);
  font-size: 0.86rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Watch on YouTube button — full width, prominent */
.yt-modal-watch-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: #ff0000;
  color: #fff;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255,0,0,0.35);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.yt-modal-watch-btn:hover {
  background: #cc0000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,0,0,0.5);
}

.yt-modal-watch-btn > i:first-child { font-size: 1.2rem; }

.yt-modal-arrow {
  margin-left: auto;
  font-size: 1rem;
  opacity: 0.75;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .yt-modal {
    padding: 0;
    align-items: flex-end;
  }

  .yt-modal-inner {
    border-radius: 22px 22px 0 0;
    max-width: 100%;
    max-height: 95vh;
    overflow-y: auto;
    transform: scale(1) translateY(100%);
  }

  .yt-modal.active .yt-modal-inner {
    transform: scale(1) translateY(0);
  }

  .yt-modal-thumb-wrap {
    max-height: 300px;
    aspect-ratio: 9 / 12;
  }

  .yt-modal-big-play {
    width: 64px;
    height: 64px;
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .yt-modal-thumb-wrap { max-height: 260px; }
  .yt-modal-info { padding: 1.25rem; }
  .yt-modal-title { font-size: 1.15rem; }
}


/* ==========================================
   EVENTS PAGE — all rules namespaced .ev-
   ========================================== */

/* ── Hero ── */
.ev-hero-bg {
  background-image: url('images/franchise_store_slider.jpg');
  background-position: center 25%;
}
.ev-hero-overlay {
  background: linear-gradient(135deg, rgba(10,14,30,0.85) 0%, rgba(33,45,99,0.7) 100%);
}

/* ==========================================
   TAB FILTER NAV
   ========================================== */
.ev-tab-nav {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 100;
  box-shadow: 0 2px 12px var(--shadow);
}

.ev-tab-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.ev-tab-list::-webkit-scrollbar { display: none; }

.ev-tab-btn {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.ev-tab-btn:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  background: rgba(33,45,99,0.05);
}

.ev-tab-btn.active {
  color: #e8242e;
}

/* ==========================================
   STATS STRIP
   ========================================== */
.ev-stats-strip {
  background: var(--brand-primary);
  padding: 1rem 0;
}

.ev-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0;
}

.ev-stat {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.82);
}

.ev-stat i { font-size: 1rem; color: rgba(255,255,255,0.6); }

.ev-stat-div {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ==========================================
   SECTION WRAPPER
   ========================================== */
.ev-section {
  padding: 5rem 0 6rem;
  background: var(--bg);
}

.ev-section--alt { background: var(--bg-alt); }

.ev-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.ev-section-label-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.ev-section-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(33,45,99,0.08);
  color: var(--brand-primary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="dark"] .ev-section-icon {
  background: rgba(168,180,204,0.1);
  color: #a8b4cc;
}

.ev-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.ev-section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--brand-primary);
}

[data-theme="dark"] .ev-section-title em { color: #ffffff; }

.ev-section-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ==========================================
   STATUS BADGES
   ========================================== */
.ev-event-status,
.ev-inline-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: 100px;
}

.ev-status--completed {
  color: #2d7a4f;
  background: rgba(45,122,79,0.1);
}

.ev-status--upcoming {
  color: #b8960c;
  background: rgba(184,150,12,0.1);
}

.ev-status--live {
  color: #e53e3e;
  background: rgba(229,62,62,0.1);
  animation: evLivePulse 1.5s infinite;
}

@keyframes evLivePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.65; }
}

/* ==========================================
   FEATURED EVENT VIDEO
   ========================================== */
.ev-featured-event {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 6px 30px var(--shadow);
  transition: box-shadow 0.35s ease;
}

.ev-featured-event:hover {
  box-shadow: 0 16px 56px var(--shadow-deep);
}

.ev-featured-event-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  cursor: pointer;
  background: #0a0e1a;
}

.ev-featured-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease, filter 0.35s ease;
}

.ev-featured-event:hover .ev-featured-thumb-img {
  transform: scale(1.05);
  filter: brightness(0.75);
}

.ev-featured-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,14,30,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
}

.ev-featured-event:hover .ev-featured-thumb-overlay {
  background: rgba(10,14,30,0.52);
}

/* Play buttons */
.ev-vid-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  color: var(--brand-primary);
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding-left: 3px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ev-play-lg {
  width: 80px;
  height: 80px;
  font-size: 2rem;
  padding-left: 5px;
}

.ev-featured-event:hover .ev-vid-play-btn {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}

.ev-featured-vid-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255,0,0,0.85);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  backdrop-filter: blur(4px);
}

/* Featured event info */
.ev-featured-event-info {
  padding: 2.5rem 2.5rem 2.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.ev-featured-event-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0;
}

.ev-event-meta-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.ev-event-meta-list--sm .ev-meta-item { font-size: 0.82rem; }

.ev-meta-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.87rem;
  color: var(--text-secondary);
}

.ev-meta-item i {
  color: var(--brand-primary);
  font-size: 0.9rem;
  flex-shrink: 0;
  width: 16px;
}

[data-theme="dark"] .ev-meta-item i { color: #8899cc; }

.ev-featured-event-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
}

/* Watch button */
.ev-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.75rem 1.6rem;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.ev-watch-btn--primary {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(33,45,99,0.3);
}

.ev-watch-btn--primary:hover {
  background: var(--brand-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(33,45,99,0.4);
}

/* ==========================================
   EVENT VIDEO CARD GRID
   ========================================== */
.ev-vid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ev-vid-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.ev-vid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px var(--shadow-deep);
}

.ev-vid-thumb-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  background: #111;
}

.ev-vid-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.35s ease;
}

.ev-vid-card:hover .ev-vid-thumb {
  transform: scale(1.06);
  filter: brightness(0.72);
}

.ev-vid-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,14,30,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
}

.ev-vid-card:hover .ev-vid-thumb-overlay {
  background: rgba(10,14,30,0.52);
}

.ev-vid-yt-tag {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(0,0,0,0.65);
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

/* Card body */
.ev-vid-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
}

.ev-vid-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.ev-vid-cat-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: rgba(33,45,99,0.07);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}

[data-theme="dark"] .ev-vid-cat-tag { color: #a8b4cc; background: rgba(168,180,204,0.08); }

.ev-vid-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin: 0;
}

.ev-vid-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.ev-vid-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.ev-vid-desc {
  font-family: var(--font-body);
  font-size: 0.86rem;
  line-height: 1.75;
  color: var(--text-secondary);
  flex: 1;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ev-vid-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: rgba(33,45,99,0.06);
  border: 1.5px solid rgba(33,45,99,0.14);
  border-radius: 100px;
  padding: 0.5rem 1.15rem;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.ev-vid-watch-btn:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

/* Placeholder card */
.ev-vid-card--placeholder {
  border-style: dashed;
  background: var(--bg);
  cursor: default;
  min-height: 300px;
}

.ev-vid-card--placeholder:hover { transform: none; box-shadow: 0 4px 20px var(--shadow); }

.ev-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  height: 100%;
  gap: 0.75rem;
}

.ev-placeholder-icon {
  font-size: 2.5rem;
  color: var(--text-muted);
  opacity: 0.4;
}

.ev-placeholder-inner h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 0;
}

.ev-placeholder-inner p {
  font-family: var(--font-body);
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================
   EVENT PHOTO SECTION
   ========================================== */
.ev-photo-events-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.ev-photo-event-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow);
}

.ev-photo-event-header {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.ev-photo-event-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.ev-photo-event-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0.35rem 0 0;
  line-height: 1.25;
}

.ev-photo-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--brand-primary);
  background: rgba(33,45,99,0.07);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

[data-theme="dark"] .ev-photo-count-badge { color: #a8b4cc; background: rgba(168,180,204,0.08); }

.ev-photo-event-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 1rem 0 0;
}

/* Photo grid inside event card */
.ev-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 0;
}

.ev-photo-item--wide { grid-column: span 2; }

.ev-photo-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-subtle);
}

.ev-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.ev-photo-item:hover img { transform: scale(1.07); }

.ev-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,30,0.88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ev-photo-item:hover .ev-photo-overlay { opacity: 1; }

.ev-photo-info { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; }

.ev-photo-info-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.3rem;
  line-height: 1.25;
}

.ev-photo-info-desc {
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ev-photo-zoom {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.28);
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease;
  backdrop-filter: blur(4px);
}

.ev-photo-zoom:hover { background: rgba(255,255,255,0.28); }

/* Upcoming event card */
.ev-photo-event-card--upcoming {
  border-style: dashed;
  background: var(--bg-alt);
}

.ev-upcoming-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  gap: 0.85rem;
}

.ev-upcoming-icon {
  font-size: 3rem;
  color: var(--brand-primary);
  opacity: 0.5;
}

[data-theme="dark"] .ev-upcoming-icon { color: #8899cc; }

.ev-upcoming-inner h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.ev-upcoming-inner p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0;
}

.ev-upcoming-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  align-items: center;
}

/* ==========================================
   EVENTS PAGE — RESPONSIVE
   ========================================== */
@media (max-width: 1100px) {
  .ev-vid-grid { grid-template-columns: repeat(2, 1fr); }
  .ev-featured-event { gap: 2.5rem; }
}

@media (max-width: 900px) {
  .ev-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ev-photo-item--wide { grid-column: span 2; }
}

@media (max-width: 767px) {
  /* Featured event stacks */
  .ev-featured-event {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ev-featured-event-thumb {
    aspect-ratio: 16 / 9;
  }

  .ev-featured-event-info {
    padding: 1.75rem;
  }

  .ev-play-lg { width: 64px; height: 64px; font-size: 1.6rem; }

  /* Video grid */
  .ev-vid-grid { grid-template-columns: 1fr; }

  /* Photo grid */
  .ev-photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .ev-photo-item--wide { grid-column: span 1; }

  /* Always show photo overlay on mobile */
  .ev-photo-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(10,14,30,0.7) 0%, transparent 60%);
  }

  .ev-photo-zoom { opacity: 1; }

  /* Stats */
  .ev-stats-inner { gap: 0; }
  .ev-stat { padding: 0.6rem 1.5rem; }
  .ev-stat-div { display: none; }

  /* Tab nav */
  .ev-tab-btn { padding: 0.45rem 1rem; font-size: 0.72rem; }

  /* Photo event header */
  .ev-photo-event-header { padding: 1.5rem; }
  .ev-photo-event-title-row { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 480px) {
  .ev-photo-grid { grid-auto-rows: 180px; }
  .ev-vid-play-btn { width: 44px; height: 44px; font-size: 1.1rem; }
  .ev-upcoming-inner { padding: 2.5rem 1.25rem; }
}


/* ==========================================
   EVENTS PAGE — all rules namespaced .evt-
   ========================================== */

/* ── Hero ── */
.evt-hero-bg {
  background-image: url('images/events_cover_bg.jpg');
  background-position: center 30%;
}

/* ── Tab Nav ── */
.evt-tab-nav {
  position: sticky;
  top: 65px;
  z-index: 100;
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px var(--shadow);
}

.evt-tab-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.evt-tab-list::-webkit-scrollbar { display: none; }

.evt-tab-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  white-space: nowrap;
  transition: all 0.25s ease;
}

.evt-tab-link:hover {
  color: var(--brand-primary);
  border-color: var(--brand-primary);
  background: rgba(33,45,99,0.04);
}

.evt-tab-link.active {
  color: #e8242e;
}

/* ── Section wrappers ── */
.evt-section {
  padding: 5rem 0 6rem;
  background: var(--bg);
}

.evt-section--alt {
  background: var(--bg-alt);
}

.evt-section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 3.5rem;
}

.evt-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

.evt-section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--brand-primary);
}

[data-theme="dark"] .evt-section-title em { color: #ffffff; }

.evt-section-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ── Status Badges ── */
.evt-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

.evt-status--completed {
  background: rgba(45,122,79,0.12);
  color: #2d7a4f;
}

[data-theme="dark"] .evt-status--completed {
  background: rgba(45,122,79,0.2);
  color: #5db882;
}

.evt-status--upcoming {
  background: rgba(184,150,12,0.12);
  color: #8b6914;
}

[data-theme="dark"] .evt-status--upcoming {
  background: rgba(184,150,12,0.2);
  color: #d4a01a;
}

/* ==========================================
   EVENT VIDEO GRID
   ========================================== */
.evt-vid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

/* ── Video card ── */
.evt-vid-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.evt-vid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px var(--shadow-deep);
}

.evt-vid-card--featured {
  border-color: rgba(184,150,12,0.3);
  box-shadow: 0 4px 24px rgba(184,150,12,0.1);
}

.evt-vid-card--featured:hover {
  box-shadow: 0 18px 52px rgba(184,150,12,0.2);
}

/* Thumbnail */
.evt-vid-thumb-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  cursor: pointer;
  background: #111;
}

.evt-vid-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.35s ease;
}

.evt-vid-card:hover .evt-vid-thumb {
  transform: scale(1.06);
  filter: brightness(0.75);
}

.evt-vid-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,14,30,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
  pointer-events: none; /* let clicks pass through to thumb-wrap */
}

.evt-vid-overlay .evt-vid-play-btn {
  pointer-events: all; /* play button still individually clickable */
}

.evt-vid-card:hover .evt-vid-overlay {
  background: rgba(10,14,30,0.52);
}

.evt-vid-play-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  color: var(--brand-primary);
  font-size: 1.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding-left: 3px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.evt-vid-card:hover .evt-vid-play-btn {
  transform: scale(1.12);
  box-shadow: 0 8px 36px rgba(0,0,0,0.45);
}

/* Badges on thumbnail */
.evt-vid-badges {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-start;
}

.evt-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: linear-gradient(135deg, #d4a01a, #b8960c);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 100px;
}

.evt-yt-tag {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(0,0,0,0.65);
  color: rgba(255,255,255,0.88);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.evt-yt-tag i { color: #ff0000; }

/* Card body */
.evt-vid-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.evt-vid-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
}

.evt-meta-item {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.28rem;
}

.evt-meta-item i { font-size: 0.8rem; color: var(--brand-primary); }
[data-theme="dark"] .evt-meta-item i { color: #8899cc; }
.evt-meta-sep { color: var(--text-muted); font-size: 0.7rem; }

.evt-vid-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.evt-vid-desc {
  font-family: var(--font-body);
  font-size: 0.86rem;
  line-height: 1.75;
  color: var(--text-secondary);
  flex: 1;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.evt-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: #ff0000;
  border: none;
  border-radius: 100px;
  padding: 0.6rem 1.35rem;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.25s ease, transform 0.25s ease;
  box-shadow: 0 3px 12px rgba(255,0,0,0.3);
}

.evt-watch-btn:hover {
  background: #cc0000;
  transform: translateY(-2px);
}

/* Upcoming placeholder card */
.evt-vid-card--upcoming {
  cursor: default;
  border-style: dashed;
  min-height: 300px;
}

.evt-vid-card--upcoming:hover {
  transform: none;
  box-shadow: 0 4px 20px var(--shadow);
}

.evt-upcoming-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.75rem;
  gap: 0.85rem;
  height: 100%;
  min-height: 280px;
}

.evt-upcoming-icon {
  font-size: 2.5rem;
  color: var(--text-muted);
  opacity: 0.4;
}

.evt-upcoming-inner h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 0;
}

.evt-upcoming-inner p {
  font-family: var(--font-body);
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.evt-upcoming-notify {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: rgba(33,45,99,0.07);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-top: 0.25rem;
}

[data-theme="dark"] .evt-upcoming-notify {
  color: #a8b4cc;
  background: rgba(168,180,204,0.08);
}

/* ==========================================
   EVENT PHOTO BLOCKS
   ========================================== */
.evt-photo-block {
  margin-bottom: 5rem;
}

.evt-photo-block:last-child { margin-bottom: 0; }

.evt-photo-block-header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 2rem 2.25rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--shadow);
}

/* Date badge */
.evt-date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  background: var(--brand-primary);
  border-radius: 14px;
  padding: 0.85rem 0.6rem;
  flex-shrink: 0;
  text-align: center;
}

.evt-date-day {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.evt-date-month {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  margin-top: 0.2rem;
}

.evt-date-year {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}

/* Block info */
.evt-photo-block-info {
  flex: 1;
  min-width: 0;
}

.evt-photo-block-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 0.6rem;
}

.evt-photo-block-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.evt-photo-block-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 0.85rem;
}

.evt-photo-block-meta span {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.evt-photo-block-meta i { color: var(--brand-primary); font-size: 0.88rem; }
[data-theme="dark"] .evt-photo-block-meta i { color: #8899cc; }

.evt-photo-block-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.78;
  color: var(--text-secondary);
  margin: 0;
}

/* ── Photo grid (same masonry style as photo gallery) ── */
.evt-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 0.9rem;
}

.evt-photo-item--wide { grid-column: span 2; }

.evt-photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  background: var(--bg-subtle);
}

.evt-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}

.evt-photo-item:hover img { transform: scale(1.07); }

/* Photo overlay */
.evt-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,30,0.88) 0%, rgba(10,14,30,0.3) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none; /* clicks pass through to the item */
}

.evt-photo-overlay .evt-photo-zoom {
  pointer-events: all; /* zoom button still clickable */
}

.evt-photo-item:hover .evt-photo-overlay { opacity: 1; }

.evt-photo-info { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; }

.evt-photo-event-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.3rem;
}

.evt-photo-caption {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.3rem;
  line-height: 1.25;
}

.evt-photo-overlay p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.evt-photo-zoom {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(4px);
}

.evt-photo-zoom:hover { background: rgba(255,255,255,0.28); transform: scale(1.1); }

/* ==========================================
   EVENTS PAGE — RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
  .evt-vid-grid { grid-template-columns: 1fr 1fr; }
  .evt-vid-card--upcoming { display: none; }
}

@media (max-width: 900px) {
  .evt-photo-block-header { flex-direction: column; gap: 1.25rem; }
  .evt-date-badge { flex-direction: row; gap: 0.5rem; min-width: auto; width: 100%; justify-content: flex-start; padding: 0.6rem 1rem; border-radius: 10px; }
  .evt-date-day { font-size: 1.4rem; }
}

@media (max-width: 767px) {
  .evt-vid-grid { grid-template-columns: 1fr; }
  .evt-vid-card--upcoming { display: flex; }
  .evt-photo-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .evt-photo-item--wide { grid-column: span 2; }
  /* Always show overlay on mobile */
  .evt-photo-overlay { opacity: 1; background: linear-gradient(to top, rgba(10,14,30,0.78) 0%, transparent 60%); }
  .evt-photo-zoom { opacity: 1; }
}

@media (max-width: 480px) {
  .evt-photo-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .evt-photo-item--wide { grid-column: span 1; }
  .evt-photo-block-title { font-size: 1.25rem; }
}


/* ==========================================
   AD VIDEOS PAGE — namespaced .adv-
   ========================================== */

/* ── Hero ── */
.adv-hero-bg {
  background-image: url('images/advideo_cover_bg.jpg');
  background-position: center 25%;
}
.adv-hero-overlay {
  background: linear-gradient(135deg, rgba(10,14,30,0.85) 0%, rgba(33,45,99,0.75) 100%);
}

/* ── Intro ── */
.adv-intro-section {
  padding: 5rem 0 3rem;
  background: var(--bg);
}
.adv-intro-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.adv-intro-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.adv-intro-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--brand-primary);
}
[data-theme="dark"] .adv-intro-title em { color: #ffffff; }

.adv-intro-sub {
  font-family: var(--font-body);
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}
.adv-intro-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.adv-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: rgba(33,45,99,0.07);
  border: 1.5px solid rgba(33,45,99,0.12);
  padding: 0.45rem 1rem;
  border-radius: 100px;
}
[data-theme="dark"] .adv-chip {
  color: #a8b4cc;
  background: rgba(168,180,204,0.08);
  border-color: rgba(168,180,204,0.12);
}
.adv-chip i { font-size: 0.85rem; }

/* ── Video Grid ── */
.adv-grid-section {
  padding: 2rem 0 6rem;
  background: var(--bg);
}
.adv-vid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

/* ── Video Card ── */
.adv-vid-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.adv-vid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px var(--shadow-deep);
}

/* Thumbnail */
.adv-vid-thumb-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  cursor: pointer;
  background: #111;
  flex-shrink: 0;
}
.adv-vid-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease, filter 0.4s ease;
}
.adv-vid-card:hover .adv-vid-thumb {
  transform: scale(1.07);
  filter: brightness(0.7);
}

/* Overlay — pointer-events none so thumb-wrap click works */
.adv-vid-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,14,30,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
  pointer-events: none;
}
.adv-vid-overlay .adv-play-ring,
.adv-vid-overlay .adv-play-btn {
  pointer-events: all;
}
.adv-vid-card:hover .adv-vid-overlay {
  background: rgba(10,14,30,0.55);
}

/* Play button with animated ring */
.adv-play-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.adv-play-ring::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  animation: advRingPulse 2s ease-in-out infinite;
}
@keyframes advRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%       { transform: scale(1.25); opacity: 0; }
}
.adv-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  color: var(--brand-primary);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding-left: 4px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}
.adv-vid-card:hover .adv-play-btn {
  transform: scale(1.12);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* Shorts badge */
.adv-shorts-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(255,0,0,0.88);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

/* YouTube watermark bottom-right */
.adv-yt-watermark {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(0,0,0,0.6);
  color: #ff0000;
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

/* Card info */
.adv-vid-info {
  padding: 1.6rem 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.adv-vid-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}
.adv-vid-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: rgba(33,45,99,0.07);
  padding: 0.28rem 0.75rem;
  border-radius: 100px;
}
[data-theme="dark"] .adv-vid-tag {
  color: #a8b4cc;
  background: rgba(168,180,204,0.08);
}
.adv-vid-platform {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.adv-vid-platform i { color: #ff0000; font-size: 0.9rem; }

.adv-vid-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0.65rem;
}
.adv-vid-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.78;
  color: var(--text-secondary);
  flex: 1;
  margin-bottom: 1.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.adv-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  background: #ff0000;
  border: none;
  border-radius: 100px;
  padding: 0.65rem 1.5rem;
  cursor: pointer;
  align-self: flex-start;
  box-shadow: 0 4px 16px rgba(255,0,0,0.3);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.adv-watch-btn:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,0,0,0.45);
}

/* Placeholder card */
.adv-vid-card--placeholder {
  border-style: dashed;
  cursor: default;
  background: var(--bg-alt);
}
.adv-vid-card--placeholder:hover {
  transform: none;
  box-shadow: 0 4px 20px var(--shadow);
}
.adv-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 1rem;
  height: 100%;
  min-height: 320px;
}
.adv-placeholder-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(33,45,99,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--text-muted);
  opacity: 0.5;
}
[data-theme="dark"] .adv-placeholder-icon {
  background: rgba(168,180,204,0.08);
}
.adv-placeholder-inner h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 0;
}
.adv-placeholder-inner p {
  font-family: var(--font-body);
  font-size: 0.86rem;
  line-height: 1.72;
  color: var(--text-muted);
  margin: 0;
  max-width: 240px;
}

/* ── CTA Section ── */
.adv-cta-section { position: relative; }
.adv-cta-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 5.5rem 0;
}
.adv-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,30,0.9) 0%, rgba(33,45,99,0.85) 100%);
}
.adv-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
}
.adv-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}
.adv-cta-title em { font-style: italic; font-weight: 300; }
.adv-cta-sub {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.62);
  margin: 0;
}
.adv-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.adv-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.adv-cta-btn--yt {
  background: #ff0000;
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,0,0,0.4);
}
.adv-cta-btn--yt:hover {
  background: #cc0000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,0,0,0.55);
}
.adv-social-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.adv-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}
.adv-social-icon:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .adv-vid-grid { grid-template-columns: 1fr 1fr; }
  .adv-vid-card--placeholder { display: none; }
  .adv-cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .adv-cta-actions { flex-direction: row; align-items: center; }
}

@media (max-width: 767px) {
  .adv-vid-grid { grid-template-columns: 1fr; }
  .adv-vid-card--placeholder { display: flex; }
  .adv-cta-bg { background-attachment: scroll; padding: 4rem 0; }
  .adv-cta-actions { flex-direction: column; align-items: flex-start; }
  .adv-vid-thumb-wrap { height: 200px; }
}

@media (max-width: 480px) {
  .adv-vid-thumb-wrap { height: 180px; }
  .adv-intro-chips { flex-direction: column; align-items: center; }
}


/* ==========================================
   CONTACT US PAGE — namespaced .con-
   ========================================== */

/* ── Hero ── */
.con-hero-bg {
  background-image: url('images/contact_cover_bg.jpg');
  background-position: center 35%;
}
.con-hero-overlay {
  background: linear-gradient(135deg, rgba(10,14,30,0.82) 0%, rgba(33,45,99,0.72) 100%);
}

/* ==========================================
   MAIN SECTION — 2-column layout
   ========================================== */
.con-main-section {
  padding: 5.5rem 0 7rem;
  background: var(--bg-alt);
}

.con-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* ── Left column ── */
.con-info-header {
  margin-bottom: 2.5rem;
}

.con-info-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

.con-info-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--brand-primary);
}

[data-theme="dark"] .con-info-title em { color: #ffffff; }

.con-info-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
}

/* ── Info Cards ── */
.con-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.con-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.35rem 1.25rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.con-card:hover {
  box-shadow: 0 8px 28px var(--shadow-deep);
  transform: translateY(-3px);
}

.con-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(33,45,99,0.08);
  color: var(--brand-primary);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

[data-theme="dark"] .con-card-icon {
  background: rgba(168,180,204,0.1);
  color: #a8b4cc;
}

.con-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.con-card-text {
  font-family: var(--font-body);
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
  font-style: normal;
}

.con-card-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
  display: block;
  margin-bottom: 0.2rem;
  transition: opacity 0.2s;
}

.con-card-link:hover { opacity: 0.72; color: var(--brand-primary); }

[data-theme="dark"] .con-card-link { color: #a8b4cc; }

.con-card-hint {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Social strip ── */
.con-social-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 1.1rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.con-social-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.con-social-icons {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.con-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(33,45,99,0.07);
  border: 1.5px solid var(--border);
  color: var(--brand-primary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
}

.con-social-btn:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
  transform: translateY(-2px);
}

.con-social-btn--wa { color: #25d366; }
.con-social-btn--wa:hover { background: #25d366; border-color: #25d366; color: #fff; }

[data-theme="dark"] .con-social-btn {
  color: #a8b4cc;
  background: rgba(168,180,204,0.07);
}

/* ── Contact Form ── */
.con-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: 0 6px 32px var(--shadow);
}

.con-form-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.con-form-header-icon {
  font-size: 1.9rem;
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

[data-theme="dark"] .con-form-header-icon { color: #8899cc; }

.con-form-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.con-form-sub {
  font-family: var(--font-body);
  font-size: 0.83rem;
  color: var(--text-muted);
  margin: 0;
}

/* Form fields */
.con-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.con-form-group {
  margin-bottom: 1.25rem;
  position: relative;
}

.con-form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.con-required { color: #e53e3e; }

.con-form-input,
.con-form-select,
.con-form-textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  padding: 0.72rem 1rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  -webkit-appearance: none;
}

.con-form-input::placeholder,
.con-form-textarea::placeholder { color: var(--text-muted); }

.con-form-input:focus,
.con-form-select:focus,
.con-form-textarea:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(33,45,99,0.1);
  background: var(--bg);
}

.con-form-input.con-input--error,
.con-form-select.con-input--error,
.con-form-textarea.con-input--error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}

.con-form-textarea {
  resize: vertical;
  min-height: 130px;
}

/* Prefix +91 */
.con-prefix-wrap {
  display: flex;
  align-items: center;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.con-prefix-wrap:focus-within {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(33,45,99,0.1);
  background: var(--bg);
}

.con-prefix {
  padding: 0.72rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-right: 1.5px solid var(--border);
  background: var(--bg-subtle);
  flex-shrink: 0;
}

.con-form-input--prefixed {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  flex: 1;
}

/* Select */
.con-select-wrap { position: relative; }

.con-form-select {
  padding-right: 2.5rem;
  cursor: pointer;
}

.con-select-arrow {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  color: var(--text-muted);
  pointer-events: none;
}

/* Error */
.con-form-error {
  display: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #e53e3e;
  margin-top: 0.4rem;
}

/* Submit button */
.con-submit-btn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem 2rem;
  background: var(--brand-primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  box-shadow: 0 4px 18px rgba(33,45,99,0.3);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.con-submit-btn:hover:not(:disabled) {
  background: var(--brand-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(33,45,99,0.4);
}

.con-submit-btn:disabled { opacity: 0.75; cursor: not-allowed; }

.con-submit-text,
.con-submit-loader {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Success */
.con-success-msg {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1.5rem;
  gap: 0.85rem;
}

.con-success-icon {
  font-size: 4rem;
  color: #2d7a4f;
  animation: carSuccessPop 0.5s cubic-bezier(0.175,0.885,0.32,1.275) both;
}

.con-success-msg h4 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.con-success-msg p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 380px;
  margin: 0;
}

.con-success-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
  border: 1.5px solid var(--brand-primary);
  padding: 0.65rem 1.5rem;
  border-radius: 100px;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.con-success-home:hover {
  background: var(--brand-primary);
  color: #fff;
}

/* ── Right column — Map ── */
.con-right {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.con-map-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 32px var(--shadow);
}

.con-map-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.con-map-pin {
  font-size: 1.5rem;
  color: var(--brand-primary);
  flex-shrink: 0;
}

[data-theme="dark"] .con-map-pin { color: #8899cc; }

.con-map-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.1rem;
}

.con-map-sub {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

.con-map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--brand-primary);
  background: rgba(33,45,99,0.07);
  border: 1.5px solid rgba(33,45,99,0.14);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-left: auto;
  white-space: nowrap;
}

.con-map-directions-btn:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

[data-theme="dark"] .con-map-directions-btn {
  color: #a8b4cc;
  background: rgba(168,180,204,0.07);
  border-color: rgba(168,180,204,0.14);
}

.con-map-frame {
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
}

.con-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.con-map-address-strip {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.83rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.con-map-address-strip i {
  color: #e53e3e;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* WhatsApp CTA card */
.con-wa-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--card-bg);
  border: 1.5px solid #25d366;
  border-radius: 16px;
  padding: 1.35rem 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37,211,102,0.12);
  transition: box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.con-wa-card:hover {
  box-shadow: 0 10px 36px rgba(37,211,102,0.22);
  transform: translateY(-3px);
  background: rgba(37,211,102,0.04);
}

.con-wa-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}

.con-wa-content { flex: 1; }

.con-wa-content h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.con-wa-content p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

.con-wa-arrow {
  font-size: 1.2rem;
  color: #25d366;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.con-wa-card:hover .con-wa-arrow {
  transform: translateX(4px);
}

/* ── Floating WhatsApp FAB ── */
.con-wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 500;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}

.con-wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 40px rgba(37,211,102,0.65);
  color: #fff;
}

/* Pulse ring on FAB */
.con-wa-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: waPulse 2s ease-in-out infinite;
}

@keyframes waPulse {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.35); opacity: 0; }
}

/* ==========================================
   CONTACT — RESPONSIVE
   ========================================== */
@media (max-width: 1100px) {
  .con-main-grid { gap: 3.5rem; }
}

@media (max-width: 900px) {
  .con-main-grid { grid-template-columns: 1fr; gap: 3rem; }
  .con-right { position: static; }
  .con-map-frame { height: 340px; }
}

@media (max-width: 767px) {
  .con-cards-grid { grid-template-columns: 1fr; }
  .con-form-row { grid-template-columns: 1fr; gap: 0; }
  .con-form-wrap { padding: 1.5rem; }
  .con-map-header { flex-direction: column; align-items: flex-start; }
  .con-map-directions-btn { margin-left: 0; }
  .con-map-frame { height: 280px; }
  .con-wa-float { bottom: 1.25rem; right: 1.25rem; width: 50px; height: 50px; font-size: 1.35rem; }
}

@media (max-width: 480px) {
  .con-social-strip { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .con-map-frame { height: 240px; }
}


/* ==========================================
   FEATURED BRANDS SHOWCASE
   ========================================== */
.brand-showcase {
  padding: 4.5rem 0;
  background: #faf9f7;
}
[data-theme="dark"] .brand-showcase {
  background: #1c1c1e;
}
.brand-showcase-header {
  text-align: center;
  margin-bottom: 2.75rem;
}
.brand-showcase-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0.3rem 0 0;
  line-height: 1.2;
}
.brand-showcase-title em {
  font-style: italic;
  color: #e6242e;
}
.brand-logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

}
.brand-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 230px;
  min-height: 150px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
[data-theme="dark"] .brand-logo-card {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.brand-logo-card img {
     /* max-height: 140px; */
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 991px) {
  .brand-logo-card {
    width: 240px;
    min-height: 130px;
  }

}
@media (max-width: 767px) {
  .brand-showcase { padding: 3rem 0; }
  .brand-showcase-header { margin-bottom: 2rem; }
  .brand-logo-card {
    width: calc(50% - 0.75rem);
    min-width: 150px;
    min-height: 120px;
    padding: 1.1rem 1.25rem;
  }

}
@media (max-width: 480px) {
.brand-logo-card img {width: 150px !important;}

  .brand-logo-card {
    width: calc(50% - 0.625rem);
    padding: 0.9rem 1rem;
    min-height: 100px;
  }

}
.brand-logo-card img {width:190px !important;height:auto !important;}


@media (max-width: 480px) {
.brand-logo-card img {width: 150px !important;}


}