/* ========================================
   EGYPTIAN FOOD - MODERN & ELEGANT
   ======================================== */

/* CSS Variables */
:root {
    --brown-950: #0f0500;
    --brown-900: #1c0a00;
    --brown-800: #3d1a0f;
    --brown-700: #5c2d1f;
    --brown-600: #78350f;
    --brown-500: #92400e;
    --brown-400: #b45309;

    /* Premium Gold Palette */
    --gold-700: #b8860b;
    --gold-600: #d4af37;
    --gold-500: #FFD700;
    --gold-400: #FFDF00;
    --gold-300: #FFE55C;
    --gold-200: #FFED88;
    --gold-100: #FFF8DC;

    /* Luxury Accents */
    --copper: #B87333;
    --bronze: #CD7F32;
    --rose-gold: #E0BFB8;
    --teal: #008B8B;
    --turquoise: #40E0D0;
    --burgundy: #800020;

    --cream: #FFF8DC;
    --dark-brown: #2C1810;

    /* Refined spacing for elegance */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.25rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 5rem;

    /* Fluid typography */
    --text-xs: clamp(0.75rem, 0.9vw, 0.875rem);
    --text-sm: clamp(0.875rem, 1vw, 1rem);
    --text-base: clamp(1rem, 1.1vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1.25vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.5vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 2vw, 1.875rem);
    --text-3xl: clamp(1.875rem, 2.5vw, 2.25rem);
    --text-4xl: clamp(2.25rem, 3vw, 3rem);

    /* Subtle Elegant Shadows */
    --shadow-soft: 0 1px 3px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 2px 12px rgba(0, 0, 0, 0.08), 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 4px 24px rgba(0, 0, 0, 0.1), 0 8px 40px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 2px 16px rgba(255, 215, 0, 0.15), 0 4px 32px rgba(255, 215, 0, 0.08);
    --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.15), 0 0 40px rgba(255, 215, 0, 0.08);
    --shadow-luxury: 0 6px 30px rgba(184, 134, 11, 0.15), 0 2px 12px rgba(255, 215, 0, 0.12);

    /* Luxury Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-elegant: cubic-bezier(0.35, 0.1, 0.25, 1);
    --transition-fast: 0.3s var(--ease-luxury);
    --transition-medium: 0.5s var(--ease-elegant);
    --transition-slow: 0.8s var(--ease-smooth);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

html::-webkit-scrollbar {
    width: 12px;
}

html::-webkit-scrollbar-track {
    background: var(--brown-900);
}

html::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg,
        var(--gold-500),
        var(--copper));
    border-radius: 6px;
    border: 2px solid var(--brown-900);
}

html::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg,
        var(--gold-400),
        var(--gold-500));
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.12), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(184, 115, 51, 0.15), transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(0, 139, 139, 0.08), transparent 60%),
        linear-gradient(135deg, var(--brown-900) 0%, var(--brown-800) 35%, #2c1810 65%, var(--brown-900) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: var(--cream);
    line-height: 1.7;
    font-size: var(--text-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.03) 2px, rgba(0, 0, 0, 0.03) 4px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

body[dir="rtl"] {
    direction: rtl;
}

/* Selection styles */
::selection {
    background: var(--gold-500);
    color: var(--dark-brown);
    text-shadow: none;
}

::-moz-selection {
    background: var(--gold-500);
    color: var(--dark-brown);
    text-shadow: none;
}

/* Focus styles */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--gold-500);
    outline-offset: 4px;
    border-radius: 4px;
}

/* ========================================
   NAVIGATION - MODERN
   ======================================== */
#mainNav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg,
        rgba(44, 24, 16, 0.95) 0%,
        rgba(60, 30, 15, 0.9) 100%);
    backdrop-filter: blur(30px) saturate(200%);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg,
        transparent,
        rgba(255, 215, 0, 0.5),
        rgba(205, 127, 50, 0.5),
        rgba(255, 215, 0, 0.5),
        transparent) 1;
    box-shadow: var(--shadow-gold);
    transition: all var(--transition-medium);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), transparent 50%),
        linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 50%, var(--bronze) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow:
        var(--shadow-gold),
        inset 0 2px 8px rgba(255, 255, 255, 0.4),
        inset 0 -2px 8px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 70%
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.logo-icon:hover {
    transform: scale(1.15) rotate(360deg);
    box-shadow:
        var(--shadow-glow),
        inset 0 2px 12px rgba(255, 255, 255, 0.6);
}

.brand-name {
    font-size: var(--text-2xl);
    font-weight: 600;
    background: linear-gradient(135deg,
        var(--gold-100) 0%,
        var(--gold-500) 30%,
        var(--gold-400) 50%,
        var(--copper) 70%,
        var(--gold-500) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    animation: gradientShift 6s ease infinite;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.tagline {
    font-size: var(--text-xs);
    color: rgba(254, 243, 199, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-base);
    font-weight: 500;
    color: rgba(255, 248, 220, 0.9);
    text-decoration: none;
    border-radius: 50px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.2),
        rgba(205, 127, 50, 0.2));
    opacity: 0;
    transition: opacity var(--transition-fast);
    border-radius: 50px;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover {
    color: var(--gold-500);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-link.active {
    background: linear-gradient(135deg,
        var(--gold-500) 0%,
        var(--gold-600) 50%,
        var(--copper) 100%);
    color: var(--dark-brown);
    box-shadow: var(--shadow-gold);
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: shimmer 2s infinite;
}

.language-switcher {
    display: flex;
    gap: 4px;
    margin-left: var(--space-lg);
    padding-left: var(--space-lg);
    border-left: 1px solid rgba(251, 191, 36, 0.15);
}

.lang-btn {
    padding: 6px 14px;
    font-size: var(--text-sm);
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: rgba(255, 248, 220, 0.8);
    background: transparent;
    position: relative;
    overflow: hidden;
}

.lang-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.15),
        rgba(205, 127, 50, 0.15));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

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

