/* ============================================
   DANA GROUP — Premium Corporate Website
   ============================================ */

/* ---- Google Fonts ---- */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600;700&family=Bebas+Neue&display=swap");

/* ---- CSS Variables ---- */
:root {
  --primary: #b3b3b3;
  --secondary: #6f6f76;
  --dark: #0b0f14;
  --darker: #070a0e;
  --light: #f5f5f5;
  --accent: #d7d7d7;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-strong: rgba(255, 255, 255, 0.15);
  --text-muted: rgba(179, 179, 179, 0.6);

  --font-display: "Cormorant Garamond", serif;
  --font-body: "Inter", sans-serif;
  --font-impact: "Bebas Neue", sans-serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 4px;
  --radius-lg: 12px;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--dark);
  color: var(--light);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold);
  color: var(--dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--darker);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 2px;
}

/* ============================================
   LOADER
   ============================================ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--darker);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.loader-logo {
  font-family: var(--font-impact);
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.3em;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  opacity: 0;
  transform: translateY(20px);
  animation: loaderLogoReveal 1s ease forwards 0.3s;
}

.loader-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.5em;
  color: white;
  text-transform: uppercase;
  opacity: 0;
  text-align: center;
  animation: loaderLogoReveal 1s ease forwards 0.7s;
}

.loader-bar-wrap {
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: loaderLogoReveal 0.5s ease forwards 1s;
}

.loader-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.05s linear;
}

.loader-percent {
  font-family: var(--font-impact);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0;
  animation: loaderLogoReveal 0.5s ease forwards 1s;
}

.loader-pulse {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.1);
  animation: pulse 2s ease-in-out infinite;
}

.loader-pulse:nth-child(2) {
  animation-delay: 0.5s;
  width: 450px;
  height: 450px;
}

.loader-pulse:nth-child(3) {
  animation-delay: 1s;
  width: 600px;
  height: 600px;
}

@keyframes loaderLogoReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.1;
  }
}

.loader-exit {
  animation: loaderExit 0.8s ease forwards;
}

@keyframes loaderExit {
  to {
    opacity: 0;
    pointer-events: none;
    transform: scale(1.05);
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.5s ease;
}

#navbar.scrolled {
  background: rgba(7, 10, 14, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  max-width: 1600px;
  margin: 0 auto;
}

/* .nav-logo {
  font-family: var(--font-impact);
  font-size: 1.8rem;
  letter-spacing: 0.25em;
  color: var(--light);
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo span {
  font-family: var(--font-body);
  font-size: 0.5rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  font-weight: 400;
  margin-top: 2px;
} */

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;

  padding: 16px 26px;
  border-radius: 26px;

  background: linear-gradient(
    135deg,
    rgba(10, 16, 28, 0.98),
    rgba(18, 28, 46, 0.84)
  );

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 215, 115, 0.22);

  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.32),
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(255, 215, 115, 0.05);
}

.nav-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at top left,
    rgba(255, 223, 118, 0.18),
    transparent 42%
  );
  pointer-events: none;
  opacity: 0.9;
}

.nav-logo::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 30px rgba(255, 215, 115, 0.18);
  pointer-events: none;
}

.nav-logo img {
  height: 60px;
  width: auto;
  display: block;
  position: relative;
  z-index: 1;

  filter: brightness(1.3) saturate(1.25) contrast(1.4)
    drop-shadow(0 3px 14px rgba(255, 255, 255, 0.2))
    drop-shadow(0 10px 30px rgba(0, 0, 0, 0.65));

  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.nav-logo:hover {
  transform: translateY(-1px);
}

.nav-logo:hover img {
  transform: scale(1.06);
}

/* mobile device  */
@media (max-width: 576px) {
  .nav-logo img {
    height: 40px;
  }

  .nav-logo {
    padding: 5px 12px;
    border-radius: 10px;
  }
}

/*.nav-logo{*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/

/*.nav-logo img{*/
/*    height: 80px; */
/*    width: auto;*/
/*    display: block;*/
/*}*/

/* .nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;

} */

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  padding: 5px;
  border-radius: 4px;

  /* Make text clear over image */
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.9),
    0 2px 8px rgba(0, 0, 0, 0.7);

  transition: all 0.3s ease;
}

/* .nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  position: relative;
  padding-bottom: 4px;
} */

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--light);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mega Menu */
.nav-item-mega {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 1.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(11, 15, 20, 0.98);
  backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 600px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.nav-item-mega:hover .mega-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.mega-item:hover {
  background: var(--glass-bg);
}

.mega-icon {
  width: 36px;
  height: 36px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.mega-item:hover .mega-icon {
  background: rgba(201, 168, 76, 0.2);
}

.mega-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--primary);
  transition: var(--transition);
}

.mega-item:hover .mega-label {
  color: var(--light);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 1px;
  background: var(--light);
  transition: all 0.4s ease;
  transform-origin: center;
}

.hamburger span:nth-child(1) {
  width: 28px;
}

.hamburger span:nth-child(2) {
  width: 20px;
}

.hamburger span:nth-child(3) {
  width: 24px;
}

.hamburger.active span:nth-child(1) {
  width: 28px;
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.active span:nth-child(3) {
  width: 28px;
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 10, 14, 0.98) 0%,
    rgba(11, 15, 20, 0.98) 100%
  );
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 6rem 2rem 2.5rem;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

/* Close Button */
.mobile-nav-close {
  position: absolute;
  top: 2rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  cursor: pointer;
  z-index: 10;
}

.mobile-nav-close:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(90deg);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

.mobile-nav-close i {
  font-size: 1.3rem;
  font-weight: 300;
}

/* Mobile Nav Brand */
.mobile-nav-brand {
  text-align: center;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.1s;
}

.mobile-nav.open .mobile-nav-brand {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(1.2) drop-shadow(0 4px 20px rgba(201, 168, 76, 0.3));
}

.mobile-nav-logo-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.6;
}

/* Mobile Nav Links */
.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
}

.mobile-nav-links li {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-nav.open .mobile-nav-links li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav.open .mobile-nav-links li:nth-child(1) {
  transition-delay: 0.15s;
}

.mobile-nav.open .mobile-nav-links li:nth-child(2) {
  transition-delay: 0.2s;
}

.mobile-nav.open .mobile-nav-links li:nth-child(3) {
  transition-delay: 0.25s;
}

.mobile-nav.open .mobile-nav-links li:nth-child(4) {
  transition-delay: 0.3s;
}

.mobile-nav.open .mobile-nav-links li:nth-child(5) {
  transition-delay: 0.35s;
}

.mobile-nav.open .mobile-nav-links li:nth-child(6) {
  transition-delay: 0.4s;
}

.mobile-nav.open .mobile-nav-links li:nth-child(7) {
  transition-delay: 0.45s;
}

.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 400;
  color: var(--primary);
  letter-spacing: 0.08em;
  transition: all 0.4s ease;
  display: inline-block;
  position: relative;
  padding: 0.3rem 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.mobile-nav-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.mobile-nav-links a:hover {
  color: var(--gold);
  transform: translateX(10px);
  text-shadow: 0 0 30px rgba(201, 168, 76, 0.5);
}

.mobile-nav-links a:hover::before {
  width: 1.5rem;
}

/* Mobile Nav Footer */
.mobile-nav-footer {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.5s;
  margin-top: 2rem;
  padding-bottom: 1rem;
}

.mobile-nav.open .mobile-nav-footer {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1rem;
}

.mobile-nav-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
  z-index: 0;
}

