:root {
  --bg-dark: #050505;
  --bg-accent: #0f1115;
  --primary: #00DBFF;
  --primary-glow: rgba(0, 219, 255, 0.4);
  --secondary: #FF00FF;
  --secondary-glow: rgba(255, 0, 255, 0.4);
  --gold: #FFD700;
  --white: #ffffff;
  --text-muted: #a0a0a0;
  --glass: rgba(255, 255, 255, 0.05);
  --border-glass: rgba(255, 255, 255, 0.1);
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --container-max: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

/* Mega Pro Aurora Background */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 219, 255, 0.05), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.05), transparent 40%);
    filter: blur(80px);
    animation: auroraMove 20s infinite alternate ease-in-out;
    pointer-events: none;
}

@keyframes auroraMove {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.2) translate(5%, 5%); }
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-heading);
  font-weight: 800; /* Bolder for better readability */
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: #000;
  box-shadow: 0 0 15px var(--primary-glow);
  font-weight: 800;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: sweep 4s infinite linear;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 35px var(--primary-glow);
}

.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--bg-dark);
}

.btn-block {
  display: block;
  width: 100%;
  margin-top: 1rem;
}

.gradient-text {
  background: linear-gradient(90deg, #00DBFF, #FF00FF, #FFD700, #00DBFF);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbowMove 8s linear infinite;
}

@keyframes rainbowMove {
  to { background-position: 300% center; }
}

.white-text {
  color: var(--white) !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
}

/* Professional Animations */
@keyframes sweep {
  0% { left: -100%; top: -100%; }
  20% { left: 100%; top: 100%; }
  100% { left: 100%; top: 100%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.4);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.5s ease, backdrop-filter 0.5s ease;
}

.navbar--hidden {
  transform: translateY(-100%);
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px; /* Large initial presence */
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 1.5rem;
}

.lang-switcher {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 0.6rem;
    border-radius: 30px;
    border: 1px solid var(--border-glass);
    margin-left: -1.5cm;
}

.lang-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2px;
    cursor: pointer;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.lang-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.lang-btn:hover, .lang-btn.active {
    opacity: 1;
    transform: scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.navbar.scrolled .nav-content {
  height: 80px; /* Compact on scroll */
}



.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  margin-right: 0; /* Centered relative to its container, moving another 1mm (4px) left */
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  padding: 0.4rem 1rem;
  border: 1px solid var(--primary);
  border-radius: 4px;
  text-transform: uppercase;
  font-family: var(--font-heading);
  white-space: nowrap;
}

.nav-links a:hover {
  background: var(--primary);
  color: var(--bg-dark);
  box-shadow: 0 0 15px var(--primary-glow);
}

.nav-links a.btn-primary {
  background: var(--primary);
  color: var(--bg-dark);
  font-weight: 800;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

/* Hero */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent, var(--bg-dark));
}

.hero-content {
  text-align: center;
  margin-top: -5vh; /* Lowered from -18vh to prevent header overlap */
}

.hero h1 {
  font-size: 5rem;
  line-height: 0.9;
  margin-top: -1.5cm; /* Raised total 1.5cm per request */
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.festival-text {
  font-size: 0.75em;
  letter-spacing: 15px;
  display: inline-block;
  margin-top: 0.5rem;
  opacity: 0.9;
}

.tagline {
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 5px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.hero-subtext {
    display: block;
    font-size: 1.25rem;
    color: var(--white);
    margin-top: 1.2rem;
    letter-spacing: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Countdown Styles */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem; /* Reduced from 3.5rem to move it up ~0.5cm (1rem is ~0.4cm) or exact calc */
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.countdown-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 219, 255, 0.2);
}

.countdown-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 219, 255, 0.3);
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 600;
}