.lang-btn:hover {
    color: var(--gold-500);
    border-color: rgba(255, 215, 0, 0.6);
    transform: scale(1.05);
}

.lang-btn.active {
    background: linear-gradient(135deg,
        var(--gold-500),
        var(--gold-600));
    color: var(--dark-brown);
    box-shadow: var(--shadow-gold);
    border-color: transparent;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gold-200);
    border-radius: 2px;
    transition: all 0.3s var(--ease-smooth);
}

/* ========================================
   HERO - FLOWING & MODERN
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl) var(--space-lg);
    margin-top: 80px;
    position: relative;
}

.hero-content {
    max-width: 1400px;
    padding: var(--space-3xl) var(--space-2xl);
    border-radius: 50px;
    background: linear-gradient(135deg,
        rgba(44, 24, 16, 0.4) 0%,
        rgba(60, 30, 15, 0.3) 50%,
        rgba(44, 24, 16, 0.4) 100%);
    backdrop-filter: blur(30px) saturate(140%);
    box-shadow:
        0 20px 70px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(255, 215, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.08);
    border: 3px solid transparent;
    position: relative;
    text-align: center;
    animation: heroFadeIn 1.2s var(--ease-elegant);
    overflow: hidden;
}

/* Animated gradient ring border */
.hero-content::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50px;
    padding: 3px;
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.7) 0%,
        rgba(205, 127, 50, 0.6) 25%,
        rgba(0, 139, 139, 0.5) 50%,
        rgba(205, 127, 50, 0.6) 75%,
        rgba(255, 215, 0, 0.7) 100%);
    background-size: 400% 400%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderRotate 10s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes borderRotate {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(ellipse at 30% 40%,
        rgba(255, 215, 0, 0.12) 0%,
        rgba(205, 127, 50, 0.08) 30%,
        transparent 65%);
    animation: ambientGlow 12s ease-in-out infinite;
    z-index: -2;
}

@keyframes ambientGlow {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
    }
    33% {
        transform: scale(1.1) rotate(5deg);
        opacity: 0.8;
    }
    66% {
        transform: scale(0.95) rotate(-5deg);
        opacity: 0.7;
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hieroglyph-decorations {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    perspective: 1000px;
}

.hieroglyph {
    font-size: 2.5rem;
    color: var(--gold-500);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
    animation: hieroglyphPulse 4s ease-in-out infinite;
}

.hieroglyph:nth-child(1) { animation-delay: 0s; }
.hieroglyph:nth-child(2) { animation-delay: 0.5s; }
.hieroglyph:nth-child(3) { animation-delay: 1s; }

@keyframes hieroglyphPulse {
    0%, 100% {
        transform: scale(1) rotateY(0deg);
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
    }
    50% {
        transform: scale(1.15) rotateY(180deg);
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.7));
    }
}

.hieroglyph:hover {
    transform: scale(1.3) rotateY(360deg);
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.9));
    cursor: pointer;
}

.hieroglyph.large {
    font-size: 3.5rem;
    opacity: 1;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6));
    background: linear-gradient(135deg,
        var(--gold-500),
        var(--copper),
        var(--gold-500));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: float 5s ease-in-out infinite,
               glow 2s ease-in-out infinite,
               gradientShift 4s ease infinite;
}

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

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4)); }
    50% { filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8)); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    font-family: Georgia, 'Times New Roman', serif;
    background: linear-gradient(135deg,
        var(--gold-100) 0%,
        var(--gold-500) 20%,
        var(--gold-400) 40%,
        var(--copper) 60%,
        var(--gold-500) 80%,
        var(--gold-100) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.03em;
    line-height: 1.1;
    animation: gradientShift 8s ease infinite;
    filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.4));
    position: relative;
    z-index: 1;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--space-lg) 0 var(--space-md);
    position: relative;
}

.divider-line {
    height: 2px;
    width: 120px;
    background: linear-gradient(to right,
        transparent,
        rgba(255, 215, 0, 0.3),
        var(--gold-500),
        rgba(255, 215, 0, 0.3),
        transparent);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    position: relative;
    overflow: hidden;
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
    }
}

.divider-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent);
    animation: shimmerLine 3s ease-in-out infinite;
}

@keyframes shimmerLine {
    0% { left: -100%; }
    100% { left: 200%; }
}

.divider-diamond {
    margin: 0 var(--space-lg);
    font-size: 1.8rem;
    color: var(--gold-500);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.7));
    animation: diamondPulse 2s ease-in-out infinite;
    display: inline-block;
    position: relative;
}

