/* ========================================
   TASKAURA GLOBAL — Design System & Styles
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Gold palette */
  --color-gold: #d4a853;
  --color-gold-light: #f2d27a;
  --color-gold-dark: #b8862d;
  --color-gold-glow: rgba(212, 168, 83, 0.4);

  /* Neutrals */
  --color-white: #ffffff;
  --color-dark: #0a0a14;
  --color-gray-text: rgba(255, 255, 255, 0.6);
  --color-gray-text-light: rgba(255, 255, 255, 0.85);

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #f2d27a, #d4a853, #b8862d);
  --gradient-gold-btn: linear-gradient(135deg, #e8c56d, #d4a853, #c9973b);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --nav-height: 72px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--color-white);
  background: var(--color-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; outline: none; cursor: pointer; font-family: var(--font-body); }

section {
  scroll-margin-top: 96px;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-dark); }
::-webkit-scrollbar-thumb { background: var(--color-gold); border-radius: 3px; }


/* ========================================
   NAVBAR — Floating Pill Glass
   ======================================== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 1140px; /* Floating capsule width as requested */
  height: 76px; /* Breathable height to fit larger logo */
  z-index: 100;
  border-radius: 100px; /* Capsule pill shape reverted */
  isolation: isolate;

  /* LIQUID GLASS SYSTEM VARIABLES */
  --tint-color: 10, 10, 18;
  --tint-opacity: 0.45;
  --shadow-blur: 20px;
  --shadow-spread: -5px;
  --shadow-color: rgba(255, 255, 255, 0.35);
  --outer-shadow-blur: 36px;

  /* Outer shadow */
  box-shadow: 0 12px var(--outer-shadow-blur) rgba(0, 0, 0, 0.45);
  
  transition: 
    top 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Liquid Glass Tint & Highlight Bevel overlay */
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  box-shadow: inset 0 0 var(--shadow-blur) var(--shadow-spread) var(--shadow-color);
  background-color: rgba(var(--tint-color), var(--tint-opacity));
  pointer-events: none;
  transition: 
    background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Liquid Glass SVG Refraction Backdrop Layer */
.navbar::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  backdrop-filter: url(#liquid-glass-filter);
  -webkit-backdrop-filter: url(#liquid-glass-filter);
  isolation: isolate;
}

/* Scrolled/Shrunk state (Dynamic micro-interaction) */
.navbar.scrolled {
  top: 10px;
  height: 68px; /* Breathable shrunk height */
  --tint-color: 6, 6, 12;
  --tint-opacity: 0.80; /* High opacity for readability */
  --shadow-color: rgba(255, 255, 255, 0.45); /* Slightly brighter edge */
  --outer-shadow-blur: 40px;
  box-shadow: 0 16px var(--outer-shadow-blur) rgba(0, 0, 0, 0.6);
}

.navbar__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 0 10px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Desktop Menu Layout */
.navbar__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  margin-left: 48px;
  height: 100%;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  transition: var(--transition-fast);
  cursor: pointer;
}

.navbar__logo:hover { 
  opacity: 0.95;
}

.navbar__logo-img {
  height: 52px; /* Nicely scaled-down to avoid cramped capsule */
  width: auto;
  object-fit: contain;
  display: block;
  margin-top: -4px;
  margin-bottom: -4px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .navbar__logo-img {
  height: 46px; /* Proportionally scaled down on scroll */
  margin-top: -3px;
  margin-bottom: -3px;
}

.navbar__logo:hover .navbar__logo-img {
  transform: scale(1.03); /* Soft premium hover scaling */
}

/* Links Left */
.navbar__links--left {
  display: flex;
  align-items: center;
  gap: 24px; /* Generous gap for spacious layout */
  height: 100%;
  margin-right: 0;
}

.navbar__link {
  position: relative;
  font-size: 0.8rem; /* Small, premium condensed typography for maximum spaciousness */
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar__link:hover { 
  color: var(--color-white); 
}

/* Caret Arrow SVG */
.navbar__arrow {
  stroke: rgba(255, 255, 255, 0.4);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.3s ease;
}

.navbar__link:hover .navbar__arrow {
  stroke: var(--color-white);
}

/* Dropdown Wrapper */
.navbar__dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.navbar__dropdown:hover .navbar__arrow {
  transform: rotate(180deg);
  stroke: var(--color-white);
}

/* Dropdown Menu Glass Card */
.navbar__dropdown-menu {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: rgba(10, 10, 18, 0.92);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  backdrop-filter: blur(28px) saturate(160%);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px;
  width: 210px;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 16px 48px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 110;
  transition: 
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.3s;
  pointer-events: none;
}

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

.navbar__dropdown-item {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
}

.navbar__dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  padding-left: 20px; /* Smooth slide highlight */
}

.navbar__dropdown-item--active {
  color: var(--color-white) !important;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
}

/* Right Menu / Utilities */
.navbar__menu-right {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 100%;
}

/* Language Dropdown Adjustment */
.navbar__dropdown--lang {
  height: 100%;
}

.navbar__dropdown-menu--right {
  right: 0;
  left: auto;
  transform: translateY(12px);
}

.navbar__dropdown--lang:hover .navbar__dropdown-menu--right {
  transform: translateY(0);
  left: auto;
}

/* Auth / CTA Buttons */
.navbar__buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Get Started Solid Button */
.navbar__btn-cta {
  padding: 8px 20px; /* Slightly more compact padding */
  border-radius: 100px;
  font-size: 0.78rem; /* Smaller font for high-end spacious aesthetic */
  font-weight: 600;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08); /* Frosted glass accent */
  border: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0.01em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar__btn-cta:hover {
  transform: translateY(-1.5px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

/* Hamburger (Mobile Toggle) */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
  z-index: 115;
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition-smooth);
  transform-origin: center;
}

.navbar__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__hamburger.active span:nth-child(2) { opacity: 0; }
.navbar__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ========================================
   HERO SECTION — Split Glass Layout
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #000000;
}