#hero-video.loaded {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 10, 14, 0.85) 0%,
    rgba(7, 10, 14, 0.5) 50%,
    rgba(7, 10, 14, 0.8) 100%
  );
}

.hero-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--dark), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1600px;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  padding: 12px 28px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;

  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;

  color: #ffd700;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);

  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.hero-title {
  font-family: var(--font-impact);
  font-size: clamp(4rem, 12vw, 10rem);
  letter-spacing: 0.15em;
  line-height: 0.95;
  color: var(--light);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
}

.hero-title-outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
}

.hero-tagline {
  font-family: "Playfair Display", serif;
  /* font-size: clamp(1.1rem, 2.5vw, 1.2rem); */
  font-size: 1.8rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.98);

  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.8),
    0 6px 25px rgba(0, 0, 0, 0.5),
    0 12px 40px rgba(0, 0, 0, 0.3);

  opacity: 0;
  transform: translateY(20px);
}

.hero-sub {
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.9),
    0 4px 20px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(20px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* .hero-sub .separator {
  color: var(--gold);
  margin: 0 0.5em;
  font-weight: 900;
} */

/* .hero-sub .separator {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 0.75em;
  vertical-align: middle;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
} */

.hero-sub .separator {
  color: var(--gold);
  margin: 0 0.6em;
  font-size: 1.15em;
  font-weight: 900;
  display: inline-block;
  transform: translateY(-1px);
  text-shadow: 0 0 6px rgba(212, 175, 55, 0.45);
}

@media (max-width: 768px) {
  .hero-sub {
    font-size: 0.72rem;
    line-height: 2.2;
    padding: 0 1.5rem;
    text-align: center;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 480px) {
  .hero-sub {
    font-size: 0.68rem;
    padding: 0 1rem;
    line-height: 2.4;
  }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

/* Buttons */
.btn-primary-gold {
  background: var(--gold);
  color: var(--dark);
  padding: 0.9rem 2.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
  color: var(--dark);
}

.btn-ghost {
  border: 1px solid var(--glass-border-strong);
  color: var(--light);
  padding: 0.9rem 2.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  color: var(--light);
}

/* Tablet */
@media (max-width: 768px) {
  .hero-eyebrow {
    padding: 10px 22px;
    font-size: 0.8rem;
    letter-spacing: 0.22em;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-eyebrow {
    padding: 8px 18px;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    border-radius: 40px;
    max-width: 90%;
    text-align: center;
  }

  .hero-tagline {
    font-size: 1rem;
  }
}

/* Particles */
#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 3s;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1px solid var(--glass-border-strong);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

.scroll-label {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--secondary);
  text-transform: uppercase;
}

@keyframes scrollWheel {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(8px);
    opacity: 0.3;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
  }
}

/* ============================================
   SECTION COMMON
   ============================================ */
section {
  overflow-x: hidden;
}

#services-section {
  overflow-x: visible;
}

.section-pad {
  padding: 2rem 0;
}

.section-pad-sm {
  padding: 1rem 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

/* ---- Contact Hero ---- */
.contact-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
  text-align: center;
  padding-top: 10rem;
  padding-bottom: 6rem;
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--light);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.contact-hero-title em {
  font-style: italic;
  color: var(--gold);
}

.contact-hero-text {
  font-size: 1.1rem;
  color: var(--primary);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Contact Main Grid ---- */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

/* ---- Contact Info Cards ---- */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-strong);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  background: rgba(201, 168, 76, 0.05);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
  background: rgba(201, 168, 76, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
}

.contact-info-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 0.5rem;
}

.contact-info-content p {
  font-size: 0.95rem;
  color: var(--primary);
  line-height: 1.6;
  margin: 0;
}

/* ---- Contact Form ---- */
.contact-form-wrap {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 0.5rem;
}

.form-header p {
  font-size: 0.95rem;
  color: var(--primary);
  margin: 0;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form .form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--light);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-form .form-control {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(11, 15, 20, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
  background: rgba(11, 15, 20, 0.8);
}

.contact-form .form-control::placeholder {
  color: var(--secondary);
}

.contact-form select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a84c' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

/* ---- Map Section ---- */
.map-section {
  padding: 5rem 0;
  background: var(--darker);
}

.map-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.map-header {
  text-align: center;
  margin-bottom: 3rem;
}

.map-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--light);
  margin-bottom: 1rem;
}

.map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.map-wrapper iframe {
  display: block;
  filter: grayscale(20%) contrast(1.1);
  transition: filter 0.4s ease;
}

.map-wrapper:hover iframe {
  filter: grayscale(0%) contrast(1);
}

/* Map Overlay Card */
.map-overlay-card {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(11, 15, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  max-width: 320px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  z-index: 10;
  transition: all 0.4s ease;
}

.map-overlay-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
  border-color: var(--gold);
}

.map-overlay-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 10px;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.map-overlay-content h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 0.5rem;
}

.map-overlay-content p {
  font-size: 0.9rem;
  color: var(--primary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.map-link:hover {
  color: var(--gold-light);
  gap: 0.75rem;
}

/* ---- Tablet (992px and below) ---- */
@media (max-width: 992px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-form-wrap {
    padding: 2.5rem;
  }

  .map-overlay-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin: -3rem auto 0;
    max-width: 400px;
  }
}

/* ---- Mobile (768px and below) ---- */
@media (max-width: 768px) {
  .contact-hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .contact-form-wrap {
    padding: 2rem;
  }

  .contact-info-card {
    padding: 1.25rem;
  }

  .map-container {
    padding: 0 1.5rem;
  }

  .map-wrapper iframe {
    height: 350px;
  }

  .map-overlay-card {
    margin: -2rem 1rem 0;
    padding: 1.25rem;
  }
}

/* ---- Small Mobile (480px and below) ---- */
@media (max-width: 480px) {
  .contact-hero {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }

  .contact-info-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .map-wrapper iframe {
    height: 300px;
  }

  .map-overlay-card {
    margin: -1.5rem 0.5rem 0;
    padding: 1rem;
  }
}

/* ============================================
   INDUSTRY VIBE BACKGROUND (global)
   - Adds subtle grid/texture overlays behind content.
   - No layout changes, only visuals.
   ============================================ */
.section-bg {
  position: relative;
}

/* Apply to major sections automatically */
#about,
#businesses,
#stats,
#timeline,
#companies,
#partners,
#portfolio,
#leadership,
#vision,
#contact,
#footer {
  position: relative;
}

