@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ═══════════════════════════════════════
   DESIGN SYSTEM TOKENS
   ═══════════════════════════════════════ */
:root {
  /* Premium Palette */
  --obsidian:       #06080F; /* Midnight Obsidian */
  --slate-dark:     #0D111E; /* Rich Dark Slate for deep sections */
  --slate-light:    #161D32; /* Lighter slate accents */
  --platinum:       #F4F7FA; /* Premium Off-White for clean sections */
  --cream:          #FAF6F0; /* Soft warm cream for select components */
  --white:          #FFFFFF;
  
  /* Accent Metals & Colors */
  --gold:           #C5A880; /* Soft Champagne Gold */
  --gold-glow:      rgba(197, 168, 128, 0.15);
  --blue:           #1C6BD4; /* Digital growth blue */
  --blue-glow:      rgba(28, 107, 212, 0.14);
  --cyan:           #00E5FF; /* Micro-accent glowing highlights */
  --ink:            #0B0F19; /* High-contrast body text */
  --ink-muted:      #4D5875; /* Subdued gray for secondary copy */
  --border-light:   rgba(11, 15, 25, 0.08);
  --border-dark:    rgba(197, 168, 128, 0.16);
  
  /* Typography */
  --font-serif:     'Cormorant Garamond', Georgia, serif;
  --font-sans:      'Outfit', 'DM Sans', sans-serif;
  
  /* UI Attributes */
  --radius-card:    20px;
  --radius-pill:    100px;
  --transition-ux:  all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
  --glass-dark:     rgba(13, 17, 30, 0.75);
  --glass-light:    rgba(255, 255, 255, 0.85);
}

/* ═══════════════════════════════════════
   CORE STYLES & RESET
   ═══════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  background: var(--obsidian);
}

body {
  font-family: var(--font-sans);
  background-color: var(--platinum);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--obsidian);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

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

/* ═══════════════════════════════════════
   GLOBAL SECTION PATTERNS
   ═══════════════════════════════════════ */
.sec-padding {
  padding: 100px 0;
}
.sec-obsidian {
  background-color: var(--obsidian);
  color: var(--white);
}
.sec-slate {
  background-color: var(--slate-dark);
  color: var(--white);
}
.sec-platinum {
  background-color: var(--platinum);
  color: var(--ink);
}
.sec-white {
  background-color: var(--white);
  color: var(--ink);
}

/* Section Header Typography */
.section-hdr {
  margin-bottom: 60px;
  max-width: 720px;
}
.section-hdr.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 16px;
  height: 1px;
  background-color: var(--gold);
}
.section-hdr.center .eyebrow::after {
  content: '';
  width: 16px;
  height: 1px;
  background-color: var(--gold);
}

.h-serif {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.h-serif em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
h2.h-serif {
  font-size: clamp(34px, 4vw, 52px);
}
.sec-desc {
  font-size: 16px;
  color: var(--ink-muted);
  margin-top: 18px;
  max-width: 600px;
}
.sec-obsidian .sec-desc, .sec-slate .sec-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════════════════
   PREMIUM GLASS SITE HEADER & NAVBAR
   ═══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-fast);
}

/* Navbar Scrolled State */
.site-header.scrolled {
  background: var(--glass-dark);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  transition: var(--transition-fast);
}
.site-header.scrolled .nav-container {
  height: 75px;
}

/* Luxury Text Logo */
.logo {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
}
.logo span {
  color: var(--gold);
  margin-left: 2px;
  font-size: 24px;
  line-height: 1;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  padding: 8px 0;
}
.nav-link:hover {
  color: var(--white);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--transition-ux);
}
.nav-link:hover::after, .nav-item.active .nav-link::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-item.active .nav-link {
  color: var(--white);
}

/* Dropdown Sub-menu logic */
.nav-item.has-dropdown {
  position: relative;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 240px;
  background: var(--slate-dark);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 12px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--transition-ux), transform 0.4s var(--transition-ux);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.nav-item.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-link {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  padding: 10px 14px;
  border-radius: 6px;
  transition: var(--transition-fast);
}
.nav-dropdown-link:hover {
  color: var(--white);
  background: rgba(197, 168, 128, 0.1);
  transform: translateX(4px);
}

/* Navigation Social Media Icons */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-soc-link {
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-fast);
}
.nav-soc-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-glow);
  transform: translateY(-2px);
}
.nav-soc-link svg {
  width: 14px;
  height: 14px;
}