@keyframes diamondPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.7));
    }
    50% {
        transform: scale(1.2) rotate(90deg);
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 1));
    }
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-family: Georgia, 'Times New Roman', serif;
    background: linear-gradient(135deg,
        var(--gold-200),
        var(--gold-400),
        var(--turquoise),
        var(--gold-400),
        var(--gold-200));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
    font-weight: 400;
    opacity: 1;
    animation: gradientShift 10s ease infinite;
    position: relative;
    z-index: 1;
}

.hero-description {
    font-size: var(--text-lg);
    color: rgba(254, 243, 199, 0.8);
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.8;
    font-weight: 400;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: var(--space-md) var(--space-2xl);
    font-size: var(--text-xl);
    font-weight: 700;
    background: linear-gradient(135deg,
        var(--gold-500) 0%,
        var(--gold-600) 25%,
        var(--copper) 50%,
        var(--gold-600) 75%,
        var(--gold-500) 100%);
    background-size: 200% 200%;
    color: var(--dark-brown);
    text-decoration: none;
    border-radius: 50px;
    box-shadow:
        var(--shadow-luxury),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.5);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: gradientShift 3s ease infinite;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        transparent 20%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 80%);
    transform: translateX(-100%) skewX(-25deg);
    transition: transform 0.8s var(--ease-luxury);
}

.cta-button::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg,
        var(--gold-500),
        var(--copper),
        var(--gold-500));
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.cta-button:hover::before {
    transform: translateX(200%) skewX(-25deg);
}

.cta-button:hover::after {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        var(--shadow-glow),
        0 12px 40px rgba(255, 215, 0, 0.6);
    border-color: rgba(255, 215, 0, 0.8);
}


/* ========================================
   PAGE CONTENT - AIRY & SPACIOUS
   ======================================== */
.page-content {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: var(--space-2xl) var(--space-xl);
    position: relative;
    z-index: 2;
}

.page-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding: var(--space-2xl) var(--space-xl) var(--space-md);
    position: relative;
    animation: heroFadeIn 0.8s var(--ease-smooth);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg,
        var(--gold-500) 0%,
        rgba(255, 215, 0, 0.5) 50%,
        transparent 100%);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: flowDown 2s ease-in-out infinite;
}

@keyframes flowDown {
    0%, 100% {
        opacity: 0.4;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(10px);
    }
}

/* Stagger fade-in animation for menu sections */
.menu-section {
    animation: fadeInUp 0.6s var(--ease-smooth) backwards;
}

.menu-section:nth-child(1) { animation-delay: 0.1s; }
.menu-section:nth-child(2) { animation-delay: 0.2s; }
.menu-section:nth-child(3) { animation-delay: 0.3s; }
.menu-section:nth-child(4) { animation-delay: 0.4s; }
.menu-section:nth-child(5) { animation-delay: 0.5s; }
.menu-section:nth-child(6) { animation-delay: 0.6s; }

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

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    font-family: Georgia, 'Times New Roman', serif;
    background: linear-gradient(135deg,
        var(--gold-200) 0%,
        var(--gold-400) 25%,
        var(--gold-500) 50%,
        var(--gold-400) 75%,
        var(--gold-200) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    margin-bottom: var(--space-lg);
    letter-spacing: 0.05em;
    line-height: 1.2;
    position: relative;
    animation: titleShine 8s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.3));
}

@keyframes titleShine {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

.page-subtitle {
    font-size: var(--text-xl);
    color: rgba(254, 243, 199, 0.8);
    margin-top: var(--space-md);
    margin-bottom: var(--space-2xl);
    font-weight: 400;
    line-height: 1.6;
}

/* ========================================
   MENU - CLEAN & MODERN
   ======================================== */
.menu-controls {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.menu-control-btn {
    padding: var(--space-xs) var(--space-lg);
    background: transparent;
    color: rgba(255, 248, 220, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50px;
    font-size: var(--text-sm);
    font-weight: 400;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.menu-control-btn:hover {
    color: var(--gold-400);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-1px);
}

.menu-container {
    margin-bottom: var(--space-2xl);
}

.menu-section {
    margin-bottom: var(--space-xl);
}

.menu-section-header {
    width: 100%;
    padding: var(--space-md) 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: visible;
}

.menu-section-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg,
        var(--gold-500),
        var(--copper),
        var(--gold-500));
    transition: width var(--transition-medium);
}

.menu-section-header:hover::after {
    width: 100%;
}

.menu-section-header:hover {
    border-bottom-color: rgba(255, 215, 0, 0.3);
}

.menu-section-header:hover .menu-section-title {
    transform: translateX(4px);
}

.menu-section-title {
    font-size: var(--text-xl);
    font-weight: 500;
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--gold-400);
    letter-spacing: 0.02em;
    transition: all var(--transition-fast);
}

.menu-section-info {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.item-count {
    color: var(--gold-400);
    font-weight: 500;
    font-size: var(--text-sm);
    opacity: 0.8;
}

.expand-icon {
    color: var(--gold-500);
    font-size: var(--text-2xl);
    transition: transform var(--transition-medium);
    font-weight: 300;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.expand-icon.expanded {
    transform: rotate(90deg);
    color: var(--copper);
}

.menu-items {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s var(--ease-elegant);
}

.menu-items.open {
    max-height: 10000px;
}

.menu-items-content {
    margin-top: var(--space-lg);
    background: transparent;
    border: none;
    padding: 0 var(--space-md);
}

.menu-item {
    padding: var(--space-lg) 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.08);
    transition: all var(--transition-fast);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-lg);
}