/* Global subtle industrial grid/texture */
#about::after,
#businesses::after,
#stats::after,
#timeline::after,
#companies::after,
#partners::after,
#portfolio::after,
#leadership::after,
#vision::after,
#contact::after,
#footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(rgba(201, 168, 76, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.06) 1px, transparent 1px),
    radial-gradient(
      circle at 20% 10%,
      rgba(201, 168, 76, 0.1),
      transparent 45%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(64, 128, 255, 0.08),
      transparent 45%
    );
  background-size:
    80px 80px,
    80px 80px,
    auto,
    auto;
  opacity: 0.55;
}

/* Keep actual content above the decorative overlay */
#about > *,
#businesses > *,
#stats > *,
#timeline > *,
#companies > *,
#partners > *,
#portfolio > *,
#leadership > *,
#vision > *,
#contact > *,
#footer > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  #about::after,
  #businesses::after,
  #stats::after,
  #timeline::after,
  #companies::after,
  #partners::after,
  #portfolio::after,
  #leadership::after,
  #vision::after,
  #contact::after,
  #footer::after {
    background-size:
      60px 60px,
      60px 60px,
      auto,
      auto;
    opacity: 0.45;
  }
}

.section-pad-sm {
  padding: 1rem 0;
}

.container-wide {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px;
  /* margin-top: 50px; */
  /* padding: 0 3rem; */
}

.container-page {
  max-width: 1600px;
  margin: 0 auto;
  margin-top: 80px;
  padding: 30px;
}

.section-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--light);
}

.section-heading em {
  font-style: italic;
  color: var(--primary);
}

.section-heading strong {
  font-weight: 700;
  color: var(--gold);
}

.section-body {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--primary);
  max-width: 540px;
}

/* Gold line divider */
.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.gold-line-center {
  display: block;
  margin: 1.5rem auto !important;
}

/* ============================================
   ABOUT / STORY SECTION (New)
   ============================================ */
#about {
  background: var(--darker);
  position: relative;
}

#about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.about-story {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4.5rem;
  align-items: center;
  /* justify-content: center; */
}

.about-video-wrap {
  position: relative;
}

.about-video-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.about-video {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.05);
}

.about-video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(201, 168, 76, 0.18),
      transparent 35%
    ),
    linear-gradient(
      to top,
      rgba(7, 10, 14, 0.92),
      rgba(7, 10, 14, 0.2) 55%,
      rgba(7, 10, 14, 0.55)
    );
  pointer-events: none;
}

.about-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.98);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.35);
  background: rgba(11, 15, 20, 0.35);
  backdrop-filter: blur(10px);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.35s ease;
  opacity: 0;
  pointer-events: none;
}

.about-video-frame:hover .about-video-play {
  transform: translate(-50%, -50%) scale(1.05);
  border-color: rgba(201, 168, 76, 0.65);
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.12);
  opacity: 1;
  pointer-events: auto;
}

.about-video-play i {
  transform: translateX(1px);
}

.about-video-badges {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.about-badge {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-content {
  position: relative;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.2rem;
}

.about-feature {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}

.about-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.35);
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.about-feature-title {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.about-feature-text {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.about-story-actions {
  margin-top: 2.2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.about-story-stats {
  display: flex;
  gap: 1.2rem;
}

.mini-stat {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  min-width: 120px;
}

.mini-stat-num {
  font-family: var(--font-impact);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}

.mini-stat-lbl {
  margin-top: 0.25rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--secondary);
}

/* about reveal (separate from existing data-reveal logic) */
[data-about-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

[data-about-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   BUSINESSES SECTION
   ============================================ */
#businesses {
  background: var(--dark);
  position: relative;
}

.businesses-header {
  text-align: center;
  margin-bottom: 4rem;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 14px;
  background: var(--glass-border);
  border-radius: var(--radius-lg);
}

.biz-card {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
}

.biz-card:hover {
  z-index: 2;
  transform: translateY(-10px);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(201, 168, 76, 0.2);
  border-color: rgba(201, 168, 76, 0.5);
}

.biz-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 1;
}

.biz-card:hover .biz-card-video,
.biz-card.is-video-playing .biz-card-video {
  opacity: 1;
  transform: scale(1.1);
}

.biz-card-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: all 0.6s ease;
}

.biz-card-with-video:hover .biz-card-poster {
  opacity: 0;
  transform: scale(1.08);
}

.biz-card-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  opacity: 0.08;
  transition: all 0.5s ease;
  filter: grayscale(1) blur(2px);
}

.biz-card:hover .biz-card-bg {
  opacity: 0;
  transform: scale(1.3);
}

.biz-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 10, 14, 0.95) 0%,
    rgba(7, 10, 14, 0.4) 50%,
    transparent 100%
  );
  transition: background 0.5s ease;
}

.biz-card:hover .biz-card-overlay {
  background: linear-gradient(
    to top,
    rgba(7, 10, 14, 0.95) 0%,
    rgba(7, 10, 14, 0.6) 60%,
    rgba(7, 10, 14, 0.2) 100%
  );
}

.biz-glass-border {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.biz-card:hover .biz-glass-border {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: inset 0 0 40px rgba(201, 168, 76, 0.05);
}

.biz-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.4rem;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(7, 10, 14, 0.95) 0%,
    rgba(7, 10, 14, 0.7) 60%,
    transparent 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.biz-icon {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  transform: translateY(0);
  transition: all 0.4s ease;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(201, 168, 76, 0.4));
}

.biz-card:hover .biz-icon {
  transform: translateY(-4px) scale(1.15);
}

.biz-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 0.35rem;
  transition: color 0.3s ease;
}

.biz-card:hover .biz-title {
  color: var(--gold-light);
}

.biz-desc {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
}

.biz-card:hover .biz-desc {
  max-height: 55px;
  opacity: 1;
  margin-top: 0.25rem;
}

.biz-arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gold);
  opacity: 0;
  transform: scale(0.7) rotate(-45deg);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  background: rgba(201, 168, 76, 0.15);
  backdrop-filter: blur(10px);
}

.biz-card:hover .biz-arrow {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  border-color: var(--gold);
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.5);
}

/* ============================================
   STATS SECTION
   ============================================ */
#stats {
  background: var(--darker);
  position: relative;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.stat-item {
  padding: 4rem 2rem;
  text-align: center;
  border-right: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 0;
  background: var(--gold);
  transition: height 0.6s ease;
}