/* ---------- Background Video ---------- */
.hero__video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  border: none;
  pointer-events: none;
  filter: contrast(1.15) brightness(0.95);
}

@media (min-aspect-ratio: 427/303) {
  .hero__video-iframe {
    height: calc(100vw * (303 / 427));
    top: 0;
    transform: translate(-50%, 0);
  }
}

@media (max-aspect-ratio: 427/303) {
  .hero__video-iframe {
    width: calc(100vh * (427 / 303));
  }
}

/* ---------- LEFT HALF — Subtle dark gradient for text readability ---------- */
.hero__glass-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* Subtle inner gradient for text contrast on the left (unblurred video visible underneath) */
.hero__glass-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.95) 90%
  );
  pointer-events: none;
}

/* ---------- RIGHT HALF — Subtle top gradient for nav ---------- */
.hero__right-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 120px;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    transparent 100%
  );
  pointer-events: none;
}

/* ---------- Hero Content ---------- */
.hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Move text to the dark part of the video */
  align-items: center;
  text-align: center;
  padding: 60px 40px 50px 40px; /* Padding bottom keeps it in black section */
  gap: 24px;
}

/* Badge pill */
.hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 50px;
  background: rgba(212, 168, 83, 0.15);
  border: 1px solid rgba(212, 168, 83, 0.35);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold-light);
  letter-spacing: 0.02em;
  width: fit-content;
  animation: fadeSlideUp 0.8s ease-out 0.1s both;
}

/* Heading */
.hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-white);
  animation: fadeSlideUp 0.8s ease-out 0.25s both;
}

/* Gold gradient text */
.hero__heading-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description */
.hero__description {
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-gray-text-light);
  max-width: 640px;
  margin: 0 auto;
  animation: fadeSlideUp 0.8s ease-out 0.45s both;
}

.hero__description strong {
  color: var(--color-gold);
  font-weight: 700;
}