.menu-item::before {
    content: '';
    position: absolute;
    left: -var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(180deg,
        var(--gold-500),
        var(--copper));
    opacity: 0;
    transition: all var(--transition-fast);
}

.menu-item:hover::before {
    opacity: 1;
    height: 60%;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    padding-left: var(--space-sm);
}

.menu-item-content {
    flex: 1;
    min-width: 0;
}

.menu-item-name {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--gold-300);
    margin-bottom: var(--space-xs);
    transition: color var(--transition-fast);
    line-height: 1.4;
}

.menu-item:hover .menu-item-name {
    color: var(--gold-400);
}

.menu-item-description {
    font-size: var(--text-sm);
    color: rgba(255, 248, 220, 0.5);
    line-height: 1.6;
    font-weight: 300;
}

.menu-note {
    text-align: center;
    padding: var(--space-2xl) 0;
    background: transparent;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    margin-top: var(--space-3xl);
}

.menu-note p {
    font-size: var(--text-lg);
    color: rgba(254, 243, 199, 0.8);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

/* ========================================
   ABOUT - ELEGANT WITH EFFECTS
   ======================================== */
.story-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: calc(var(--space-3xl) * 2);
    position: relative;
    background: linear-gradient(135deg,
        rgba(44, 24, 16, 0.4) 0%,
        rgba(60, 30, 15, 0.3) 50%,
        rgba(44, 24, 16, 0.4) 100%);
    border-radius: 45px;
    backdrop-filter: blur(25px) saturate(140%);
    border: 3px solid transparent;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(255, 215, 0, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.08);
    transform-style: preserve-3d;
    transition: transform 0.3s ease-out;
    overflow: hidden;
}

/* Visual connector flowing from header */
.story-content::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 80px;
    background: radial-gradient(ellipse at center top,
        rgba(255, 215, 0, 0.3) 0%,
        rgba(205, 127, 50, 0.2) 40%,
        transparent 70%);
    filter: blur(20px);
    pointer-events: none;
    z-index: -3;
    animation: connectorGlow 3s ease-in-out infinite;
}

@keyframes connectorGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Animated gradient ring border */
.story-content::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 45px;
    padding: 3px;
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.7) 0%,
        rgba(205, 127, 50, 0.6) 25%,
        rgba(0, 139, 139, 0.5) 50%,
        rgba(205, 127, 50, 0.6) 75%,
        rgba(255, 215, 0, 0.7) 100%);
    background-size: 400% 400%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderRotate 10s linear infinite;
    pointer-events: none;
    z-index: -1;
}

.story-intro {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-family: Georgia, 'Times New Roman', serif;
    background: linear-gradient(135deg,
        var(--gold-200) 0%,
        var(--gold-400) 50%,
        var(--gold-200) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: textShine 6s ease-in-out infinite;
    margin-bottom: var(--space-3xl);
    line-height: 1.7;
    font-weight: 500;
    text-align: center;
    position: relative;
}

@keyframes textShine {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.story-intro::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--gold-500) 50%,
        transparent 100%);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.story-paragraph {
    font-size: var(--text-lg);
    color: rgba(254, 243, 199, 0.9);
    margin-bottom: var(--space-2xl);
    line-height: 1.9;
    letter-spacing: 0.02em;
    font-weight: 300;
    position: relative;
    padding-left: var(--space-xl);
    border-left: 2px solid transparent;
    transition: all 0.6s var(--ease-smooth);
}

.story-paragraph::before {
    content: '𓂀';
    position: absolute;
    left: -10px;
    top: 0;
    font-size: 1.5rem;
    color: var(--gold-500);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.6s var(--ease-smooth);
}

.story-paragraph:hover {
    border-left-color: rgba(255, 215, 0, 0.3);
    padding-left: calc(var(--space-xl) + 10px);
    color: rgba(254, 243, 199, 1);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.story-paragraph:hover::before {
    opacity: 0.6;
    transform: translateX(0);
}

.story-paragraph:last-of-type {
    margin-bottom: var(--space-3xl);
}

/* Story Timeline */
.story-timeline {
    margin-top: var(--space-3xl);
    position: relative;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--space-xl);
    position: relative;
    margin-bottom: var(--space-2xl);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.2) 0%,
        rgba(205, 127, 50, 0.3) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold-500);
    box-shadow:
        0 0 30px rgba(255, 215, 0, 0.3),
        inset 0 2px 8px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% {
        box-shadow:
            0 0 30px rgba(255, 215, 0, 0.3),
            inset 0 2px 8px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow:
            0 0 50px rgba(255, 215, 0, 0.5),
            inset 0 2px 12px rgba(255, 255, 255, 0.3);
    }
}