/* Actions Column (CTA & Hamburger) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  width: 30px;
  height: 24px;
  position: relative;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  position: absolute;
  transition: var(--transition-fast);
}
.hamburger span:nth-child(1) { top: 2px; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { top: 20px; }

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

/* Mobile Side Menu */
.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: 300px;
  background: var(--obsidian);
  border-left: 1px solid var(--border-dark);
  z-index: 1050;
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
}
.mobile-drawer.active {
  transform: translateX(0);
}
.mobile-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-nav-link {
  font-size: 18px;
  font-family: var(--font-serif);
  color: rgba(255,255,255,0.7);
  display: block;
}
.mobile-nav-link:hover, .mobile-nav-item.active .mobile-nav-link {
  color: var(--gold);
}
.mobile-subnav {
  list-style: none;
  padding-left: 14px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.mobile-subnav-link {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media(max-width: 1024px) {
  .nav-menu, .nav-socials {
    display: none;
  }
  .hamburger {
    display: block;
  }
}

/* ═══════════════════════════════════════
   PREMIUM BUTTONS DESIGN
   ═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Primary Button (Gold Metal) */
.btn-primary {
  background: var(--gold);
  color: var(--obsidian);
  box-shadow: 0 4px 15px var(--gold-glow);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--white);
  transform: translate(-50%, -50%);
  transition: width 0.5s var(--transition-ux), height 0.5s var(--transition-ux);
  z-index: -1;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197, 168, 128, 0.4);
}
.btn-primary:hover::after {
  width: 320px;
  height: 320px;
}

/* Secondary Button (Obsidian) */
.btn-secondary {
  background: var(--slate-dark);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--obsidian);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Ghost Button (Border Accent) */
.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-ghost:hover {
  color: var(--white);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

.btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
.btn:hover svg {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════
   PREMIUM LUXURY CARDS SYSTEM
   ═══════════════════════════════════════ */
.luxury-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 44px 38px;
  transition: var(--transition-ux);
  position: relative;
  z-index: 1;
}
.luxury-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--gold);
  opacity: 0;
  transition: var(--transition-fast);
  pointer-events: none;
  z-index: 2;
}
.luxury-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(11, 15, 25, 0.07);
}
.luxury-card:hover::after {
  opacity: 1;
}

/* Dark Mode Cards */
.sec-obsidian .luxury-card, .sec-slate .luxury-card {
  background: var(--slate-dark);
  border-color: rgba(255, 255, 255, 0.06);
  color: var(--white);
}
.sec-obsidian .luxury-card:hover, .sec-slate .luxury-card:hover {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

/* Card Number */
.card-num {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}

/* Icon Wrap */
.card-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 28px;
  transition: var(--transition-ux);
}
.sec-obsidian .card-icon-box, .sec-slate .card-icon-box {
  background: rgba(255, 255, 255, 0.04);
}
.luxury-card:hover .card-icon-box {
  background: var(--gold);
  color: var(--obsidian);
  transform: scale(1.1) rotate(5deg);
}

.luxury-card h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 14px;
  line-height: 1.25;
}
.luxury-card p {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.7;
}
.sec-obsidian .luxury-card p, .sec-slate .luxury-card p {
  color: rgba(255, 255, 255, 0.65);
}

/* Dynamic Card Links */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 28px;
  transition: var(--transition-fast);
}
.sec-obsidian .card-link, .sec-slate .card-link {
  color: var(--gold);
}
.card-link svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}
.card-link:hover {
  letter-spacing: 2.5px;
}
.card-link:hover svg {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════
   PREMIUM VEG / NON-VEG DIETARY INDICATORS
   ═══════════════════════════════════════ */
.diet-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

/* Veg indicator */
.diet-icon-veg {
  width: 14px;
  height: 14px;
  border: 2px solid #22c55e;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diet-icon-veg::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #22c55e;
  border-radius: 50%;
  animation: dietPulse 2s ease-in-out infinite;
}

/* Non-Veg indicator */
.diet-icon-nonveg {
  width: 14px;
  height: 14px;
  border: 2px solid #ef4444;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diet-icon-nonveg::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #ef4444;
  border-radius: 50%;
  animation: dietPulse 2s ease-in-out infinite;
}

@keyframes dietPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.6); opacity: 0.5; }
}

/* Spice level meter indicators */
.spice-meter {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 10px;
}
.spice-pepper {
  font-size: 13px;
  color: rgba(11, 15, 25, 0.15);
  transition: var(--transition-fast);
}
.spice-pepper.active {
  color: #ef4444;
  animation: pepperShake 4s ease-in-out infinite;
}
.spice-pepper.active:nth-child(2) { animation-delay: 0.2s; }
.spice-pepper.active:nth-child(3) { animation-delay: 0.4s; }
.spice-pepper.active:nth-child(4) { animation-delay: 0.6s; }

