/* ===================================
   BARBAROSSA Great Value Catering
   Premium Hotel-Style CSS
   =================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary: #c5a059;
    --primary-dark: #a67c32;
    --primary-light: #dfc18d;
    --background: #0f1113;
    --surface: #1a1d21;
    --surface-light: #25292e;
    --text: #ffffff;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --radius: 12px;

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-elegant: 'Cormorant Garamond', serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1400px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--surface);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 17, 19, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--background);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

.logo-tagline {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-normal);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    color: var(--background) !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600 !important;
}

.nav-cta:hover {
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.3);
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--primary);
    transition: all var(--transition-normal);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(15, 17, 19, 0.7) 0%,
            rgba(15, 17, 19, 0.4) 50%,
            rgba(15, 17, 19, 0.9) 100%);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-badge span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(48px, 10vw, 90px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--font-elegant);
    font-size: clamp(20px, 4vw, 28px);
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 400;
    font-style: italic;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 14px;
}

.hero-feature svg {
    color: var(--primary);
    width: 20px;
    height: 20px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    color: var(--background);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--text);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: var(--primary);
    border-radius: 3px;
    animation: scroll 2s infinite;
}

@keyframes scroll {

    0%,
    100% {
        top: 10px;
        opacity: 1;
    }

    50% {
        top: 25px;
        opacity: 0.3;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   PACKAGES SECTION
   =================================== */
.packages {
    padding: var(--section-padding) 0;
    background: var(--surface);
    position: relative;
}

.packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(36px, 6vw, 56px);
    margin-bottom: 20px;
}

.section-description {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.package-card {
    background: var(--surface);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 1px solid transparent;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    border-color: rgba(197, 160, 89, 0.3);
}

.package-card.selected {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.3);
}

.package-card.popular {
    border-color: var(--primary);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    color: var(--background);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
}

.package-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, var(--surface));
}

.package-content {
    padding: 30px;
}

.package-name {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--primary);
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 15px;
}

.package-price .currency {
    font-size: 20px;
    color: var(--text-muted);
}

.package-price .amount {
    font-size: 48px;
    font-weight: 700;
    font-family: var(--font-display);
}

.package-price .per {
    color: var(--text-muted);
    font-size: 14px;
}

.package-items {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-features {
    list-style: none;
    margin-bottom: 25px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 14px;
}

.package-features li svg {
    color: var(--primary);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.package-select-btn {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.package-select-btn:hover,
.package-card.selected .package-select-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    color: var(--background);
    border-color: transparent;
}

.package-card.special {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, var(--surface) 0%, #1c1810 100%);
}

.package-badge.special {
    background: linear-gradient(to right, #f59e0b, #d97706);
    color: white;
}

.bonus-item {
    color: #ffd700;
    font-weight: 600;
}

/* ===================================
   MENU SECTION
   =================================== */
.menu-builder {
    padding: var(--section-padding) 0;
    background: var(--background);
}

/* Order Summary Container & Flying Logic */
/* Ordering Flow Layout */
.ordering-flow {
    padding: var(--section-padding) 0;
    background: var(--background);
}

.ordering-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
    position: relative;
}

.ordering-sidebar {
    position: sticky;
    top: 100px;
}

@media (max-width: 1200px) {
    .ordering-layout {
        gap: 30px;
        grid-template-columns: 1fr 340px;
    }
}

@media (max-width: 992px) {
    .ordering-layout {
        grid-template-columns: 1fr;
    }

    .ordering-sidebar {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        top: auto;
        z-index: 1000;
    }

    .order-summary {
        max-height: 80vh;
        overflow-y: auto;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    }
}

.ordering-content {
    min-width: 0;
    /* Prevent grid blowout */
}

/* Option Buttons (Delivery & Serving) */
.option-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 8px;
}

.option-btn {
    background: var(--surface-light);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
}

.option-btn:hover {
    border-color: var(--primary-light);
}

.option-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.delivery-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 15px;
    text-align: center;
}

/* Admin Panel Styles */
.admin-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.admin-modal.show {
    display: flex;
}

.admin-modal-content {
    background: var(--surface);
    padding: 40px;
    border-radius: var(--radius);
    width: 100%;
    max-width: 400px;
    position: relative;
    border: 1px solid var(--border);
}

.admin-input {
    width: 100%;
    background: var(--surface-light);
    border: 1px solid var(--border);
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    color: white;
}

.admin-dashboard-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background);
    display: none;
    z-index: 10001;
    overflow-y: auto;
}

.admin-dashboard-overlay.show {
    display: block;
}

.admin-dashboard {
    max-width: 800px;
    margin: 40px auto;
    background: var(--surface);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--border);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.admin-section {
    margin-bottom: 30px;
}

.admin-section h4 {
    margin-bottom: 15px;
    color: var(--primary);
}

.pkg-admin-item {
    background: var(--surface-light);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: grid;
    grid-template-columns: 1fr 100px 50px;
    gap: 15px;
    align-items: center;
}