.stat-item.animated::before {
  height: 30px;
}

.stat-number {
  font-family: var(--font-impact);
  font-size: clamp(3rem, 5vw, 5rem);
  letter-spacing: 0.05em;
  color: var(--light);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-suffix {
  color: var(--gold);
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 500;
}

.stat-sublabel {
  display: block;
  font-size: 0.62rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  letter-spacing: 0.1em;
}

/* ============================================
   IMPACT / PARALLAX SECTION
   ============================================ */
#impact {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.impact-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0b0f14, #1a1f2e);
}

.impact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 10, 14, 0.7);
}

.impact-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.impact-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--light);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.impact-heading em {
  font-style: italic;
  color: var(--gold);
}

.impact-sub {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--secondary);
}

.impact-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.impact-stat {
  text-align: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.impact-stat-num {
  font-family: var(--font-impact);
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  display: block;
  line-height: 1;
}

.impact-stat-lbl {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-top: 0.4rem;
}

/* Grid lines background decoration */
.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* ============================================
   SECTION TRANSITION LINES
   ============================================ */
.section-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--glass-border),
    transparent
  );
}

/* ============================================
   OUR PARTNERS SECTION (Auto-scrolling logos)
   ============================================ */
#partners {
  background: var(--darker);
  padding: 5rem 0;
  overflow: hidden;
  position: relative;
}

#partners::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.partners-header {
  text-align: center;
}

.partners-slider-wrap {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

/* Fade masks on left and right edges */
.partners-slider-wrap::before,
.partners-slider-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partners-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--darker), transparent);
}

.partners-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--darker), transparent);
}

.partners-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: partnersScroll 40s linear infinite;
}

/* Pause animation on hover */
.partners-track:hover {
  animation-play-state: paused;
}

@keyframes partnersScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.partner-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 2.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all 0.4s ease;
  min-width: 200px;
  backdrop-filter: blur(10px);
}

.partner-logo-inner:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.06);
  transform: translateY(-5px);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(201, 168, 76, 0.08);
}

.partner-logo-inner {
  gap: 0;
}

/* Partners: remove icon/name styles (we will show image logos instead) */
.partner-icon,
.partner-name {
  display: none;
}

/* Partner logo image support */
.partner-logo-img {
  width: 160px;
  height: 64px;
  object-fit: contain;
  filter: grayscale(0.2);
  opacity: 0.85;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    filter 0.35s ease;
}

.partner-logo-inner:hover .partner-logo-img {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.05);
}

/* keep layout sizes consistent */
.partner-logo-inner {
  justify-content: center;
}

/* Responsive for partners */
@media (max-width: 992px) {
  .partner-logo-inner {
    padding: 1.5rem 1.5rem;
    min-width: 160px;
  }

  .partner-icon {
    font-size: 2.5rem;
  }

  .partner-name {
    font-size: 0.72rem;
  }

  .partners-slider-wrap::before,
  .partners-slider-wrap::after {
    width: 80px;
  }
}

@media (max-width: 768px) {
  #partners {
    padding: 4rem 0 3rem;
  }

  .partner-logo-inner {
    padding: 1.2rem 1rem;
    min-width: 140px;
    gap: 0.75rem;
  }

  .partner-icon {
    font-size: 2rem;
  }

  .partner-name {
    font-size: 0.65rem;
  }

  .partners-track {
    gap: 2rem;
  }

  .partners-slider-wrap::before,
  .partners-slider-wrap::after {
    width: 50px;
  }
}

@media (max-width: 480px) {
  .partner-logo-inner {
    padding: 1rem 0.8rem;
    min-width: 120px;
  }

  .partner-icon {
    font-size: 1.8rem;
  }

  .partner-name {
    font-size: 0.58rem;
    letter-spacing: 0.05em;
  }
}

.timeline-header {
  text-align: center;
  margin-bottom: 5rem;
}

.timeline-track-wrap {
  position: relative;
  overflow: hidden;
}

.timeline-progress {
  position: absolute;
  top: 140px;
  left: 0;
  height: 1px;
  background: var(--gold);
  z-index: 3;
  transition: width 0.3s ease;
  pointer-events: none;
}

.timeline-track {
  display: flex;
  padding: 0 15vw;
  gap: 6rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.timeline-track::-webkit-scrollbar {
  display: none;
}

.timeline-track.grabbing {
  cursor: grabbing;
}

.timeline-item {
  flex-shrink: 0;
  width: 300px;
  position: relative;
  padding-top: 160px;
}

.timeline-dot {
  position: absolute;
  top: 125px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--secondary);
  background: var(--dark);
  transition: all 0.4s ease;
  z-index: 2;
}

.timeline-item.active .timeline-dot {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.5);
}

.timeline-year {
  font-family: var(--font-impact);
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.4s ease;
}

.timeline-item.active .timeline-year {
  color: var(--gold);
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 0.5rem;
}

.timeline-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.timeline-media {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 120px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  opacity: 0.4;
  transition: opacity 0.4s ease;
}

.timeline-item.active .timeline-media {
  opacity: 1;
}

.timeline-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline-media-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--darker), var(--dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  opacity: 0.5;
}

.timeline-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.timeline-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--primary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.timeline-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================
   GROUP COMPANIES SECTION (Netflix style)
   ============================================ */
#companies {
  background: var(--darker);
  padding: 2rem 0;
}

.companies-slider-wrap {
  position: relative;
  margin-top: 3rem;
  overflow: visible;
  padding-left: 1rem;
  padding-right: 1rem;
}

.companies-slider {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 1.25rem;
  padding: 0.5rem 0.5rem;
  overflow: visible;
  scrollbar-width: none;
  cursor: default;
}

.companies-slider::-webkit-scrollbar {
  display: none;
}

.companies-slider.grabbing {
  cursor: grabbing;
}

.company-card {
  width: 100%;
  min-height: 170px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  border: 1px solid rgba(201, 168, 76, 0.16);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(245, 242, 236, 0.94)
  );
}

.company-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  border-color: rgba(201, 168, 76, 0.42);
  z-index: 2;
}

.company-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.96),
    rgba(248, 245, 239, 0.9)
  );
}

.company-card-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  font-size: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 10, 14, 0.9), transparent);
}