@keyframes pepperShake {
  0%, 90%, 100% { transform: rotate(0); }
  92%, 96% { transform: rotate(-10deg); }
  94%, 98% { transform: rotate(10deg); }
}

/* ═══════════════════════════════════════
   PREMIUM INFINITE TICKER MARQUEES
   ═══════════════════════════════════════ */
.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  user-select: none;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
  padding: 24px 0;
}
.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   MODERN FORM DESIGN SYSTEM
   ═══════════════════════════════════════ */
.luxury-form {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 50px 45px;
  box-shadow: 0 15px 50px rgba(11, 15, 25, 0.04);
}
.sec-obsidian .luxury-form, .sec-slate .luxury-form {
  background: var(--slate-dark);
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-group {
  position: relative;
  margin-bottom: 28px;
}
.form-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--platinum);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--ink);
  outline: none;
  transition: var(--transition-fast);
}
.sec-obsidian .form-input, .sec-slate .form-input {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.form-input::placeholder {
  color: var(--ink-muted);
  opacity: 0.5;
}
.sec-obsidian .form-input::placeholder, .sec-slate .form-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.form-input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--gold-glow);
}
.sec-obsidian .form-input:focus, .sec-slate .form-input:focus {
  background: var(--slate-dark);
  box-shadow: 0 0 0 4px rgba(197, 168, 128, 0.1);
}

.form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
  display: block;
}
.sec-obsidian .form-label, .sec-slate .form-label {
  color: rgba(255, 255, 255, 0.5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media(max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Form Submit State Feedback */
.btn-submit.sent {
  background: #22c55e !important;
  color: var(--white) !important;
  pointer-events: none;
}

/* ═══════════════════════════════════════
   PREMIUM CONVERSION CTA SECTION
   ═══════════════════════════════════════ */
.cta-sec {
  background-color: var(--slate-dark);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.cta-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(197, 168, 128, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(197, 168, 128, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
/* Metallic glowing floating background shapes */
.cta-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}
.cta-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--gold-glow);
  top: -150px;
  right: -100px;
  animation: floatOrb 12s ease-in-out infinite alternate;
}
.cta-orb-2 {
  width: 300px;
  height: 300px;
  background: var(--blue-glow);
  bottom: -100px;
  left: -80px;
  animation: floatOrb 15s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -20px) scale(1.1); }
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-sec h2 {
  margin-bottom: 22px;
}
.cta-sub {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 40px;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   PREMIUM SHARED FOOTER
   ═══════════════════════════════════════ */
.site-footer {
  background-color: var(--obsidian);
  color: rgba(255, 255, 255, 0.65);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}

/* Column 1: Brand Info */
.footer-brand-desc {
  font-size: 14px;
  line-height: 1.7;
  margin: 20px 0 28px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-soc-link {
  color: rgba(255, 255, 255, 0.4);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.footer-soc-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-glow);
  transform: translateY(-3px);
}
.footer-soc-link svg {
  width: 14px;
  height: 14px;
}

/* Column 2 & 3: Lists */
.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-links-list a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  display: inline-block;
}
.footer-links-list a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

/* Column 4: Contact */
.footer-contact-item {
  display: flex;
  align-items: start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 13.5px;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-item a:hover {
  color: var(--white);
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-legal-links {
  display: flex;
  gap: 24px;
}
.footer-legal-link {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-legal-link:hover {
  color: var(--gold);
}

@media(max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media(max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ═══════════════════════════════════════
   GPU SCROLL REVEAL ENGINE
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-l {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-r {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.visible, .reveal-l.visible, .reveal-r.visible, .reveal-scale.visible {
  opacity: 1;
  transform: none !important;
}

/* Stagger delays */
.d-1  { transition-delay: 0.1s; }
.d-2  { transition-delay: 0.2s; }
.d-3  { transition-delay: 0.3s; }
.d-4  { transition-delay: 0.4s; }
.d-5  { transition-delay: 0.5s; }
.d-6  { transition-delay: 0.6s; }

/* ═══════════════════════════════════════
   WHATSAPP DYNAMIC STICKY BUTTON
   ═══════════════════════════════════════ */
.sticky-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25D366;
  color: var(--white);
  padding: 12px 24px 12px 18px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  transition: var(--transition-fast);
  animation: slideWa 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 1.5s;
}
.sticky-wa:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
  background: #20ba59;
}
.sticky-wa svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@keyframes slideWa {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