.timeline-line {
    width: 2px;
    flex: 1;
    margin-top: var(--space-md);
    background: linear-gradient(180deg,
        rgba(255, 215, 0, 0.5) 0%,
        rgba(255, 215, 0, 0.2) 50%,
        rgba(255, 215, 0, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg,
        var(--gold-500),
        var(--copper));
    animation: lineGrow 1.5s ease-out forwards;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@keyframes lineGrow {
    to { height: 100%; }
}

.timeline-content {
    padding-top: var(--space-sm);
}

.timeline-item .story-paragraph {
    margin-bottom: 0;
    text-align: left;
}

/* Scroll Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery Showcase */
.gallery-showcase {
    margin: var(--space-3xl) 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    font-family: Georgia, 'Times New Roman', serif;
    background: linear-gradient(135deg,
        var(--gold-100) 0%,
        var(--gold-500) 50%,
        var(--gold-100) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: var(--space-2xl);
    animation: gradientShift 6s ease infinite;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    perspective: 1000px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-medium);
    transform-style: preserve-3d;
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
}

.gallery-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(44, 24, 16, 0.6) 0%,
        rgba(60, 30, 15, 0.5) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
}

.placeholder-icon {
    font-size: 4rem;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
    transition: all var(--transition-medium);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.95) 0%,
        rgba(205, 127, 50, 0.95) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: var(--space-lg);
    text-align: center;
}

.gallery-overlay h4 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: var(--space-sm);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s;
}

.gallery-overlay p {
    font-size: var(--text-base);
    color: rgba(44, 24, 16, 0.9);
    font-weight: 500;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.15s;
}

.gallery-item:hover {
    transform: translateY(-12px) rotateX(5deg) rotateY(5deg);
    box-shadow:
        0 20px 60px rgba(255, 215, 0, 0.4),
        0 0 80px rgba(255, 215, 0, 0.2);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

.gallery-item:hover .placeholder-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.8));
}

.gallery-item:hover .gallery-image-placeholder {
    transform: scale(1.1);
    border-color: rgba(255, 215, 0, 0.6);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.filter-btn {
    padding: var(--space-sm) var(--space-xl);
    background: transparent;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    color: var(--gold-300);
    font-size: var(--text-base);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        var(--gold-500) 0%,
        var(--copper) 100%);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.filter-btn span {
    position: relative;
    z-index: 1;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--gold-500);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.filter-btn.active {
    background: linear-gradient(135deg,
        var(--gold-500) 0%,
        var(--copper) 100%);
    color: var(--dark-brown);
}

.filter-btn:hover::before {
    opacity: 0.2;
}

.filter-btn.active::before {
    opacity: 1;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-2xl);
    margin: var(--space-3xl) 0;
    padding: var(--space-3xl) var(--space-xl);
    background: transparent;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: -10%;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 60%);
    filter: blur(80px);
    animation: pulse 8s ease-in-out infinite;
    z-index: -1;
}

.stat-card {
    text-align: center;
    padding: var(--space-lg);
    position: relative;
    z-index: 1;
    transition: transform var(--transition-medium);
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    font-family: Georgia, 'Times New Roman', serif;
    background: linear-gradient(135deg,
        var(--gold-100) 0%,
        var(--gold-500) 50%,
        var(--gold-100) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
    line-height: 1.2;
    animation: gradientShift 4s ease infinite;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.3));
    display: block;
}

.stat-number::after {
    content: '+';
    font-size: 0.7em;
    opacity: 0.8;
}

.stat-label {
    font-size: var(--text-base);
    color: rgba(254, 243, 199, 0.8);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s ease;
    mix-blend-mode: difference;
    left: -20px;
    top: -20px;
}

.custom-cursor.active {
    width: 60px;
    height: 60px;
    border-color: var(--gold-500);
    background: rgba(255, 215, 0, 0.1);
    left: -30px;
    top: -30px;
}

.custom-cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold-500);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    left: -4px;
    top: -4px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    transition: all 0.1s ease;
}

.custom-cursor-dot.active {
    width: 0;
    height: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    margin-top: calc(var(--space-3xl) * 2);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    text-align: center;
    padding: var(--space-2xl);
    background: rgba(44, 24, 16, 0.3);
    border-radius: 30px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle,
        rgba(255, 215, 0, 0.15) 0%,
        transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.8s var(--ease-smooth);
    border-radius: 50%;
}

.feature-card:hover::before {
    width: 300%;
    height: 300%;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 4.5rem;
    margin-bottom: var(--space-lg);
    display: block;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
    transition: all 0.5s var(--ease-smooth);
    animation: floatIcon 4s ease-in-out infinite;
}

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

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotateY(360deg);
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6));
}

.feature-title {
    font-size: var(--text-xl);
    font-weight: 600;
    font-family: Georgia, 'Times New Roman', serif;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-md);
    transition: all 0.3s var(--ease-smooth);
}

.feature-card:hover .feature-title {
    transform: scale(1.05);
    letter-spacing: 0.05em;
}

.feature-description {
    font-size: var(--text-base);
    color: rgba(254, 243, 199, 0.75);
    line-height: 1.8;
    font-weight: 300;
    transition: color 0.3s var(--ease-smooth);
}

.feature-card:hover .feature-description {
    color: rgba(254, 243, 199, 0.95);
}