@media (max-width: 768px) {
    .countdown {
        gap: 1rem;
        margin-top: 2.5rem;
    }
    .countdown-item {
        padding: 1rem;
        min-width: 80px;
    }
    .countdown-num {
        font-size: 1.8rem;
    }
    .countdown-label {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
}

.hero-footer {
  display: flex;
  justify-content: center;
  gap: 4rem;
  border-top: 1px solid var(--border-glass);
  padding-top: 2rem;
}

.hero-item {
  display: flex;
  flex-direction: column;
}

.hero-item .label {
  font-size: 0.8rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero-item .value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
  40% {transform: translateY(-10px) translateX(-50%);}
  60% {transform: translateY(-5px) translateX(-50%);}
}

/* Sections */
.section {
  padding: 8rem 0; /* Reduced from 12rem to shorten gaps in between */
  scroll-margin-top: 100px; /* Offset for sticky header links */
}

#vision, #info {
    min-height: 40vh; /* Reduced from 60vh to keep sections more compact */
}

.alternate-bg {
  background-color: var(--bg-accent);
}

.section-badge {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: inline-block;
    border-bottom: 1px solid var(--white);
    padding-bottom: 0.2rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--white);
}

#vision .section-title,
#vip .section-title,
#info .section-title {
    margin-bottom: 0.5rem;
}

.lead {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 4rem;
    max-width: 900px;
    font-weight: 300;
    line-height: 1.4;
    opacity: 0.9;
}

/* Concept Grid */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.concept-card {
  background: #0a0a0a;
  padding: 3rem 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-glass);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.concept-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 219, 255, 0.2);
}

.concept-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 219, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.icon-box {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.concept-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--white);
  display: inline-block;
}

.concept-card p {
  color: var(--white);
  font-size: 0.95rem;
  opacity: 1; /* Ensure full white */
}

/* Gastro Section */
.gastro-header {
    max-width: 800px;
    margin: 0 0 3rem;
    text-align: left;
}

.gastro-header .section-title {
    margin-bottom: 0.5rem;
}

.gastro-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem auto 4rem;
    max-width: 1100px;
    text-align: center;
}

.gastro-card {
    background: #0a0a0a;
    padding: 3rem 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.gastro-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 219, 255, 0.2);
}

.gastro-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 219, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

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



.gastro-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.gastro-card p {
    color: var(--white);
    font-size: 0.95rem;
}

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



.service-item {
    background: #0a0a0a;
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 2.5rem 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 45px rgba(0, 219, 255, 0.2);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 219, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-item:hover::before {
    opacity: 1;
}

.chef-card {
    background: #0a0a0a;
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.chef-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 45px rgba(0, 219, 255, 0.2);
}

.chef-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 219, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.chef-info h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    color: var(--white);
}

.chef-info span {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 300;
}

.evocative-phrase {
    margin-top: 5rem;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--white);
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.8;
}

.chef-logo {
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border: 4px solid var(--border-glass);
    transition: all 0.3s ease;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.chef-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Specific for El Barba to fill the circle completely */
.chef-logo .logo-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
    max-height: none;
    mix-blend-mode: normal;
}

.chef-card:hover .chef-logo img {
    opacity: 1;
}

.chef-info {
    text-align: center;
}

/* VIP Section */
.vip-section {
    background: radial-gradient(circle at top right, rgba(255, 0, 255, 0.1), transparent);
}

.text-center { text-align: center; }
.center-badge { display: block; width: fit-content; margin: 0 auto 1rem; }

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    width: 100%;
}

.vip-card {
    background: #0a0a0a;
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 3rem 1.5rem 2.5rem; /* Increased top padding to accommodate badge if needed, though it's absolute */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 0;
    position: relative;
    /* overflow: hidden;  -- REMOVED to allow featured-badge to float outside */
}

.vip-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 45px rgba(0, 219, 255, 0.2);
}

.vip-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 219, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.vip-card.featured {
    border-color: var(--primary);
    position: relative;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.9));
}

.featured-badge {
    position: absolute;
    top: -15px; /* Slightly higher for more 'pop' */
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), #00A3FF);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 900;
    padding: 0.4rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 219, 255, 0.4);
    z-index: 2;
    white-space: nowrap;
    letter-spacing: 1px;
}

.vip-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    color: var(--white);
}