/* CTA Button */
.hero__cta-group {
  margin-top: 8px;
  animation: fadeSlideUp 0.8s ease-out 0.65s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 60px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  color: var(--color-dark);
  background: var(--gradient-gold-btn);
  box-shadow: 0 4px 25px var(--color-gold-glow);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(212, 168, 83, 0.6);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn__icon {
  display: flex;
  align-items: center;
  transition: transform var(--transition-smooth);
}

.btn:hover .btn__icon {
  transform: translateX(4px);
}
/* ========================================
   KEYFRAME ANIMATIONS
   ======================================== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .navbar { 
    width: calc(100% - 32px); 
    max-width: 960px;
    height: 76px;
  }
  .navbar__links--left { gap: 16px; }
  .navbar__menu-right { gap: 18px; }
  .navbar__inner { padding: 0 8px 0 20px; }
  .hero__glass-panel { width: 100%; }
  .hero__content { width: 100%; padding: 60px 40px 50px 40px; justify-content: flex-end; }
}

@media (max-width: 768px) {
  .navbar {
    top: 15px;
    width: calc(100% - 24px);
    height: 68px; /* Spacious mobile navbar height */
    border-radius: 100px;
  }

  .navbar.scrolled {
    top: 10px;
    height: 64px; /* Spacious scrolled mobile height */
  }

  .navbar__inner { padding: 0 10px 0 18px; }

  .navbar__hamburger { display: flex; }

  /* Mobile Slide-out Menu Drawer */
  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 310px;
    height: 100vh;
    background: rgba(8, 8, 14, 0.98);
    -webkit-backdrop-filter: blur(28px);
    backdrop-filter: blur(28px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 100px 32px 40px;
    gap: 28px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 105;
    margin-left: 0;
  }

  .navbar__menu.open { right: 0; }

  /* Stack main links vertically */
  .navbar__links--left {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    height: auto;
    width: 100%;
  }

  .navbar__link { 
    font-size: 1.05rem; 
    padding: 8px 0; 
    width: 100%;
    justify-content: space-between;
  }

  /* Make dropdown arrow point right on mobile */
  .navbar__arrow {
    transform: rotate(-90deg);
  }

  .navbar__dropdown {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  /* Flat nested list on mobile (ultra clean, touch-friendly accordion behavior) */
  .navbar__dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 4px 0 8px 12px;
    pointer-events: all;
    display: none; /* Toggled via JS class */
    flex-direction: column;
    gap: 4px;
    z-index: 1;
  }

  .navbar__dropdown.active .navbar__dropdown-menu {
    display: flex;
  }

  .navbar__dropdown.active .navbar__arrow {
    transform: rotate(90deg);
  }

  .navbar__dropdown-item {
    padding: 8px 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
  }

  .navbar__dropdown-item:hover {
    padding-left: 16px;
    background: rgba(255, 255, 255, 0.03);
  }

  /* Right Menu stacked below main links */
  .navbar__menu-right {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    height: auto;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
  }

  .navbar__dropdown--lang {
    width: 100%;
  }

  .navbar__dropdown-menu--right {
    display: none; /* Toggled via class */
  }

  .navbar__dropdown--lang.active .navbar__dropdown-menu--right {
    display: flex;
  }

  /* Stack buttons */
  .navbar__buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }



  .navbar__btn-cta {
    text-align: center;
    width: 100%;
    display: block;
    padding: 12px 22px;
  }

  .navbar__mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
  }

  .navbar__mobile-overlay.visible {
    opacity: 1;
    visibility: visible;
  }

  /* Hero — Full width on mobile */
  .hero__glass-panel {
    width: 100%;
  }

  .hero__glass-panel::after {
    display: none;
  }

  .hero__right-overlay {
    display: none;
  }

  .hero__content {
    width: 100%;
    padding: 60px 24px 40px 24px;
    justify-content: flex-end;
    gap: 20px;
  }

  .hero__heading {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }
}

@media (max-width: 480px) {
  .hero__heading { font-size: 2rem; }
  .hero__subtitle { font-size: 1rem; }
  .navbar__logo-img { height: 44px; margin-top: -3px; margin-bottom: -3px; } /* Clean scaled-down height compensating whitespace */
}


/* ========================================
   FEATURED PROJECTS SECTION — Liquid Glass
   ======================================== */
.projects {
  position: relative;
  width: 100%;
  padding: 140px 60px;
  background: #06060c;
  background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  overflow: hidden;
}

/* Ambient Liquid Glass Background Blobs */
.projects__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.28;
  mix-blend-mode: screen;
}

.projects__blob--1 {
  width: 450px;
  height: 450px;
  background: #d4a853; /* Gold */
  top: 15%;
  left: 8%;
}

.projects__blob--2 {
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.8); /* White soft glow */
  bottom: 12%;
  right: 5%;
}

.projects__container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header */
.projects__header {
  max-width: 650px;
  margin-bottom: 72px;
}

.projects__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.3);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold-light);
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.projects__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.projects__title-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.projects__description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-gray-text-light);
}

/* Projects 2x2 Grid */
.projects__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* "Liquid Glass" Cards */
.project-card {
  position: relative;
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  
  /* Top Edge Highlight / Glass Bevel */
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    0 20px 45px rgba(0, 0, 0, 0.35);
    
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Soft gold background glow on hover */
.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 83, 0.3);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3),
    0 24px 60px rgba(212, 168, 83, 0.18);
}

.project-card:hover::before {
  opacity: 1;
}

/* Project Previews Wrapper */
.project-card__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1;
}

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

.project-card:hover .project-card__image {
  transform: scale(1.04); /* Smooth scale zoom */
}

.project-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(360deg, rgba(8, 8, 14, 0.3) 0%, transparent 100%);
  pointer-events: none;
}