/* ========================================
   CONTACT - PROFESSIONAL
   ======================================== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.contact-info-card {
    padding: var(--space-xl);
    background: rgba(44, 24, 16, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    transition: all var(--transition-medium);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: var(--shadow-soft);
    background: rgba(44, 24, 16, 0.3);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    opacity: 0.8;
    transition: transform var(--transition-medium);
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-info-card h3 {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--gold-300);
    margin-bottom: var(--space-sm);
}

.contact-info-card a {
    color: rgba(255, 248, 220, 0.8);
    text-decoration: none;
    font-size: var(--text-base);
    transition: all var(--transition-fast);
    position: relative;
}

.contact-info-card a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg,
        var(--gold-500),
        var(--copper));
    transition: width var(--transition-fast);
}

.contact-info-card a:hover {
    color: var(--gold-500);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.contact-info-card a:hover::after {
    width: 100%;
}

.contact-info-card p {
    color: rgba(254, 243, 199, 0.7);
    font-size: var(--text-base);
    line-height: 1.6;
}

.contact-info-card ul {
    list-style: none;
    padding: 0;
}

.contact-info-card li {
    padding: var(--space-sm) 0;
    color: rgba(254, 243, 199, 0.75);
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
    transition: all 0.25s;
}

.contact-info-card li:last-child {
    border-bottom: none;
}

.contact-info-card li:hover {
    padding-left: var(--space-sm);
    color: var(--gold-100);
}

.contact-form-section {
    padding: var(--space-3xl) calc(var(--space-3xl) * 1.5);
    background: linear-gradient(135deg,
        rgba(44, 24, 16, 0.4) 0%,
        rgba(60, 30, 15, 0.3) 50%,
        rgba(44, 24, 16, 0.4) 100%);
    backdrop-filter: blur(25px) saturate(140%);
    border-radius: 45px;
    border: 3px solid transparent;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(255, 215, 0, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

/* Animated gradient ring border */
.contact-form-section::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 45px;
    padding: 3px;
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.7) 0%,
        rgba(205, 127, 50, 0.6) 25%,
        rgba(0, 139, 139, 0.5) 50%,
        rgba(205, 127, 50, 0.6) 75%,
        rgba(255, 215, 0, 0.7) 100%);
    background-size: 400% 400%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderRotate 10s linear infinite;
    pointer-events: none;
    z-index: -1;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background:
        radial-gradient(ellipse at 40% 30%, rgba(255, 215, 0, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 60% 70%, rgba(0, 139, 139, 0.1) 0%, transparent 45%);
    animation: ambientGlow 18s ease-in-out infinite;
    z-index: -2;
}

.contact-form-section h2 {
    font-size: var(--text-2xl);
    font-weight: 500;
    font-family: Georgia, 'Times New Roman', serif;
    text-align: center;
    color: var(--gold-300);
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: var(--text-base);
    font-weight: 500;
    color: rgba(254, 243, 199, 0.8);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
    padding: var(--space-md);
    font-size: var(--text-base);
    font-family: inherit;
    background: rgba(20, 10, 5, 0.6);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    color: var(--cream);
    transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 248, 220, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-500);
    background: rgba(20, 10, 5, 0.8);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2),
                inset 0 2px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

button[type="submit"] {
    padding: var(--space-md) var(--space-2xl);
    font-size: var(--text-lg);
    font-weight: 700;
    background: linear-gradient(135deg,
        var(--gold-500) 0%,
        var(--gold-600) 25%,
        var(--copper) 50%,
        var(--gold-600) 75%,
        var(--gold-500) 100%);
    background-size: 200% 200%;
    color: var(--dark-brown);
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-luxury),
                inset 0 2px 4px rgba(255, 255, 255, 0.4),
                inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease infinite;
}

button[type="submit"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        transparent 20%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 80%);
    transform: translateX(-100%) skewX(-25deg);
    transition: transform 0.8s var(--ease-luxury);
}

button[type="submit"]:hover::before {
    transform: translateX(200%) skewX(-25deg);
}

button[type="submit"]:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-glow),
                0 12px 40px rgba(255, 215, 0, 0.6);
    border-color: rgba(255, 215, 0, 0.8);
}

button[type="submit"]:active {
    transform: translateY(-2px) scale(1.03);
}

/* Contact Page Redesign - New Styles */
.contact-hero-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.primary-contact-card {
    padding: calc(var(--space-3xl) * 1.5);
    background: linear-gradient(135deg,
        rgba(44, 24, 16, 0.5) 0%,
        rgba(60, 30, 15, 0.4) 50%,
        rgba(44, 24, 16, 0.5) 100%);
    backdrop-filter: blur(30px) saturate(140%);
    border-radius: 40px;
    border: 3px solid transparent;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(255, 215, 0, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.primary-contact-card::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 40px;
    padding: 3px;
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.7) 0%,
        rgba(205, 127, 50, 0.6) 25%,
        rgba(0, 139, 139, 0.5) 50%,
        rgba(205, 127, 50, 0.6) 75%,
        rgba(255, 215, 0, 0.7) 100%);
    background-size: 400% 400%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderRotate 10s linear infinite;
    pointer-events: none;
    z-index: -1;
}

.primary-contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 120px rgba(255, 215, 0, 0.25);
}

.contact-card-icon {
    font-size: 5rem;
    margin-bottom: var(--space-xl);
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.4));
    animation: floatIcon 4s ease-in-out infinite;
}

.primary-contact-card h2 {
    font-size: var(--text-2xl);
    font-weight: 600;
    font-family: Georgia, 'Times New Roman', serif;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-lg);
}

.contact-main-link {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--gold-200);
    text-decoration: none;
    margin-bottom: var(--space-lg);
    transition: all 0.3s var(--ease-smooth);
    position: relative;
}

.contact-main-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    transition: width 0.4s var(--ease-smooth);
}