.pack-description {
    font-size: 0.85rem;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.vip-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.total-label-price {
    font-size: 0.75rem;
    color: var(--white);
    letter-spacing: 2px;
    font-weight: 700;
}

.price-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.vip-price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.vip-price .currency {
    font-size: 1.5rem;
    color: var(--white);
    margin-top: 0.8rem; /* Align better with top of amount */
    margin-right: 0.3rem;
    font-weight: 700;
}

.vip-price .per {
    font-size: 0.8rem;
    color: var(--white);
    letter-spacing: 1px;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none; /* Controlled by JS */
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(25px) saturate(150%);
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    z-index: 10;
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.modal-left {
    background: #111;
    padding: 4rem 3rem;
    border-right: 1px solid var(--border-glass);
}

.order-summ.vip-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--white);
}

.pack-description {
    font-size: 0.9rem;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.vip-pricing {
    margin-top: auto;
    margin-bottom: 2rem;
}

.vip-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.total-label-price {
    font-size: 0.75rem;
    color: var(--white);
    letter-spacing: 2px;
    font-weight: 700;
}

.price-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.vip-price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.vip-price .currency {
    font-size: 1.5rem;
    color: var(--white);
    margin-top: 0.5rem;
    margin-right: 0.2rem;
}

.vip-price .per {
    font-size: 0.8rem;
    color: var(--white);
    letter-spacing: 1px;
}

.total-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.modal-qty-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.modal-qty-selector span {
    font-size: 0.8rem;
    color: var(--white);
}

.total-display {
    border-top: 1px solid var(--border-glass);
    padding-top: 2rem;
}

.total-label {
    display: block;
    font-size: 0.8rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.modal-right {
    padding: 4rem 3rem;
}

.checkout-form h3 {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: var(--white);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 0.7rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.checkout-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    padding: 1rem;
    color: var(--white);
    border-radius: 4px;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.checkout-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.payment-section {
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
}

.payment-section h3 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.form-footer {
    font-size: 0.7rem;
    color: var(--white);
    text-align: center;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Success State */
.success-state {
    display: none; /* Shown by JS */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 3rem;
    text-align: center;
    width: 100%;
}

.success-icon {
    color: #4BB543;
    margin-bottom: 2rem;
}

.success-icon i {
    width: 80px;
    height: 80px;
}

.order-summary h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.modal-description-text {
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.6;
    margin-top: 1.5rem; /* Space after the price */
    margin-bottom: 0;
}

.success-state p {
    color: var(--white);
    max-width: 500px;
    margin-bottom: 3rem;
}

/* Responsive */
@media (max-width: 850px) {
    .modal-content {
        grid-template-columns: 1fr;
    }
    .modal-left {
        border-right: none;
        border-bottom: 1px solid var(--border-glass);
        padding: 3rem 2rem;
    }
    .modal-right {
        padding: 3rem 2rem;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group {
        grid-column: span 2;
    }
}

.currency { font-size: 1.5rem; color: var(--white); }
.amount { font-size: 4rem; font-weight: 800; font-family: var(--font-heading); margin: 0 0.5rem; color: var(--white); }
.per { color: var(--white); font-size: 0.9rem; }

.payment-box {
    background: #111;
    border-radius: 8px;
    padding: 2rem;
}

.payment-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 1rem;
}

.payment-tabs button {
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
}

.payment-tabs button.active {
    color: var(--primary);
}

.payment-form .form-group {
    margin-bottom: 1.2rem;
}

.payment-form label {
    display: block;
    font-size: 0.7rem;
    color: var(--white);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.payment-form input {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid var(--border-glass);
    padding: 0.8rem;
    color: var(--white);
    border-radius: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

.payment-note {
    font-size: 0.7rem;
    color: var(--white);
    text-align: center;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-item {
    text-align: center;
    padding: 2rem;
}

.service-item i {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-item h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--white);
}

.service-item p {
    color: var(--white);
    font-size: 0.9rem;
}

/* Footer */
/* Sponsors */
.sponsors-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: nowrap;
    margin-top: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}

.sponsor-globe {
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border: 4px solid var(--border-glass);
    transition: all 0.3s ease;
    flex-shrink: 0;
    overflow: hidden;
}

.sponsor-globe:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 45px rgba(0, 219, 255, 0.2);
}

.sponsor-globe img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Footer */
.footer {
    padding: 6rem 0 2rem;
    background-color: #080808;
    border-top: 1px solid var(--border-glass);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-col p {
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-brand .footer-logo-img {
    height: 90px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(0, 219, 255, 0.2));
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    color: var(--white);
    background: var(--glass);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-glass);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: var(--white);
}

.contact-info i {
    color: var(--primary);
    font-size: 1rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--white);
    font-size: 0.8rem;
}

.tax-info {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.7rem;
}

.heart-icon {
    display: inline-block;
    color: #ff4d4d;
    width: 14px;
    height: 14px;
    animation: heartBeat 1.5s infinite;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    70% { transform: scale(1); }
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-links {
        justify-content: center;
    }
    .contact-info p {
        justify-content: center;
    }
}

/* Services & Logistics */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 3rem 0 6rem;
    max-width: 1300px;
    margin: 0 auto;
}

.service-item {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
}

.service-item i {
    width: 75px;
    height: 75px;
    color: var(--primary);
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15px var(--primary-glow));
    transition: transform 0.3s ease;
}

.service-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.service-item p {
    color: var(--white) !important;
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 300;
}

.service-item:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    background: rgba(0, 219, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 219, 255, 0.1);
}