.company-logo-wrap {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 500px;
  height: auto;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.company-logo-img {
  width: 100%;
  height: auto;
  max-height: 90px;
  object-fit: contain;
  filter: brightness(1) contrast(1.08);
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.company-card:hover .company-logo-img {
  filter: brightness(1.12) contrast(1.12);
  transform: scale(1.04);
}

.company-card-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.8rem 0.9rem 0.95rem;
  background: linear-gradient(
    to top,
    rgba(8, 12, 18, 0.92),
    rgba(8, 12, 18, 0.25),
    transparent
  );
}

.company-name {
  font-family: var(--font-impact);
  font-size: 1rem;
  letter-spacing: 0.09em;
  color: var(--light);
  margin-bottom: 0.15rem;
}

.company-desc {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .companies-slider-wrap {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .companies-slider {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
  }
}

@media (max-width: 768px) {
  .companies-slider-wrap {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .companies-slider {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 1rem;
  }

  .company-card {
    min-height: 150px;
  }

  .company-logo-wrap {
    max-width: 180px;
    width: 60%;
  }

  .company-logo-img {
    max-height: 70px;
  }
}

@media (max-width: 480px) {
  .companies-slider {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .company-logo-wrap {
    width: 62%;
  }

  .company-logo-img {
    max-height: 55px;
  }

  .company-card {
    min-height: 130px;
  }

  .company-name {
    font-size: 0.8rem;
  }

  .company-desc {
    font-size: 0.62rem;
  }
}

.company-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.75rem;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 20px;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================
    PROJECT PORTFOLIO
    ============================================ */
#portfolio {
  background: var(--dark);
  padding: 1rem 0;
}

.portfolio-filters-wrapper {
  padding: 10px 0;
  margin-bottom: 3.5rem;
  width: 100%;
  overflow: visible;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  justify-content: center;
}

.filter-btn {
  padding: 0.65rem 1.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  border: 1px solid rgb(92, 81, 81);
  border-radius: 24px;
  background: #0b0f14;
  /* background: rgba(103, 27, 189, 0.02); */
  position: relative;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  cursor: pointer;
  flex: 0 0 auto;
}

.filter-btn:hover {
  color: var(--light);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.filter-btn.active {
  color: var(--darker);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold);
  box-shadow:
    0 6px 20px rgba(201, 168, 76, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.portfolio-item {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.portfolio-item.hidden {
  display: none !important;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(201, 168, 76, 0.15);
}

.portfolio-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--darker);
  overflow: hidden;
  cursor: pointer;
}

.portfolio-thumb .portfolio-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 10, 14, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.portfolio-item:hover .portfolio-video-overlay {
  background: rgba(7, 10, 14, 0.2);
}

.portfolio-play-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.9);
  color: var(--darker);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
  transition: all 0.3s ease;
  pointer-events: none;
}

.portfolio-item:hover .portfolio-play-btn {
  transform: scale(1.1);
  background: var(--gold-light);
}

.portfolio-item.is-playing .portfolio-play-btn {
  opacity: 0;
  transform: scale(0.8);
}

.portfolio-thumb:hover .portfolio-play-btn {
  opacity: 0;
  transform: scale(0.8);
}

.portfolio-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
}

.portfolio-card-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

.portfolio-card-title {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.portfolio-item:hover .portfolio-card-title {
  color: var(--gold-light);
}

.portfolio-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.portfolio-card-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.25rem;
}

.btn-view-details {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.btn-view-details i {
  transition: transform 0.3s ease;
}

.btn-view-details:hover {
  color: var(--gold-light);
}

.btn-view-details:hover i {
  transform: translateX(5px);
}

.portfolio-card-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

.portfolio-card-title {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.portfolio-item:hover .portfolio-card-title {
  color: var(--gold-light);
}

.portfolio-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.portfolio-card-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.25rem;
}

.btn-view-details {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.btn-view-details i {
  transition: transform 0.3s ease;
}

.btn-view-details:hover {
  color: var(--gold-light);
}

.btn-view-details:hover i {
  transform: translateX(5px);
}

/* Detail video style */
.project-detail-video-wrap {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--darker);
  border: 1px solid var(--glass-border);
  margin-bottom: 2.5rem;
}

.project-detail-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Grid overrides */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .portfolio-filters {
    gap: 0.5rem;
    padding: 5px;
  }

  .filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portfolio-filters-wrapper {
    margin-bottom: 2.5rem;
  }

  .portfolio-filters {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 5px;
    justify-content: center;
  }

  .filter-btn {
    padding: 0.55rem 1.1rem;
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    flex: 0 1 auto;
    min-width: 0;
  }

  .portfolio-card-body {
    padding: 1.5rem;
  }

  .portfolio-card-title {
    font-size: 1.1rem;
  }

  .portfolio-card-desc {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .portfolio-filters-wrapper {
    margin-bottom: 2rem;
  }

  .portfolio-filters {
    gap: 0.4rem;
    padding: 4px;
  }

  .filter-btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.62rem;
    letter-spacing: 0.05em;
    border-radius: 20px;
  }

  .portfolio-card-body {
    padding: 1.25rem;
  }

  .portfolio-card-title {
    font-size: 1rem;
  }

  .portfolio-card-desc {
    font-size: 0.82rem;
    margin-bottom: 1rem;
  }

  .portfolio-card-footer {
    padding-top: 1rem;
  }
}

@media (min-width: 1440px) {
  .portfolio-grid {
    gap: 2.5rem;
  }

  .portfolio-filters {
    gap: 0.8rem;
  }

  .filter-btn {
    padding: 0.75rem 1.8rem;
    font-size: 0.78rem;
  }
}

/* ============================================
   LEADERSHIP SECTION
   ============================================ */
#leadership {
  background: var(--darker);
  padding: 5rem 0;
  position: relative;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.leadership-portrait {
  position: relative;
}

.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark), var(--darker));
  border: 1px solid var(--glass-border);
}

.portrait-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--secondary);
}

.portrait-placeholder .portrait-icon {
  font-size: 6rem;
  opacity: 0.5;
}

.portrait-overlay-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(7, 10, 14, 0.95), transparent);
  padding: 2rem;
}

.portrait-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--light);
}

.portrait-title {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.portrait-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  backdrop-filter: blur(10px);
}

.leadership-content .quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--primary);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.btn-video-message {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  border: 1px solid var(--glass-border-strong);
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light);
  background: var(--glass-bg);
  transition: var(--transition);
  margin-top: 1rem;
}

.btn-video-message:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.play-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Team Cards */
.leadership-showcase {
  position: relative;
  padding: 0.5rem 0 2rem;
  margin-top: 0;
}

.team-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0 auto;
  padding: 0.5rem 0 0;
}

.team-card {
  flex: 1 1 190px;
  max-width: 200px;
  text-align: center;
  padding: 1.5rem 1rem 1.1rem;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 22px;
  background: rgba(12, 18, 28, 0.45);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.22);
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 2px solid rgba(201, 168, 76, 0.35);
  margin: 0 auto 1rem;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.team-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 0.35rem;
  line-height: 1.5;
}

.team-role {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
}