.primary-contact-card:hover .contact-main-link {
    color: var(--gold-400);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.primary-contact-card:hover .contact-main-link::after {
    width: 100%;
}

.contact-card-description {
    font-size: var(--text-base);
    color: rgba(254, 243, 199, 0.75);
    line-height: 1.7;
}

.contact-info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.info-section {
    padding: var(--space-2xl);
    background: rgba(44, 24, 16, 0.3);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: all 0.4s var(--ease-smooth);
}

.info-section:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.info-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.info-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.info-header h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--gold-400);
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    transition: all 0.3s var(--ease-smooth);
}

.info-item:hover {
    background: rgba(0, 0, 0, 0.25);
    transform: translateX(4px);
}

.info-label {
    font-weight: 500;
    color: var(--gold-300);
    font-size: var(--text-base);
}

.info-value {
    color: rgba(254, 243, 199, 0.85);
    font-size: var(--text-base);
    text-align: right;
}

.service-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    color: rgba(254, 243, 199, 0.85);
    font-size: var(--text-base);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s var(--ease-smooth);
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    color: var(--gold-200);
    padding-left: var(--space-sm);
}

.service-bullet {
    color: var(--gold-500);
    font-size: 0.8rem;
    transition: all 0.3s var(--ease-smooth);
}

.service-item:hover .service-bullet {
    transform: scale(1.3);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.contact-cta-section {
    padding: calc(var(--space-3xl) * 2);
    background: linear-gradient(135deg,
        rgba(44, 24, 16, 0.5) 0%,
        rgba(60, 30, 15, 0.4) 50%,
        rgba(44, 24, 16, 0.5) 100%);
    backdrop-filter: blur(30px) saturate(140%);
    border-radius: 45px;
    border: 3px solid transparent;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(255, 215, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-cta-section::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 45px;
    padding: 3px;
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.8) 0%,
        rgba(205, 127, 50, 0.7) 25%,
        rgba(0, 139, 139, 0.6) 50%,
        rgba(205, 127, 50, 0.7) 75%,
        rgba(255, 215, 0, 0.8) 100%);
    background-size: 400% 400%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderRotate 10s linear infinite;
    pointer-events: none;
    z-index: -1;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    font-family: Georgia, 'Times New Roman', serif;
    background: linear-gradient(135deg,
        var(--gold-200) 0%,
        var(--gold-400) 50%,
        var(--gold-200) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-lg);
}

.cta-content p {
    font-size: var(--text-lg);
    color: rgba(254, 243, 199, 0.8);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

.large-cta {
    display: inline-block;
    padding: var(--space-lg) calc(var(--space-2xl) * 1.5);
    font-size: var(--text-xl);
    font-weight: 700;
    background: linear-gradient(135deg,
        var(--gold-500) 0%,
        var(--gold-600) 25%,
        var(--copper) 50%,
        var(--gold-600) 75%,
        var(--gold-500) 100%);
    background-size: 200% 200%;
    color: var(--dark-brown);
    text-decoration: none;
    border: 3px solid rgba(255, 215, 0, 0.6);
    border-radius: 60px;
    box-shadow:
        0 10px 40px rgba(255, 215, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.large-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent);
    transition: left 0.6s;
}

.large-cta:hover::before {
    left: 100%;
}

.large-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 20px 60px rgba(255, 215, 0, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.5);
    background-position: 100% 50%;
}

/* ========================================
   FOOTER - MINIMAL
   ======================================== */
footer {
    background: linear-gradient(180deg,
        rgba(30, 15, 8, 0.8),
        rgba(40, 20, 10, 0.9));
    backdrop-filter: blur(30px) saturate(150%);
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg,
        transparent,
        rgba(255, 215, 0, 0.4),
        rgba(205, 127, 50, 0.4),
        rgba(255, 215, 0, 0.4),
        transparent) 1;
    padding: var(--space-2xl) var(--space-xl);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
}

.footer-content {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-hieroglyphs {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.footer-hieroglyphs span {
    color: var(--gold-500);
    opacity: 0.7;
    transition: all var(--transition-medium);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    cursor: pointer;
}

.footer-hieroglyphs span:hover {
    transform: scale(1.3) rotate(360deg);
    opacity: 1;
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.7));
    color: var(--gold-400);
}

.footer-tagline {
    font-size: var(--text-base);
    font-family: Georgia, 'Times New Roman', serif;
    background: linear-gradient(135deg,
        var(--gold-200),
        var(--gold-400),
        var(--gold-200));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xs);
    animation: gradientShift 6s ease infinite;
}

.footer-copyright {
    color: rgba(255, 248, 220, 0.6);
    font-size: var(--text-sm);
}

/* ========================================
   CART BUTTON & SIDEBAR
   ======================================== */
.cart-btn {
    position: relative;
    background: transparent;
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-gold);
    margin-right: var(--space-md);
    overflow: hidden;
    padding: 0;
}

.cart-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
    transition: all var(--transition-medium);
}

.cart-overlay-icon {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    transition: all var(--transition-fast);
    z-index: 1;
}

.cart-btn:hover .cart-overlay-icon {
    opacity: 1;
}

.cart-btn:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255, 215, 0, 0.7);
}