/* Content inside card */
.project-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-card__tag {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.project-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.project-card__desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--color-gray-text-light);
  margin-bottom: 24px;
  flex: 1;
}

/* Metrics and Success Benchmarks */
.project-card__stats {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
}

.project-card__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.project-card__stat-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-white);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  width: fit-content;
}

.project-card__stat-label {
  font-size: 0.74rem;
  color: var(--color-gray-text);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Hover Interactive View Link */
.project-card__link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
  width: fit-content;
}

.project-card__arrow {
  stroke: var(--color-white);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.3s ease;
}

.project-card:hover .project-card__link {
  color: var(--color-gold-light);
}

.project-card:hover .project-card__arrow {
  transform: translateX(4px);
  stroke: var(--color-gold-light);
}


/* ========================================
   FEATURED PROJECTS RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .projects { 
    padding: 100px 40px; 
  }
  .projects__grid { 
    gap: 32px; 
  }
}

@media (max-width: 768px) {
  .projects { 
    padding: 80px 24px; 
  }
  .projects__grid { 
    grid-template-columns: 1fr; 
    gap: 28px; 
  }
  .projects__header { 
    margin-bottom: 48px; 
  }
  .project-card { 
    padding: 20px; 
  }
  .project-card__stats { 
    gap: 24px; 
    padding-top: 16px; 
    margin-bottom: 20px; 
  }
  .project-card__stat-num { 
    font-size: 1.25rem; 
  }
}

/* ========================================
   WHY CHOOSE US SECTION — 3D Glass Mockup
   ======================================== */
.why-us {
  position: relative;
  width: 100%;
  padding: 140px 60px;
  background: #06060c;
  background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Ambient Liquid Glass Background Blobs */
.why-us__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: screen;
}

.why-us__blob--1 {
  width: 400px;
  height: 400px;
  background: #d4a853; /* Gold */
  bottom: 10%;
  left: 5%;
}

.why-us__blob--2 {
  width: 450px;
  height: 450px;
  background: rgba(255, 255, 255, 0.5); /* White soft glow */
  top: 15%;
  right: 8%;
}

.why-us__container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
}

.why-us__grid {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 80px;
  align-items: center;
}

/* Device Wrapper (Glass Phone) */
.why-us__device-wrapper {
  position: relative;
  width: 100%;
  max-width: 330px;
  margin: 0 auto 0 0; /* Left aligned to screen edge on desktop */
}

/* Simulated 3D Bezel Glass Phone Bezel */
.why-us__device-bezel {
  position: relative;
  padding: 12px;
  background: rgba(10, 10, 18, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 46px;
  
  /* Drop shadow & Bevel highlights */
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4),
    0 24px 64px rgba(0, 0, 0, 0.65),
    0 0 40px rgba(212, 168, 83, 0.06);
    
  transition: all 0.4s ease;
}

.why-us__device-bezel:hover {
  border-color: rgba(212, 168, 83, 0.35);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4),
    0 32px 80px rgba(0, 0, 0, 0.85),
    0 0 50px rgba(212, 168, 83, 0.18);
}

.why-us__device-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 34px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(0, 0, 0, 0.6);
}

.why-us__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none; /* Block all mouse interactions (removes player overlays/controls) */
}

/* Content Styles */
.why-us__content-col {
  display: flex;
  flex-direction: column;
}

.why-us__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.3);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold-light);
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  width: fit-content;
}

.why-us__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.why-us__title-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-us__description {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-gray-text-light);
  margin-bottom: 12px;
}

/* Stats Cards Grid */
.why-us__stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.why-us__stat-card {
  position: relative;
  padding: 36px 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    0 16px 36px rgba(0, 0, 0, 0.3);
    
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-us__stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}

.why-us__stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 168, 83, 0.28);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3),
    0 24px 48px rgba(212, 168, 83, 0.12);
}

.why-us__stat-card:hover::before {
  opacity: 1;
}

.why-us__stat-num {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  line-height: 1;
}

.why-us__stat-label {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.why-us__stat-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--color-gray-text);
  position: relative;
  z-index: 1;
}

/* ========================================
   WHY CHOOSE US RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .why-us {
    padding: 100px 40px;
  }
  .why-us__grid {
    grid-template-columns: 45% 55%;
    gap: 48px;
  }
  .why-us__stats-grid {
    gap: 20px;
    margin-top: 28px;
  }
  .why-us__stat-card {
    padding: 28px 20px;
  }
}

@media (max-width: 768px) {
  .why-us {
    padding: 80px 24px;
  }
  .why-us__grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .why-us__video-col {
    order: -1; /* Video on top on mobile */
  }
  .why-us__device-wrapper {
    max-width: 290px;
    margin: 0 auto; /* Centered on mobile */
  }
  .why-us__stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ========================================
   WHAT WE DO / SERVICES SECTION (Accordion)
   ======================================== */