.btn-logout {
    background: #ef4444;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.menu-categories {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Category States (Renovated) */
.menu-category {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

/* Gray out pending categories that are NOT open */
.menu-category.pending:not(.open) {
    opacity: 0.6;
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
}

.menu-category.completed .category-header {
    background: rgba(197, 160, 89, 0.1);
    /* Gold tint for completed */
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.menu-category.open {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 1;
    /* Ensure open is fully visible even if pending */
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: var(--surface);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.category-header:hover {
    background: rgba(197, 160, 89, 0.1);
}

.category-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.category-name {
    font-size: 20px;
    color: var(--text);
}

.category-hint {
    font-size: 13px;
    color: var(--text-muted);
}

.category-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-selected {
    background: var(--primary);
    color: var(--background);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.category-toggle svg {
    color: var(--primary);
    width: 24px;
    height: 24px;
    transition: transform var(--transition-normal);
}

.menu-category.open .category-toggle svg {
    transform: rotate(180deg);
}

.category-items {
    display: none;
    padding: 20px 30px 30px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.menu-category.open .category-items {
    display: grid;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.menu-item:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: rgba(197, 160, 89, 0.3);
}

.menu-item.selected {
    background: rgba(197, 160, 89, 0.15);
    border-color: var(--primary);
}

.item-radio {
    width: 22px;
    height: 22px;
    border: 2px solid var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.menu-item.selected .item-radio {
    border-color: var(--primary);
    background: var(--primary);
}

.menu-item.selected .item-radio::after {
    content: '✓';
    font-size: 12px;
    color: var(--background);
    font-weight: 700;
}

.item-name {
    font-size: 14px;
    color: var(--text);
}

.item-name .recommended {
    color: var(--primary);
    font-size: 12px;
    margin-left: 5px;
}

.category-locked {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    text-align: center;
    color: var(--text-muted);
}

.category-locked svg {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    opacity: 0.5;
}

/* Order Summary Sidebar */
.order-summary {
    background: var(--surface);
    border-radius: 20px;
    padding: 30px;
    height: fit-content;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-header svg {
    color: var(--primary);
    width: 28px;
    height: 28px;
}

.summary-header h3 {
    font-size: 22px;
}

.summary-section {
    margin-bottom: 25px;
}

.summary-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.summary-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.summary-items {
    list-style: none;
}

.summary-items li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.summary-items li:last-child {
    border-bottom: none;
}

.summary-items .category {
    color: var(--text-muted);
}

.summary-items .item {
    color: var(--text);
}

.pax-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pax-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-size: 20px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.pax-btn:hover {
    background: var(--primary);
    color: var(--background);
}

.pax-count {
    font-size: 24px;
    font-weight: 700;
    min-width: 50px;
    text-align: center;
}

.summary-total {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid var(--primary);
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.total-label {
    font-size: 16px;
    color: var(--text-muted);
}

.total-amount {
    font-size: 32px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--primary);
}

.order-btn {
    width: 100%;
    padding: 18px;
    background: #25D366;
    color: var(--text);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition-normal);
    margin-top: 20px;
}

/* Make summary scrolling logic */
@media (min-width: 1201px) {
    .order-summary {
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }
}

.summary-total {
    margin-top: auto;
    padding-top: 25px;
    border-top: 2px solid var(--primary);
    position: sticky;
    bottom: 0;
    background: var(--surface);
    z-index: 10;
    padding-bottom: 20px;
}

.order-btn:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.order-btn svg {
    width: 24px;
    height: 24px;
}

/* ===================================
   ADD-ONS SECTION
   =================================== */
.addons {
    padding: var(--section-padding) 0;
    background: var(--surface);
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.addon-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border);
    transition: all var(--transition-normal);
}

.addon-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-5px);
}

.addon-card.selected {
    border-color: var(--primary);
    background: rgba(197, 160, 89, 0.05);
}

.addon-qty-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.addon-qty-control button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
}

.addon-qty-control button:hover {
    background: var(--primary);
    color: var(--background);
}

.addon-variants {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.variant-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px 0;
}

.variant-option:hover {
    color: var(--primary);
}

.variant-option input[type="radio"] {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}

.addon-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.addon-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.addon-title {
    font-size: 20px;
}

.addon-price {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

.addon-items {
    list-style: none;
}

.addon-items li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 14px;
}

.addon-items li:last-child {
    border-bottom: none;
}

/* ===================================
   INFO SECTION
   =================================== */
.info {
    padding: var(--section-padding) 0;
    background: var(--background);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all var(--transition-normal);
}

.info-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.info-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.info-text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--surface);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

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

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--background);
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.footer-description {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--background);
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--primary);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-badges {
    display: flex;
    gap: 15px;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-badge svg {
    color: var(--primary);
    width: 16px;
    height: 16px;
}

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--text);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1200px) {
    .menu-container {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 20px 20px 0 0;
        z-index: 100;
        max-height: 80vh;
        overflow-y: auto;
        transform: translateY(calc(100% - 70px));
        transition: transform var(--transition-normal);
        display: flex;
        flex-direction: column;
    }

    .order-summary.expanded {
        transform: translateY(0);
    }

    .summary-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        cursor: pointer;
        margin: -30px -30px 20px;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 20px 20px 0 0;
        height: 70px;
    }

    .summary-toggle span {
        font-weight: 600;
        color: var(--gold);
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .category-items {
        grid-template-columns: 1fr;
    }

    .pax-selector {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   LOADING ANIMATION
   =================================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--bg-primary);
    margin: 0 auto 20px;
    animation: logoSpin 2s ease-in-out infinite;
}

@keyframes logoSpin {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.loader-text {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 3px;
}