.cart-btn:hover .cart-image {
    filter: brightness(1) contrast(1.2);
    transform: scale(1.05);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(450px, 90vw);
    background: linear-gradient(135deg,
        rgba(44, 24, 16, 0.98),
        rgba(60, 30, 15, 0.98));
    backdrop-filter: blur(40px) saturate(150%);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5),
                0 0 100px rgba(255, 215, 0, 0.15);
    z-index: 2001;
    transform: translateX(100%);
    transition: transform var(--transition-medium);
    display: flex;
    flex-direction: column;
    border-left: 2px solid rgba(255, 215, 0, 0.3);
}

.cart-sidebar.open {
    transform: translateX(0);
}

.cart-header {
    padding: var(--space-xl);
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg,
        rgba(255, 215, 0, 0.1),
        transparent);
}

.cart-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    font-family: Georgia, 'Times New Roman', serif;
    background: linear-gradient(135deg,
        var(--gold-100),
        var(--gold-500),
        var(--gold-100));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

.cart-close {
    background: rgba(255, 71, 87, 0.2);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: #ff4757;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cart-close:hover {
    background: rgba(255, 71, 87, 0.3);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-lg);
}

.cart-empty {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    color: rgba(255, 248, 220, 0.6);
}

.cart-empty-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: var(--space-lg);
    opacity: 0.4;
}

.cart-item {
    background: linear-gradient(135deg,
        rgba(60, 30, 15, 0.6),
        rgba(44, 24, 16, 0.6));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.cart-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg,
        var(--gold-500),
        var(--copper));
    border-radius: 20px 0 0 20px;
}

.cart-item:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateX(4px);
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-sm);
}

.cart-item-name {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--gold-400);
    margin: 0;
}

.cart-item-remove {
    background: rgba(255, 71, 87, 0.2);
    border: none;
    color: #ff4757;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cart-item-remove:hover {
    background: rgba(255, 71, 87, 0.3);
    transform: scale(1.1);
}

.cart-item-description {
    font-size: var(--text-sm);
    color: rgba(255, 248, 220, 0.6);
    margin-bottom: var(--space-sm);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.quantity-label {
    font-size: var(--text-sm);
    color: rgba(255, 248, 220, 0.7);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(20, 10, 5, 0.6);
    border-radius: 50px;
    padding: 4px;
}

.quantity-btn {
    background: linear-gradient(135deg,
        var(--gold-500),
        var(--gold-600));
    border: none;
    color: var(--dark-brown);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.quantity-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.quantity-value {
    min-width: 32px;
    text-align: center;
    font-weight: 600;
    color: var(--gold-400);
}

.cart-footer {
    padding: var(--space-xl);
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    background: linear-gradient(180deg,
        transparent,
        rgba(255, 215, 0, 0.05));
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--gold-400);
}

.cart-request-btn {
    display: block;
    width: 100%;
    padding: var(--space-md);
    text-align: center;
    background: linear-gradient(135deg,
        var(--gold-500),
        var(--gold-600),
        var(--copper));
    background-size: 200% 200%;
    color: var(--dark-brown);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: var(--text-lg);
    border: 2px solid rgba(255, 215, 0, 0.5);
    box-shadow: var(--shadow-luxury);
    transition: all var(--transition-medium);
    margin-bottom: var(--space-md);
    animation: gradientShift 3s ease infinite;
}

.cart-request-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-glow);
}

.cart-clear-btn {
    display: block;
    width: 100%;
    padding: var(--space-sm);
    background: rgba(255, 71, 87, 0.2);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: #ff4757;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cart-clear-btn:hover {
    background: rgba(255, 71, 87, 0.3);
    transform: translateY(-2px);
}

.add-to-cart-btn {
    background: transparent;
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--gold-400);
    padding: var(--space-xs);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-weight: 400;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg,
        var(--gold-500),
        var(--gold-600));
    border-color: transparent;
    color: var(--dark-brown);
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.add-to-cart-btn:active {
    transform: scale(0.95);
}

/* ========================================
   RESPONSIVE - FLUID
   ======================================== */
@media (max-width: 768px) {
    :root {
        --space-xl: 1.5rem;
        --space-2xl: 2.5rem;
        --space-3xl: 3.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(40, 20, 10, 0.95);
        backdrop-filter: blur(20px);
        padding: var(--space-md);
        gap: var(--space-xs);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s var(--ease-smooth);
    }

    .nav-links.open {
        max-height: 500px;
    }

    .language-switcher {
        border-left: none;
        border-top: 1px solid rgba(251, 191, 36, 0.15);
        padding-left: 0;
        padding-top: var(--space-md);
        margin-left: 0;
        margin-top: var(--space-md);
        justify-content: center;
    }

    .hero-content {
        padding: var(--space-xl);
        border-radius: 24px;
    }

    .page-content {
        padding: var(--space-xl) var(--space-md);
    }

    .story-content,
    .contact-form-section {
        padding: var(--space-xl);
        border-radius: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .menu-section-header {
        padding: var(--space-lg);
    }

    .menu-item {
        padding: var(--space-md);
    }

    .timeline-item {
        grid-template-columns: 50px 1fr;
        gap: var(--space-md);
        margin-bottom: var(--space-xl);
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
        padding: var(--space-xl);
    }

    .stat-number {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: var(--space-md);
    }

    .gallery-item:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 var(--space-md);
    }

    .hero-content {
        padding: var(--space-lg);
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .hieroglyph-decorations {
        gap: var(--space-md);
    }
}