.services {
  position: relative;
  width: 100%;
  padding: 140px 60px 40px 60px;
  background: #06060c;
  background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Ambient Liquid Glass Background Blobs */
.services__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: screen;
}

.services__blob--1 {
  width: 450px;
  height: 450px;
  background: #d4a853;
  top: 15%;
  left: 8%;
}

.services__blob--2 {
  width: 450px;
  height: 450px;
  background: rgba(255, 255, 255, 0.4);
  bottom: 15%;
  right: 8%;
}

.services__container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
}

.services__header {
  max-width: 650px;
  margin-bottom: 72px;
}

.services__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.3);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold-light);
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  width: fit-content;
}

.services__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.services__title-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services__desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-gray-text-light);
}

/* Accordion Stack */
.services__accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1.5px solid rgba(255, 255, 255, 0.08);
}

.services__cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
  position: relative;
  z-index: 5;
}

.accordion-item {
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}

.accordion-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.accordion-item__header:hover {
  background: rgba(255, 255, 255, 0.015);
}

.accordion-item__header-left {
  display: flex;
  align-items: center;
  gap: 48px;
}

.accordion-item__num {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: -0.01em;
  min-width: 40px;
}

.accordion-item__title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.015em;
  transition: color 0.3s ease;
}

.accordion-item.active .accordion-item__title {
  color: var(--color-gold-light);
}

/* Plus/Minus Toggle Icon Frame */
.accordion-item__toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.accordion-item:hover .accordion-item__toggle {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: scale(1.05);
}

.accordion-item.active .accordion-item__toggle {
  background: var(--gradient-gold-btn);
  border-color: transparent;
  color: var(--color-dark);
  transform: rotate(180deg);
}

.accordion-item__icon {
  stroke: currentColor;
}

.accordion-item__line-v {
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform-origin: center;
}

/* Turns + into - seamlessly */
.accordion-item.active .accordion-item__line-v {
  transform: rotate(90deg);
  opacity: 0;
}

/* Expandable Panel Frame */
.accordion-item__panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.accordion-item.active .accordion-item__panel {
  opacity: 1;
}

.accordion-item__content {
  display: grid;
  grid-template-columns: 48% 46%;
  gap: 6%;
  padding: 12px 10px 48px 88px;
}

/* Left side: descriptions */
.accordion-item__copy-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.accordion-item__desc {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--color-gray-text-light);
}

.accordion-item__benefit {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-gray-text);
  border-left: 2px solid var(--color-gold);
  padding-left: 16px;
}

.accordion-item__benefit-highlight {
  font-weight: 700;
  color: var(--color-white);
}

/* Right side: glass tags */
.accordion-item__tags-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item__tags-title {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.accordion-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Modern liquid glass capsule tags */
.glass-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gray-text-light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.glass-tag:hover {
  border-color: rgba(212, 168, 83, 0.35);
  background: rgba(212, 168, 83, 0.06);
  color: var(--color-gold-light);
  transform: translateY(-1.5px);
  box-shadow: 0 4px 12px rgba(212, 168, 83, 0.1);
}

/* ========================================
   SERVICES ACCORDION RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .services {
    padding: 100px 40px 30px 40px;
  }
  .accordion-item__content {
    padding-left: 60px;
    gap: 4%;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 80px 24px 20px 24px;
  }
  .services__header {
    margin-bottom: 48px;
  }
  .accordion-item__header {
    padding: 24px 0;
  }
  .accordion-item__header-left {
    gap: 20px;
  }
  .accordion-item__num {
    font-size: 0.95rem;
    min-width: 24px;
  }
  .accordion-item__title {
    font-size: 1.15rem;
    line-height: 1.35;
  }
  .accordion-item__toggle {
    width: 32px;
    height: 32px;
  }
  .accordion-item__content {
    grid-template-columns: 1fr; /* Fold columns on phone */
    gap: 32px;
    padding: 8px 0 32px 44px; /* Move content slightly to fit */
  }
  .accordion-item__copy-col {
    gap: 16px;
  }
  .accordion-item__desc {
    font-size: 0.95rem;
  }
  .glass-tag {
    padding: 6px 14px;
    font-size: 0.74rem;
  }
}

/* ========================================
   ABOUT US SECTION
   ======================================== */