@media (max-width: 768px) {
  .leadership-showcase {
    padding-top: 0.5rem;
  }

  .team-row {
    gap: 1rem;
    padding-top: 0.5rem;
  }

  .team-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 150px;
  }
}

@media (max-width: 480px) {
  .team-row {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.75rem;
    scroll-snap-type: x proximity;
  }

  .team-row::-webkit-scrollbar {
    display: none;
  }

  .team-card {
    flex: 0 0 78%;
    max-width: 220px;
    scroll-snap-align: start;
  }
}

/* ============================================
   FUTURE VISION SECTION
   ============================================ */
#vision {
  background: var(--darker);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

#vision-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vision-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.vision-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.vision-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(201, 168, 76, 0.06),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vision-card:hover::before {
  opacity: 1;
}

.vision-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.vision-number {
  font-family: var(--font-impact);
  font-size: 4rem;
  color: rgba(201, 168, 76, 0.08);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  letter-spacing: 0.1em;
  transition: color 0.4s ease;
}

.vision-card:hover .vision-number {
  color: rgba(201, 168, 76, 0.15);
}

.vision-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}

.vision-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 0.75rem;
}

.vision-text {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.vision-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.15;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
  background: var(--dark);
  padding: 5.5rem 0 6rem;
}

#news-events {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info .section-heading {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--gold);
  transition: var(--transition);
}

.contact-item:hover .contact-icon-wrap {
  background: rgba(201, 168, 76, 0.15);
}

.contact-item-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.2rem;
}

.contact-item-value {
  font-size: 0.9rem;
  color: var(--primary);
}

.map-placeholder {
  margin-top: 2rem;
  width: 100%;
  height: 220px;
  background: var(--darker);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--secondary);
  font-size: 2rem;
  overflow: hidden;
  position: relative;
}

.map-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 30px 30px;
}

.map-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.social-link {
  width: 42px;
  height: 42px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--secondary);
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

/* Contact Form */
.contact-form {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.form-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  outline: none;
}

.form-control:focus {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.07);
  background: rgba(201, 168, 76, 0.03);
}

.form-control::placeholder {
  color: var(--text-muted);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Contact form inputs sometimes flip to browser default text color when focused/typed */
#contact .contact-form .form-control,
#contact .contact-form select.form-select,
#contact .contact-form textarea.form-control,
#contact .contact-form input.form-control {
  color: var(--light) !important;
}

#contact .contact-form .form-control::placeholder {
  color: var(--text-muted) !important;
}

#contact .contact-form select.form-select {
  color: var(--light) !important;
}

#contact .contact-form select.form-select option {
  color: var(--light) !important;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236F6F76' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;

  /* Keep select text readable on dark background (including when dropdown opens) */
  color: var(--light);
  background-color: rgba(255, 255, 255, 0.03);
}

.form-select option {
  background: var(--darker);
  color: var(--light);
}

/* extra safety: browser UI for open dropdown sometimes uses these */
#contact .form-select,
#contact select.form-select,
#contact .form-select option {
  color: var(--light);
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: var(--darker);
  border-top: 1px solid var(--glass-border);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .nav-logo {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: inline-flex;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 72px;
  height: auto;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-title {
  font-family: var(--font-impact);
  font-size: 2.2rem;
  letter-spacing: 0.18em;
  color: var(--light);
  text-transform: uppercase;
}

.nav-logo-sub {
  margin-top: 0.25rem;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-col-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--light);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.footer-legal a:hover {
  color: var(--light);
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--darker);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 700px;
  width: 90%;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--secondary);
  transition: var(--transition);
  background: none;
}

.modal-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.modal-video-container {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--dark);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.modal-video-container iframe {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
}

.modal-video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 0.5rem;
}

.modal-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================
   AOS CUSTOM OVERRIDES
   ============================================ */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ============================================
   UTILITY
   ============================================ */
.text-gold {
  color: var(--gold);
}

.text-muted-custom {
  color: var(--text-muted);
}

.line-accent {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 1rem;
}

.product-name-banner-title {
  font-family: var(--font-heading, "Cormorant Garamond", serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--light);
  text-align: center;
  margin: 0 0 1.2rem;
  line-height: 1.2;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .business-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid .stat-item:nth-child(4) {
    border-top: 1px solid var(--glass-border);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .nav-links,
  .mega-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-inner {
    padding: 0 1.5rem;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-story-stats {
    width: 100%;
    justify-content: space-between;
  }

  .business-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-item:nth-child(3n + 1) {
    grid-row: span 1;
  }

  .container-wide {
    padding: 0 1.5rem;
  }

  .section-pad {
    padding: 1rem 0;
  }
}

@media (max-width: 768px) {
  .business-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid .stat-item:nth-child(5) {
    border-top: 1px solid var(--glass-border);
  }

  .vision-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(3.5rem, 15vw, 6rem);
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-story {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .container-wide {
    padding: 0 1rem;
  }

  .container-page {
    margin-top: 80px;
    padding: 15px;
  }

  .about-feature-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .about-story-stats {
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-start;
  }

  .mini-stat {
    min-width: 0;
    flex: 1;
  }

  .about-video {
    aspect-ratio: 16/12;
  }

  .business-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .impact-stats {
    flex-direction: column;
    align-items: center;
  }

  .contact-form {
    padding: 1.75rem;
  }

  /* Mobile fixes requested: only Leadership + Contact */
  #leadership .leadership-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  #leadership .portrait-frame {
    max-width: 100%;
  }

  #leadership .team-row {
    margin-top: 2.5rem;
    gap: 1rem;
    padding-bottom: 0.5rem;
  }

  #leadership .team-card {
    width: 160px;
  }

  #leadership .team-avatar {
    width: 72px;
    height: 72px;
    margin-bottom: 0.75rem;
  }

  #contact .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  #contact .contact-info {
    order: 1;
  }

  #contact .contact-form {
    order: 2;
  }

  #contact .map-placeholder {
    height: 200px;
  }
}

/* ============================================
   OUR PARTNERS SECTION (Auto-scrolling)
   ============================================ */
#partners {
  background: var(--darker);
  padding: 1rem 0;
  position: relative;
  overflow: hidden;
}

.partners-slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
}

.partners-slider-wrap::before,
.partners-slider-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.partners-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--darker), transparent);
}

.partners-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--darker), transparent);
}

.partners-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: partnersScroll 40s linear infinite;
}

.partners-track:hover {
  animation-play-state: paused;
}

@keyframes partnersScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.partner-logo {
  flex-shrink: 0;
  width: 220px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.partner-logo:hover .partner-logo-inner {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.06);
  transform: translateY(-5px);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(201, 168, 76, 0.05);
}

.partner-icon {
  font-size: 2.5rem;
  opacity: 0.7;
  transition: all 0.4s ease;
  filter: grayscale(0.3);
}

