/* =====================================================
   Filmely - Custom Video Invitation Website
   Modern + Strong GSAP + 21st.dev inspired animations
   ===================================================== */

:root {
  --purple: #6B21A8;
  --magenta: #DB2777;
  --coral: #FB7185;
  --pink: #F472B6;
  --gold: #F59E0B;
  --dark: #0F0A1A;
  --gray-800: #1F2937;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-100: #F3F4F6;
  --light: #FDF4FF;
  --white: #FFFFFF;
  --gradient: linear-gradient(135deg, #6B21A8 0%, #DB2777 50%, #FB7185 100%);
  --gradient-soft: linear-gradient(135deg, rgba(107,33,168,0.1) 0%, rgba(219,39,119,0.08) 100%);
  --shadow-sm: 0 4px 20px rgba(107, 33, 168, 0.08);
  --shadow-md: 0 12px 40px rgba(107, 33, 168, 0.12);
  --shadow-lg: 0 25px 60px rgba(107, 33, 168, 0.18);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========== HEADER + HAMBURGER ========== */
.site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 1001;
}
.logo-img {
  background: none;
  -webkit-text-fill-color: unset;
  display: flex;
  align-items: center;
}
.logo-img img,
.logo-img .logo-svg {
  height: clamp(32px, 5vw, 48px);
  width: auto;
  max-width: min(200px, 42vw);
  display: block;
  object-fit: contain;
}
.logo-footer img,
.logo-footer .logo-svg {
  height: clamp(28px, 4vw, 40px);
  max-width: 160px;
  filter: brightness(1.08) contrast(1.05);
}
@media (max-width: 768px) {
  .logo-img img,
  .logo-img .logo-svg {
    height: 34px;
    max-width: 140px;
  }
}
@media (max-width: 400px) {
  .logo-img .logo-svg {
    height: 30px;
    max-width: 120px;
  }
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-menu a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-800);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}
.nav-menu a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
  padding: 10px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  z-index: 1000;
  padding: 100px 30px 40px;
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  border-left: 1px solid rgba(255,255,255,0.5);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  font-size: 1.15rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-800);
}
.mobile-nav a:hover { color: var(--magenta); }
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 26, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 6px 20px rgba(219, 39, 119, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(219, 39, 119, 0.45);
}
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.8);
}
.btn-outline:hover { background: white; color: var(--purple); }
.btn-white { background: white; color: var(--purple); }
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Magnetic button feel (21st.dev inspired) */
.btn-magnetic {
  position: relative;
  overflow: hidden;
}
.btn-magnetic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-magnetic:hover::before { opacity: 1; }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  top: -200px; right: -100px;
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-trust { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.hero-cards { position: relative; height: 420px; }
.hero-card {
  position: absolute;
  width: 240px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: white;
}
.hero-card img { width: 100%; height: 320px; object-fit: cover; }
.hero-card-1 { top: 20px; left: 20px; z-index: 2; }
.hero-card-2 { top: 80px; right: 10px; z-index: 1; }

/* ========== SECTIONS ========== */
.section { padding: 100px 0; }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
  color: var(--gray-800);
}
.section-header p { color: var(--gray-500); font-size: 1.1rem; }