.about {
  position: relative;
  width: 100%;
  padding: 40px 60px 140px 60px;
  background: #06060c;
  background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.about__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.3);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold-light);
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  width: fit-content;
}

.about__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.about__title-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Ambient Liquid Glass Background Blobs */
.about__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.15;
  mix-blend-mode: screen;
}

.about__blob--1 {
  width: 450px;
  height: 450px;
  background: #d4a853;
  top: 20%;
  right: 5%;
}

.about__blob--2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.35);
  bottom: 15%;
  left: 5%;
}

.about__container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
}

.about__grid {
  display: grid;
  grid-template-columns: 48% 46%;
  gap: 6%;
  align-items: center;
}

/* ========================================
   RIGHT COLUMN: DYNAMIC VIDEO PREVIEW
   ======================================== */
.about__video-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.about__video-wrapper {
  width: 100%;
  max-width: 420px;
}

/* Premium glass bezel for the video */
.about__video-bezel {
  position: relative;
  padding: 12px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.015);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    0 24px 48px rgba(0, 0, 0, 0.4);
    
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about__video-bezel:hover {
  border-color: rgba(212, 168, 83, 0.3);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3),
    0 32px 64px rgba(212, 168, 83, 0.12);
  transform: translateY(-4px);
}

.about__video-screen {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #000000;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

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

.about__copy-body--highlight {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-white);
  border-left: 2px solid var(--color-gold);
  padding-left: 16px;
  margin-top: 12px;
}

/* ========================================
   SCROLL REVEAL ANIMATIONS CLASS NAME
   ======================================== */
.about .about__video-col,
.about .about__badge,
.about .about__title,
.about .about__copy-stack > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* When the section gets .in-view class via Intersection Observer */
.about.in-view .about__video-col {
  opacity: 1;
  transform: translateY(0);
}

.about.in-view .about__badge {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.about.in-view .about__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.about.in-view .about__copy-stack > :nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.about.in-view .about__copy-stack > :nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.about.in-view .about__copy-stack > :nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.about.in-view .about__copy-stack > :nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.about.in-view .about__pillar-card:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.about.in-view .about__pillar-card:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.about.in-view .about__pillar-card:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

/* ========================================
   ABOUT US SECTION RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .about {
    padding: 30px 40px 100px 40px;
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .about__video-col {
    order: -1; /* Video on top for tablets/mobiles */
  }
}

@media (max-width: 768px) {
  .about {
    padding: 20px 24px 80px 24px;
  }
  .about__video-wrapper {
    max-width: 320px;
  }
  .about__video-bezel {
    padding: 8px;
    border-radius: 20px;
  }
  .about__video-screen {
    border-radius: 14px;
  }
}

/* ========================================
   CONTACT / LET'S TALK SECTION
   ======================================== */
.contact {
  position: relative;
  width: 100%;
  padding: 100px 60px 140px 60px;
  background: #06060c;
  background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Ambient Liquid Glass Background Blobs */
.contact__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.15;
  mix-blend-mode: screen;
}

.contact__blob--1 {
  width: 400px;
  height: 400px;
  background: #d4a853;
  bottom: 10%;
  right: 8%;
}

.contact__blob--2 {
  width: 450px;
  height: 450px;
  background: rgba(255, 255, 255, 0.25);
  top: 15%;
  left: 5%;
}

.contact__container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
}

.contact__grid {
  display: grid;
  grid-template-columns: 58% 38%;
  gap: 4%;
  align-items: center;
}

/* Left Column: Big Typography */
.contact__info-col {
  display: flex;
  flex-direction: column;
}

.contact__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.3);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold-light);
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  width: fit-content;
}

.contact__title {
  font-family: var(--font-heading);
  font-size: clamp(4.5rem, 8.8vw, 8.2rem);
  font-weight: 900;
  line-height: 0.85;
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}

.contact__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.65;
  color: var(--color-gray-text);
  max-width: 420px;
}

/* Right Column: Premium white/frosted card */
.contact__form-col {
  z-index: 5;
}

.contact__form-card {
  position: relative;
  padding: 40px 32px;
  max-width: 440px;
  margin-left: auto;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  color: #0a0a14;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 24px 64px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact__form-card:hover {
  box-shadow: 
    0 32px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.contact__form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: #0a0a14;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.contact__form {
  display: flex;
  flex-direction: column;
}

.contact__field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.contact__label {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(10, 10, 20, 0.55);
}