.service-item:hover i {
    transform: scale(1.15);
}

/* Reveal Animation */
.reveal {
    opacity: 1; /* Default to visible for local testing safety */
    transform: translateY(0);
    filter: blur(0);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Only hide if JS is confirmed active and can reveal them */
.js-active .reveal {
    opacity: 0;
    transform: translateY(20px) scale(0.99);
    filter: blur(5px);
}

.reveal.active {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    filter: blur(0) !important;
}

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

/* Mobile Responsive */
@media (max-width: 968px) {
    .nav-links { 
        display: none; 
        z-index: 1001;
    }
    .mobile-menu-btn { 
        display: block; 
        z-index: 1001;
    }
    .nav-content { height: 80px !important; }
    .logo img { height: 50px !important; }
    .navbar.scrolled .nav-content { height: 60px !important; }
    .navbar.scrolled .logo img { height: 40px !important; }
    .lang-switcher {
        scale: 0.9;
        margin-right: 0.5rem;
    }
    .hero h1 { font-size: 3.5rem; }
    .hero-footer { gap: 2rem; }
    .concept-grid { grid-template-columns: 1fr; }
    .gastro-cards { grid-template-columns: 1fr; }
    .chefs-grid { grid-template-columns: 1fr; }
    .gastro-dual { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .vip-card { padding: 2rem; }
    .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.5rem; }
    .tagline { font-size: 0.9rem; letter-spacing: 2px; }
    .hero-footer { flex-direction: column; gap: 1rem; }
    .services-grid { grid-template-columns: 1fr; }
}

/* Legal Modal Styles */
.legal-container {
    max-width: 800px;
    padding: 3rem;
    max-height: 90vh;
    overflow-y: auto;
}

.legal-body-text {
    margin-top: 2rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.legal-body-text h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-body-text p {
    margin-bottom: 1.2rem;
}

.legal-body-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-body-text li {
    margin-bottom: 0.5rem;
}

.modal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
    text-align: right;
}

/* Custom scrollbar for legal content */
.legal-container::-webkit-scrollbar {
    width: 6px;
}

.legal-container::-webkit-scrollbar-track {
    background: transparent;
}

.legal-container::-webkit-scrollbar-thumb {
    background: var(--border-glass);
    border-radius: 3px;
}

/* Contact Links Footer */
.contact-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* Hero Logo */
.hero-logo-container {
    max-width: 400px;
    margin: 0.5cm auto -3rem; /* Lowered 0.5cm per request */
}

.hero-main-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 219, 255, 0.6));
    animation: droneFloat 3s infinite ease-in-out, droneGlow 5s infinite alternate linear;
}

@keyframes droneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

@keyframes droneGlow {
    0% { filter: drop-shadow(0 0 20px rgba(0, 219, 255, 0.8)); }
    33% { filter: drop-shadow(0 0 50px rgba(255, 0, 255, 0.8)); }
    66% { filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.8)); }
    100% { filter: drop-shadow(0 0 20px rgba(0, 219, 255, 0.8)); }
}

@media (max-width: 768px) {
    .hero-logo-container {
        max-width: 250px;
    }
}