/* Counters */
.counters {
  background: var(--white);
  padding: 70px 0;
  border-bottom: 1px solid var(--gray-100);
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.counter-item h3 {
  font-size: 2.8rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.counter-item p { color: var(--gray-500); font-weight: 500; }

/* Categories */
.categories { background: var(--light); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.category-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.category-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  background: var(--gradient-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.category-card h4 { font-size: 1.1rem; color: var(--gray-800); }

/* Steps / Pricing cards */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.step-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.step-number {
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.step-card h4 { margin-bottom: 10px; font-size: 1.15rem; }
.step-card p { color: var(--gray-500); font-size: 0.95rem; }

/* CTA */
.cta {
  background: var(--gradient);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta h2 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}
.cta p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 32px;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: #C4B5D4;
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand .logo { margin-bottom: 16px; display: inline-block; }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.footer-col h5 { color: white; margin-bottom: 18px; font-size: 1.05rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* 21st.dev inspired - Gradient border card */
.gradient-border {
  position: relative;
  background: white;
  border-radius: var(--radius);
}
.gradient-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}
.gradient-border:hover::before { opacity: 1; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-cards { height: 360px; margin-top: 40px; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  .section div[style*="grid-template-columns:repeat(2,1fr)"] { grid-template-columns: 1fr !important; }
  .nav-menu { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero-cards { height: 300px; }
  .hero-card { width: 160px; }
  .hero-card img { height: 220px; }

  .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }

  .section { padding: 70px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  /* Services pricing fix */
  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .pricing-card {
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.9rem; }
  .btn { padding: 12px 22px; font-size: 0.9rem; }
  .categories-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .special-services-grid {
    grid-template-columns: 1fr !important;
  }
}


/* Intersection Observer reveal */
.reveal-ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}
img.lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}
img.lazy.loaded,
img[loading="lazy"] {
  opacity: 1;
}

/* Language icon switcher */
.lang-switcher {
  position: relative;
  z-index: 1002;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-radius: 50px;
  cursor: pointer;
  color: var(--gray-800);
  font-weight: 600;
  font-size: 0.8rem;
  transition: var(--transition);
  font-family: inherit;
}
.lang-btn:hover,
.lang-btn[aria-expanded="true"] {
  border-color: var(--magenta);
  color: var(--purple);
  box-shadow: 0 4px 16px rgba(107, 33, 168, 0.12);
}
.lang-code {
  letter-spacing: 0.04em;
  min-width: 22px;
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  z-index: 1003;
}
.lang-dropdown-inner {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(15, 10, 26, 0.18), 0 0 0 1px rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.35);
  animation: langDropIn 0.22s ease;
}
@keyframes langDropIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.lang-dropdown-title {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  padding: 8px 12px 10px;
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--gray-800);
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.lang-option:hover {
  background: linear-gradient(135deg, rgba(107,33,168,0.08), rgba(219,39,119,0.06));
  color: var(--purple);
}
.lang-option.active {
  background: var(--gradient);
  color: white;
}
.lang-option-code {
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.7;
  min-width: 28px;
}
.lang-option.active .lang-option-code { opacity: 0.9; }
.lang-option-name { flex: 1; }
.lang-check { font-size: 0.85rem; }

[dir="rtl"] .lang-dropdown {
  right: auto;
  left: 0;
}

@media (max-width: 768px) {
  .lang-dropdown {
    right: 0;
    min-width: 200px;
  }
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white !important;
  padding: 14px 18px;
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none !important;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
  color: white !important;
}
.whatsapp-float svg { flex-shrink: 0; }
.wa-text { white-space: nowrap; }

@media (max-width: 600px) {
  .whatsapp-float .wa-text { display: none; }
  .whatsapp-float {
    padding: 16px;
    border-radius: 50%;
    bottom: 20px;
    right: 16px;
  }
}

/* RTL support */
[dir="rtl"] .header-inner { flex-direction: row-reverse; }
[dir="rtl"] .nav-menu { flex-direction: row-reverse; }
[dir="rtl"] .hero-grid { direction: rtl; }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 24px;
}
@media (max-width: 600px) {
  [dir="rtl"] .whatsapp-float { left: 16px; right: auto; }
}


/* Glass / backdrop blur utilities */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.glass-dark {
  background: rgba(15, 10, 26, 0.65);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header.scrolled,
  .lang-dropdown-inner,
  .lang-btn,
  .mobile-nav,
  .glass {
    background: rgba(255, 255, 255, 0.95);
  }
  .mobile-overlay {
    background: rgba(0, 0, 0, 0.5);
  }
}

/* Services dropdown */
.nav-menu .has-dropdown {
  position: relative;
}
.nav-menu .nav-caret {
  font-size: 0.7em;
  opacity: 0.7;
  margin-left: 2px;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 280px;
  list-style: none;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(15,10,26,0.15);
  border: 1px solid rgba(255,255,255,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 1005;
}
.nav-menu .has-dropdown:hover .nav-dropdown,
.nav-menu .has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
}
.nav-dropdown li a:hover {
  background: linear-gradient(135deg, rgba(107,33,168,0.08), rgba(219,39,119,0.06));
  color: var(--purple);
}
.nav-dropdown li a::after { display: none; }
.mobile-sub {
  font-size: 0.95rem !important;
  padding-left: 16px !important;
  opacity: 0.85;
  font-weight: 500 !important;
}


/* ===== MOBILE HEADER FIX ===== */
.site-header {
  overflow: visible;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  position: relative;
}
.header-inner > nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}
.header-actions .header-cta {
  white-space: nowrap;
}

@media (max-width: 992px) {
  .header-inner > nav,
  .nav-menu {
    display: none !important;
  }
  .header-cta {
    display: none !important;
  }
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-800, #1e293b);
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s;
  }
  .site-header.scrolled .hamburger span,
  .site-header .hamburger span {
    background: #1e293b;
  }
  .logo-img img,
  .logo-img .logo-svg {
    height: 34px !important;
    max-width: 130px !important;
  }
  .lang-btn {
    padding: 6px 10px;
  }
  .lang-code {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .logo-img .logo-svg {
    height: 28px !important;
    max-width: 110px !important;
  }
  .header-actions {
    gap: 4px;
  }
}

/* Hide desktop dropdown on mobile completely */
@media (max-width: 992px) {
  .nav-dropdown {
    display: none !important;
  }
}