.contact__input {
  width: 100%;
  background: rgba(10, 10, 20, 0.035);
  border: 1px solid rgba(10, 10, 20, 0.07);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #0a0a14;
  outline: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact__input::placeholder {
  color: rgba(10, 10, 20, 0.32);
}

.contact__input:hover {
  background: rgba(10, 10, 20, 0.055);
  border-color: rgba(10, 10, 20, 0.12);
}

.contact__input:focus {
  background: #ffffff;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(212, 168, 83, 0.15);
}

.contact__input--textarea {
  height: 100px;
  resize: none;
  line-height: 1.5;
}

/* Submit Button styling */
.contact__submit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #0a0a14;
  color: #ffffff;
  border: none;
  outline: none;
  padding: 18px 24px;
  border-radius: 14px;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(10, 10, 20, 0.15);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 8px;
}

.contact__submit-btn:hover {
  background: #18182a;
  transform: translateY(-2.5px);
  box-shadow: 0 12px 32px rgba(10, 10, 20, 0.28);
}

.contact__submit-btn:active {
  transform: translateY(-0.5px);
}

.contact__form-footer {
  font-size: 0.76rem;
  color: rgba(10, 10, 20, 0.42);
  margin-top: 24px;
  text-align: center;
  line-height: 1.5;
}

.contact__footer-link {
  color: #0a0a14;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact__footer-link:hover {
  color: var(--color-gold-dark);
}

/* ========================================
   SCROLL REVEAL ANIMATIONS FOR CONTACT
   ======================================== */
.contact .contact__info-col,
.contact .contact__form-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact.in-view .contact__info-col {
  opacity: 1;
  transform: translateY(0);
}

.contact.in-view .contact__form-card {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

/* ========================================
   CONTACT US SECTION RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .contact {
    padding: 80px 40px 100px 40px;
  }
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: center;
  }
  .contact__info-col {
    text-align: center;
  }
  .contact__subtitle {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 60px 24px 80px 24px;
  }
  .contact__form-card {
    padding: 36px 24px;
  }
  .contact__submit-btn {
    padding: 16px 20px;
  }
}

/* ========================================
   FOOTER SECTION
   ======================================== */
.footer {
  background-color: #06060c;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 40px 0;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* Brand Column */
.footer__brand-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__logo-link {
  align-self: flex-start;
  display: inline-block;
  line-height: 1;
}

.footer__logo {
  height: 250px; /* Large prominent size requested by the user */
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.footer__description {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 440px;
  color: rgba(255, 255, 255, 0.7);
}

.footer__highlight {
  color: var(--color-gold);
  font-weight: 700;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--color-gold);
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
}

/* Links & Connect Columns */
.footer__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__links-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__link {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer__link:hover {
  color: var(--color-gold);
}

.footer__connect-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__connect-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.footer__connect-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.footer__connect-text {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

a.footer__connect-text:hover {
  color: var(--color-gold);
}

/* Divider & Bottom */
.footer__divider {
  border: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 30px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.5);
}

.footer__policies {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__policy-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.footer__policy-link:hover {
  color: var(--color-gold);
}

.footer__policy-sep {
  color: rgba(255, 255, 255, 0.25);
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 30px 0;
  }
  .footer__container {
    padding: 0 24px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__brand-col {
    gap: 20px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ========================================
   CAREERS SECTION — Liquid Glass Cards
   ======================================== */
.careers {
  position: relative;
  width: 100%;
  padding: 140px 60px;
  background: #06060c;
  background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  overflow: hidden;
}

.careers__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: screen;
}

.careers__blob--1 {
  width: 450px;
  height: 450px;
  background: #d4a853; /* Gold accent */
  top: 15%;
  right: 5%;
}

.careers__container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
}

.careers__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.careers__badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 50px;
  background: rgba(212, 168, 83, 0.12);
  border: 1px solid rgba(212, 168, 83, 0.3);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold-light);
  letter-spacing: 0.02em;
  width: fit-content;
}

.careers__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

.careers__title-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.careers__desc {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--color-gray-text-light);
  line-height: 1.75;
  max-width: 680px;
}

/* Offers Grid */
.careers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.offer-card {
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 32px rgba(0, 0, 0, 0.2);
}

.offer-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(212, 168, 83, 0.3);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 40px rgba(212, 168, 83, 0.15);
}

.offer-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(212, 168, 83, 0.1);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.offer-card:hover .offer-card__icon {
  background: var(--color-gold);
  color: var(--color-dark);
}

.offer-card__title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.4;
}

.careers__cta-wrap {
  text-align: center;
  margin-top: 16px;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .careers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .careers {
    padding: 100px 24px;
  }
  .careers__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .offer-card {
    padding: 24px;
  }
}