.partner-logo:hover .partner-icon {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.1);
}

.partner-name {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  text-align: center;
  transition: color 0.3s ease;
}

.partner-logo:hover .partner-name {
  color: var(--gold);
}

/* Responsive for partners */
@media (max-width: 992px) {
  .partner-logo {
    width: 180px;
    height: 110px;
  }

  .partner-icon {
    font-size: 2rem;
  }

  .partner-name {
    font-size: 0.65rem;
  }

  .partners-slider-wrap::before,
  .partners-slider-wrap::after {
    width: 80px;
  }
}

@media (max-width: 768px) {
  #partners {
    padding: 4rem 0 3rem;
  }

  .partner-logo {
    width: 150px;
    height: 95px;
  }

  .partner-icon {
    font-size: 1.8rem;
  }

  .partner-name {
    font-size: 0.6rem;
  }

  .partners-track {
    gap: 1.5rem;
  }

  .partners-slider-wrap::before,
  .partners-slider-wrap::after {
    width: 50px;
  }
}

@media (max-width: 480px) {
  .partner-logo {
    width: 130px;
    height: 85px;
  }

  .partner-icon {
    font-size: 1.5rem;
  }

  .partner-name {
    font-size: 0.55rem;
    letter-spacing: 0.05em;
  }
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
  position: relative;
  padding: 80px 5%;
  overflow: hidden;
  background: var(--darker);
}

/* Gold Background Glow */
.bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: 0.08;
  filter: blur(120px);
  top: -100px;
  left: -100px;
  animation: glowMove 12s linear infinite alternate;
  pointer-events: none;
}

@keyframes glowMove {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(150px, 80px);
  }
}

.video-wrapper {
  display: flex;
  gap: 35px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

/* LEFT SIDE - VIDEO PLAYER */
.video-player {
  flex: 1.5;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--dark);
  border: 1px solid var(--glass-border);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.45);
}

.video-player video {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
  background: #000;

  /* remove any native video UI strips */
  -webkit-appearance: none;
  appearance: none;
}

/* Ensure no extra native controls/seekbar area shows (mobile browsers) */
.video-player video::-webkit-media-controls,
.video-player video::-webkit-media-controls-enclosure,
.video-player video::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
}

/* Play Overlay */
.play-overlay {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold);
  font-size: 28px;
  z-index: 5;
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.15);
}

.play-overlay i {
  animation: pulseIcon 2s ease-in-out infinite;
  margin-left: 4px;
}

@keyframes pulseIcon {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* RIGHT SIDE - VIDEO LIST */
.video-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 500px;
  overflow-y: auto;
  padding-right: 6px;

  /* hide scrollbars on big screens too */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.video-list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* Custom Scrollbar - Gold */
.video-list::-webkit-scrollbar {
  width: 2px;
}

.video-list::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 50px;
  opacity: 0.5;
}

.video-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
}

/* Video Item */
.video-item {
  position: relative;
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  cursor: pointer;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
}

.video-item:hover {
  transform: translateX(8px);
  border-color: rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.06);
}

/* Active State - Gold Theme */
.video-item.active {
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.18),
    rgba(201, 168, 76, 0.06)
  );
  border: 1px solid rgba(201, 168, 76, 0.35);
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.1);
  transform: translateX(8px);
}

/* Progress Bar on Active Item */
.video-item.active .play-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0 0 14px 14px;
  overflow: hidden;
}

.video-item.active .play-progress::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: progressAnim 8s linear forwards;
}

/* Hide gold progress bar on the right video list (mobile + desktop) */
/* .video-item .play-progress{ display:none !important; } */

@keyframes progressAnim {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* Thumbnail Image */
.video-item img {
  width: 90px;
  height: 68px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--darker);
}

/* Content */
.video-content {
  flex: 1;
  min-width: 0;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.top h4 {
  color: var(--light);
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.duration {
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  flex-shrink: 0;
}

.video-content > p {
  color: var(--text-muted);
  margin: 4px 0 0 0;
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Equalizer Animation - Gold */
.playing {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  margin-top: 8px;
  height: 16px;
}

.playing span {
  width: 3px;
  background: var(--gold);
  border-radius: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-item.active .playing span {
  opacity: 1;
}

.playing span:nth-child(1) {
  height: 10px;
  animation: eqAnim 0.8s ease-in-out infinite;
}

.playing span:nth-child(2) {
  height: 16px;
  animation: eqAnim 0.8s ease-in-out 0.2s infinite;
}

.playing span:nth-child(3) {
  height: 13px;
  animation: eqAnim 0.8s ease-in-out 0.4s infinite;
}

@keyframes eqAnim {
  0%,
  100% {
    transform: scaleY(0.5);
  }

  50% {
    transform: scaleY(1.3);
  }
}

/* Ripple effect on click */
.video-item .ripple {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.25);
  transform: translate(-50%, -50%) scale(0);
  animation: rippleAnim 0.6s ease-out forwards;
  pointer-events: none;
  z-index: 1;
}

@keyframes rippleAnim {
  to {
    transform: translate(-50%, -50%) scale(20);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .video-player video {
    height: 420px;
  }

  .video-list {
    max-height: 420px;
  }
}

@media (max-width: 991px) {
  .video-wrapper {
    flex-direction: column;
  }

  .video-player {
    width: 100%;
    flex: none;
  }

  .video-player video {
    height: 380px;
  }

  .video-list {
    width: 100%;
    max-height: none;
    overflow-y: visible;
    overflow-x: hidden;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    padding-right: 0;

    /* remove scrollbar (no visual bar) */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .video-list::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .video-item {
    flex: 1 1 calc(50% - 10px);
    min-width: 220px;
  }

  .video-item:hover,
  .video-item.active {
    transform: translateY(-3px);
  }
}

@media (max-width: 768px) {
  .video-section {
    padding: 60px 4%;
  }

  .video-player video {
    height: 280px;
  }

  .play-overlay {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

  .video-item {
    flex: 1 1 100%;
    padding: 12px 14px;
    gap: 12px;
  }

  .video-item img {
    width: 75px;
    height: 58px;
  }

  .top h4 {
    font-size: 14px;
  }

  .video-content > p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .video-item {
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
  }

  .video-item img {
    width: 65px;
    height: 50px;
  }

  .top h4 {
    font-size: 13px;
  }

  .duration {
    display: none;
  }

  .video-content > p {
    font-size: 11px;
  }

  .playing {
    margin-top: 5px;
    height: 12px;
  }

  .playing span:nth-child(1) {
    height: 8px;
  }

  .playing span:nth-child(2) {
    height: 12px;
  }

  .playing span:nth-child(3) {
    height: 10px;
  }
}

/* ============================================
   MANAGEMENT PROFILE PAGE
   ============================================ */
#profile {
  background:
    radial-gradient(
      circle at top left,
      rgba(201, 168, 76, 0.14),
      transparent 28%
    ),
    linear-gradient(135deg, rgba(7, 10, 14, 0.98), rgba(10, 16, 24, 0.96));
  position: relative;
  overflow: hidden;
}

#profile::before,
#profile::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

#profile::before {
  top: -50px;
  right: -40px;
  width: 260px;
  height: 260px;
  background: rgba(201, 168, 76, 0.2);
}

#profile::after {
  left: -40px;
  bottom: -40px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.06);
}

.profile-header {
  margin-bottom: 2rem;
  padding-top: 1.5rem;
}

.profile-back {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  transition: all 0.35s ease;
  text-decoration: none;
}

.profile-back i {
  font-size: 0.9rem;
  transition: transform 0.35s ease;
}

.profile-back:hover {
  color: var(--gold);
  gap: 0.9rem;
}

.profile-back:hover i {
  transform: translateX(-4px);
}

.profile-section-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

.profile-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
}

.profile-hero {
  position: relative;
}

.profile-image-main {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  aspect-ratio: 4 / 5;
  max-height: 560px;
  background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.profile-image-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(201, 168, 76, 0.16),
    transparent 45%,
    rgba(7, 10, 14, 0.4)
  );
  pointer-events: none;
}

.profile-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
  padding: 1.25rem;
  object-position: center;
}

.profile-image-main:hover img {
  transform: scale(1.04);
}

.profile-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 10, 14, 0.85) 0%,
    rgba(7, 10, 14, 0.1) 40%,
    transparent 100%
  );
  pointer-events: none;
}

.profile-hero-content {
  position: relative;
  margin-top: 1.6rem;
}

.profile-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.profile-designation-badge,
.profile-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold);
}

.profile-meta-pill {
  color: var(--primary);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  letter-spacing: 0.16em;
}

.profile-name {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.3vw, 3.8rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--light);
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.profile-gold-line {
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.profile-body-grid {
  display: grid;
  gap: 1.25rem;
}

.profile-biography-card,
.profile-contact-card,
.profile-quick-info,
.profile-focus-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.028)
  );
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  padding: 1.75rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  transition: all 0.4s ease;
}

.profile-biography-card:hover,
.profile-contact-card:hover,
.profile-quick-info:hover,
.profile-focus-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.profile-side-stack {
  display: grid;
  gap: 1.25rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 0.9rem;
  letter-spacing: 0.04em;
}

.biography-text {
  font-size: 0.95rem;
  color: var(--primary);
  line-height: 1.9;
  margin: 0;
}

.sidebar-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item-profile {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.contact-item-profile:last-child {
  margin-bottom: 0;
}

.contact-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
}

.contact-value {
  font-size: 0.9rem;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
  word-break: break-all;
}

a.contact-value:hover {
  color: var(--gold);
}

.quick-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.quick-info-item:last-child {
  border-bottom: none;
}

.quick-info-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
}

.quick-info-value {
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 500;
}

.profile-focus-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.profile-focus-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--primary);
  line-height: 1.7;
}

.profile-focus-list i {
  color: var(--gold);
  margin-top: 0.25rem;
}

/* Profile Tablet */
@media (max-width: 992px) {
  .profile-main-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .profile-image-main {
    aspect-ratio: 3 / 4;
    max-height: 380px;
  }

  .profile-name {
    font-size: clamp(2.2rem, 7vw, 3.2rem);
  }
}

/* Profile Mobile */
@media (max-width: 576px) {
  .profile-main-grid {
    gap: 1.5rem;
  }

  .profile-biography-card,
  .profile-contact-card,
  .profile-quick-info,
  .profile-focus-card {
    padding: 1.4rem;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .biography-text {
    font-size: 0.9rem;
  }

  .quick-info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
}

/* ============================================
   MANAGEMENT TEAM SECTION
   ============================================ */
#management {
  background:
    radial-gradient(
      circle at top right,
      rgba(201, 168, 76, 0.12),
      transparent 23%
    ),
    linear-gradient(135deg, rgba(7, 10, 14, 0.98), rgba(10, 16, 24, 0.96));
  position: relative;
}

#management::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.management-hero-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: stretch;
  margin-top: 20px;
  margin-bottom: 2rem;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  position: relative;
  overflow: hidden;
}

.management-hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -25px -40px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.2), transparent 70%);
  filter: blur(10px);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.management-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.management-hero-stats {
  display: grid;
  gap: 0.8rem;
}

.management-stat {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.management-stat strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--light);
}

.management-stat span {
  font-size: 0.8rem;
  color: var(--primary);
  letter-spacing: 0.04em;
}

.management-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.member-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.025)
  );
  border: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.member-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.16),
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.member-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.38);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.34);
}

.member-card:hover::before {
  opacity: 1;
}

.member-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.member-image-wrap {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-image-wrap img {
  width: 80%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 1rem;
  object-position: center;
}

.member-card:hover .member-image-wrap img {
  transform: scale(1.06);
}

.member-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 10, 14, 0.95) 0%,
    rgba(7, 10, 14, 0.45) 53%,
    transparent 100%
  );
  pointer-events: none;
  transition: background 0.5s ease;
}

.member-card:hover .member-overlay {
  background: linear-gradient(
    to top,
    rgba(7, 10, 14, 0.96) 0%,
    rgba(7, 10, 14, 0.55) 60%,
    rgba(7, 10, 14, 0.2) 100%
  );
}

.member-name-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1rem 1.15rem;
  background: linear-gradient(
    to top,
    rgba(7, 10, 14, 0.96) 0%,
    rgba(7, 10, 14, 0.7) 65%,
    transparent 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.member-card:hover .member-name-badge {
  transform: translateY(-4px);
}

.member-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--light);
  line-height: 1.3;
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}

.member-designation {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.08);
  transition: all 0.35s ease;
}

.member-card:hover .member-designation {
  background: rgba(201, 168, 76, 0.18);
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.25);
}

.member-arrow {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.16);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  opacity: 0;
  transform: scale(0.7) rotate(-45deg);
  transition: all 0.45s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.member-card:hover .member-arrow {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  border-color: var(--gold);
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.4);
}

/* Management Tablet */
@media (max-width: 992px) {
  .management-hero-panel {
    grid-template-columns: 1fr;
  }

  .management-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

/* Management Mobile */
@media (max-width: 576px) {
  .management-hero-panel {
    padding: 1.25rem;
    border-radius: 24px;
  }

  .management-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .member-image-wrap {
    height: 340px;
  }

  .member-name {
    font-size: 1rem;
  }

  .member-name-badge {
    padding: 0.9rem;
  }

  .member-arrow {
    top: 0.75rem;
    right: 0.75rem;
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }
}