/* ========================================
   CAREERS SPLIT LAYOUT & IMAGE STYLE
   ======================================== */
.careers__split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.careers__image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.careers__image-bezel {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 20px 50px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.careers__image-bezel:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 83, 0.3);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 24px 60px rgba(212, 168, 83, 0.15);
}

.careers__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.careers__image-bezel:hover .careers__image {
  transform: scale(1.03);
}

.careers__content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.careers__split .careers__grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 8px;
  width: 100%;
}

.careers__split .offer-card {
  padding: 24px;
  gap: 16px;
}

.careers__split .offer-card__title {
  font-size: 1rem;
}

/* Responsive updates for Split Layout */
@media (max-width: 1024px) {
  .careers__split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .careers__image-col {
    order: -1; /* Place image on top on mobile/tablet */
    width: 100%;
  }
  .careers__image-bezel {
    max-width: 100%;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 600px) {
  .careers__split .careers__grid {
    grid-template-columns: 1fr;
  }
  .careers__image-bezel {
    aspect-ratio: 1 / 1;
  }
}


/* ========================================
   WHO WE WORK WITH SECTION
   ======================================== */
.partners {
  position: relative;
  width: 100%;
  padding: 140px 60px;
  background: #06060c;
  background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.partners__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.15;
  mix-blend-mode: screen;
}

.partners__blob--1 {
  width: 400px;
  height: 400px;
  background: #d4a853;
  top: 10%;
  left: -10%;
}

.partners__blob--2 {
  width: 450px;
  height: 450px;
  background: #b8862d;
  bottom: 10%;
  right: -10%;
}

.partners__container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
}

.partners__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.partners__badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 50px;
  background: rgba(212, 168, 83, 0.12);
  border: 1px solid rgba(212, 168, 83, 0.3);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold-light);
  letter-spacing: 0.02em;
}

.partners__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

.partners__title-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.partners__desc {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--color-gray-text-light);
  line-height: 1.75;
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

.partner-card {
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 32px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  user-select: none;
}

.partner-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(212, 168, 83, 0.25);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 40px rgba(212, 168, 83, 0.1);
}

.partner-card__logo-wrapper {
  width: 130px; /* Bigger logo container */
  height: 130px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  margin-bottom: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.partner-card:hover .partner-card__logo-wrapper {
  background: rgba(212, 168, 83, 0.08);
  border-color: rgba(212, 168, 83, 0.25);
  transform: scale(1.05);
}

.partner-card__logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-card__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.partner-card__socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px; /* space between social button and expand indicator/details */
}

.partner-card__social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-card__social-btn:hover {
  background: var(--gradient-gold);
  border-color: transparent;
  color: var(--color-dark);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(212, 168, 83, 0.3);
}

/* Hidden details wrapper expanding on click */
.partner-card__details {
  width: 100%;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-card.expanded {
  border-color: rgba(212, 168, 83, 0.4);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 16px 48px rgba(212, 168, 83, 0.15);
}

.partner-card.expanded .partner-card__details {
  max-height: 350px;
  opacity: 1;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.partner-card__tag {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-gold-light);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.4;
}

.partner-card__links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.partner-card__link-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
}

.partner-card__link-item:hover {
  color: var(--color-white);
}

.partner-card__link-item svg {
  color: var(--color-gold);
}

/* Expand indicator chevron styles */
.partner-card__expand-indicator {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-card:hover .partner-card__expand-indicator {
  color: var(--color-gold);
  transform: translateY(2px);
}

.partner-card.expanded .partner-card__expand-indicator {
  transform: rotate(180deg);
  color: var(--color-gold);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .partners__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .partners {
    padding: 100px 24px;
  }
  .partners__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .partner-card {
    padding: 24px;
  }
}

/* ========================================
   PRELOADER — Premium Dark Preloader
   ======================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #030307;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.preloader__logo {
  height: 80px;
  width: auto;
  animation: logoPulse 1.8s ease-in-out infinite;
}

.preloader__line-wrapper {
  width: 160px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.preloader__line {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  animation: loadingBar 1.5s ease-in-out infinite;
}

.preloader__text {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(0.96);
    opacity: 0.8;
    filter: drop-shadow(0 0 0 rgba(212, 168, 83, 0));
  }
  50% {
    transform: scale(1.02);
    opacity: 1;
    filter: drop-shadow(0 0 20px rgba(212, 168, 83, 0.25));
  }
}

@keyframes loadingBar {
  0% {
    left: -40%;
  }
  100% {
    left: 100%;
  }
}



