/* -------------------------------------------------------------
   CAFENOVA GLOBAL DESIGN SYSTEM & STYLES
   Cinematic Premium Food Branding, Caramel & Coffee Advertising Layout.
   ------------------------------------------------------------- */

:root {
    /* Warm Appetizing + Premium Cafe Color Tokens */
    --cream-white: #FFF7ED;      /* Base Background */
    --caramel-brown: #C67A3D;    /* Secondary / Accents / Interactions */
    --coffee-brown: #4B2E2A;     /* Primary Text / Headers / Dark Panels */
    --soft-beige: #F3E0C7;       /* Card backings / Glass layers */
    --golden-accent: #FFB347;    /* Stars / Active tabs / Sparks */
    --warm-red: #FF5A3C;         /* Main CTA / Hungry Effect Accent */

    /* Text & Neutral Colors */
    --color-bg-deep: var(--cream-white);
    --color-text-primary: var(--coffee-brown);
    --color-text-secondary: #6B514D;
    --color-text-muted: #8E7470;

    /* Glassmorphism Presets */
    --glass-bg: rgba(255, 247, 237, 0.65);
    --glass-border: rgba(198, 122, 61, 0.15);
    --glass-blur: blur(25px);

    /* Shadows - Realistic Premium 3D Depth & Warm Caramel Glows */
    --shadow-neon-orange: 0 10px 25px rgba(255, 179, 71, 0.12);
    --shadow-neon-pink: 0 10px 25px rgba(255, 90, 60, 0.12);
    --shadow-neon-blue: 0 10px 25px rgba(198, 122, 61, 0.1);
    --shadow-neon-purple: 0 10px 25px rgba(75, 46, 42, 0.08);
    --shadow-3d: 0 25px 50px rgba(75, 46, 42, 0.07);

    /* Font System */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);

    --navbar-height: 85px;

    /* 3D Orbit Layout Parameters */
    --orbit-radius-x: 180px;
    --orbit-radius-y: 65px;
    --orbit-item-size: 135px;
}

/* -------------------------------------------------------------
   RESET & BASE STYLES
   ------------------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-deep);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
    background: rgba(198, 122, 61, 0.25);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--caramel-brown);
}

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

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

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* -------------------------------------------------------------
   3D BACKGROUND GLOWING COLOR BLOBS (WARM CARAMEL & GOLD)
   ------------------------------------------------------------- */
.blob-container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -100;
    overflow: hidden;
    background: var(--color-bg-deep);
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.22;
    mix-blend-mode: multiply;
}

.blob-orange {
    width: 45vw;
    height: 45vw;
    background: var(--golden-accent);
    top: -10%;
    left: 5%;
    animation: floatBlob1 25s infinite alternate ease-in-out;
}

.blob-pink {
    width: 50vw;
    height: 50vw;
    background: var(--warm-red);
    bottom: -15%;
    right: 5%;
    animation: floatBlob2 30s infinite alternate ease-in-out;
}

.blob-blue {
    width: 40vw;
    height: 40vw;
    background: var(--soft-beige);
    top: 35%;
    right: -10%;
    animation: floatBlob3 28s infinite alternate ease-in-out;
}

.blob-purple {
    width: 50vw;
    height: 50vw;
    background: var(--caramel-brown);
    bottom: 15%;
    left: -10%;
    animation: floatBlob4 32s infinite alternate ease-in-out;
}

@keyframes floatBlob1 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(8%, 10%) scale(1.15) rotate(90deg); }
}
@keyframes floatBlob2 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(-10%, -8%) scale(0.9) rotate(180deg); }
}
@keyframes floatBlob3 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-12%, 12%) scale(1.1); }
}
@keyframes floatBlob4 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(10%, -10%) scale(1.2) rotate(-90deg); }
}

/* -------------------------------------------------------------
   UTILITY CLASSES & BRAND GRADIENTS
   ------------------------------------------------------------- */
.text-gradient {
    background: linear-gradient(90deg, var(--coffee-brown), var(--caramel-brown), var(--warm-red), var(--golden-accent));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShiftText 12s infinite alternate ease-in-out;
}

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

.text-orange { color: var(--caramel-brown); }
.text-pink { color: var(--warm-red); }
.text-blue { color: var(--coffee-brown); }
.text-purple { color: var(--caramel-brown); }
.text-yellow { color: var(--golden-accent); }

.bg-gradient-orange { background: linear-gradient(135deg, var(--golden-accent), var(--caramel-brown)); color: #fff; }
.bg-gradient-pink { background: linear-gradient(135deg, var(--warm-red), var(--caramel-brown)); color: #fff; }
.bg-gradient-blue { background: linear-gradient(135deg, var(--caramel-brown), var(--coffee-brown)); color: #fff; }
.bg-gradient-purple { background: linear-gradient(135deg, var(--coffee-brown), var(--caramel-brown)); color: #fff; }
.bg-gradient-yellow { background: linear-gradient(135deg, var(--golden-accent), var(--cream-white)); color: var(--coffee-brown); }

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Global Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 36px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(90deg, var(--warm-red), var(--caramel-brown));
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 90, 60, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(255, 90, 60, 0.4);
    background: linear-gradient(90deg, var(--caramel-brown), var(--warm-red));
}

.btn-secondary {
    background: var(--soft-beige);
    border: 1px solid rgba(198, 122, 61, 0.25);
    color: var(--coffee-brown);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(75, 46, 42, 0.05);
}

.btn-secondary:hover {
    background: #fff;
    color: var(--warm-red);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(198, 122, 61, 0.2);
    border-color: var(--caramel-brown);
}

.btn-outline {
    border: 1px solid rgba(198, 122, 61, 0.25);
    color: var(--coffee-brown);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--caramel-brown);
    color: var(--caramel-brown);
    box-shadow: 0 0 15px rgba(198, 122, 61, 0.15);
    transform: translateY(-2px);
}

/* Badge Neon */
.badge-neon {
    display: inline-flex;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(198, 122, 61, 0.2);
    color: var(--caramel-brown);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(198, 122, 61, 0.08);
    animation: pulseBadge 2s infinite ease-in-out;
}

@keyframes pulseBadge {
    0%, 100% { border-color: rgba(198, 122, 61, 0.2); box-shadow: 0 0 15px rgba(198, 122, 61, 0.05); }
    50% { border-color: var(--warm-red); box-shadow: 0 0 20px rgba(255, 90, 60, 0.2); }
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    color: var(--coffee-brown);
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--soft-beige), var(--caramel-brown), var(--warm-red));
    margin: 0 auto 20px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(198, 122, 61, 0.3);
}

.section-subtitle {
    color: var(--color-text-secondary);
    font-size: 17px;
}

/* -------------------------------------------------------------
   3D TILT WRAPPERS AND CARD PERSPECTIVES
   ------------------------------------------------------------- */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

/* Inner card wrapper setup for depth */
.card-inner {
    width: 100%;
    height: 100%;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-3d);
}

/* Sub-elements that lift off */
.tilt-card:hover .card-inner {
    border-color: rgba(198, 122, 61, 0.35);
    box-shadow: 0 30px 60px rgba(75, 46, 42, 0.12);
}

.tilt-card .card-inner > * {
    transform: translateZ(0px);
    transition: transform 0.3s ease;
}

.tilt-card:hover .card-inner > * {
    transform: translateZ(35px); /* Strong 3D lift off */
}

/* Custom interactive overlays */
.card-glow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(198, 122, 61, 0.12) 0%, transparent 60%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tilt-card:hover .card-glow-overlay {
    opacity: 1;
}

/* -------------------------------------------------------------
   NAVBAR (HEADER)
   ------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    background: rgba(255, 247, 237, 0.75);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(198, 122, 61, 0.15);
    z-index: 100;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    height: 75px;
    background: rgba(255, 247, 237, 0.9);
    box-shadow: 0 10px 40px rgba(75, 46, 42, 0.08);
    border-bottom-color: rgba(198, 122, 61, 0.2);
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--coffee-brown);
    display: flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 2px 10px rgba(198, 122, 61, 0.15);
}

.logo span {
    background: linear-gradient(90deg, var(--caramel-brown), var(--warm-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-emoji {
    font-size: 24px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-item {
    font-size: 15px;
    font-weight: 600;
    position: relative;
    padding: 8px 0;
    color: var(--color-text-secondary);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--caramel-brown), var(--warm-red));
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.nav-item:hover, .nav-item.active {
    color: var(--caramel-brown);
}

.nav-item.active::after, .nav-item:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mobile Toggle menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.bar {
    width: 100%;
    height: 2px;
    background-color: var(--coffee-brown);
    transition: var(--transition-fast);
}

/* -------------------------------------------------------------
   MOBILE MENU DRAWER
   ------------------------------------------------------------- */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background: rgba(255, 247, 237, 0.98);
    backdrop-filter: var(--glass-blur);
    border-left: 1px solid rgba(198, 122, 61, 0.2);
    z-index: 200;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
    right: 0;
    box-shadow: -15px 0 50px rgba(75, 46, 42, 0.12);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.drawer-header .logo {
    color: var(--coffee-brown);
}

.drawer-close {
    color: var(--coffee-brown);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-close:hover {
    color: var(--warm-red);
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.drawer-item {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-secondary);
    padding: 10px 0;
    border-bottom: 1px solid rgba(198, 122, 61, 0.1);
}

.drawer-item:hover {
    color: var(--caramel-brown);
    padding-left: 10px;
}

/* -------------------------------------------------------------
   1. HERO SECTION (CINEMATIC TYPOGRAPHY DRIBBBLE STYLE)
   ------------------------------------------------------------- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-top: var(--navbar-height);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 5;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Giant background overlapping typography */
.hero-bg-text {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 17vw;
    font-weight: 900;
    color: var(--coffee-brown);
    opacity: 0.05;
    text-align: center;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    user-select: none;
}

.hero-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
    z-index: 2;
    position: relative;
    padding: 60px 0;
}

.hero-content {
    max-width: 660px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 78px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color: var(--coffee-brown);
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--coffee-brown);
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, var(--caramel-brown), var(--warm-red), var(--golden-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(198, 122, 61, 0.2);
}

.hero-description {
    color: var(--color-text-secondary);
    font-size: 17px;
    margin-bottom: 45px;
    max-width: 560px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hero Right Side Visuals */
.hero-visual-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-3d-scene {
    position: relative;
    width: 440px;
    height: 440px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* -------------------------------------------------------------
   3D ROTATING CIRCULAR ORBIT SHOWCASE
   ------------------------------------------------------------- */
.orbit-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.hero-orbit-brand {
    position: absolute;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 5.5rem;
    color: var(--coffee-brown);
    opacity: 0.08;
    letter-spacing: 6px;
    user-select: none;
    pointer-events: none;
    z-index: 0;
    text-transform: uppercase;
}

.orbit-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.orbit-item {
    position: absolute;
    width: var(--orbit-item-size);
    height: var(--orbit-item-size);
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    cursor: pointer;
    transition: filter 0.35s ease, opacity 0.35s ease, transform 0.1s ease-out;
}

.orbit-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply; /* Blends white backgrounds natively into cream-white base */
    filter: drop-shadow(0 10px 22px rgba(75, 46, 42, 0.15));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.orbit-item:hover .orbit-img {
    transform: translateY(-8px) scale(1.08);
    filter: drop-shadow(0 15px 30px rgba(198, 122, 61, 0.25));
}

.orbit-shadow {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 12px;
    background: radial-gradient(ellipse, rgba(75, 46, 42, 0.25) 0%, transparent 70%);
    filter: blur(5px);
    z-index: -1;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.orbit-item:hover .orbit-shadow {
    transform: translateX(-50%) scale(0.8);
    opacity: 0.5;
}

.orbit-label {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    background: rgba(255, 247, 237, 0.95);
    border: 1px solid rgba(198, 122, 61, 0.25);
    color: var(--coffee-brown);
    box-shadow: 0 4px 12px rgba(75, 46, 42, 0.08);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
    white-space: nowrap;
    z-index: 25;
}

/* Show label on hover of orbit item, or when frontmost class is active */
.orbit-item:hover .orbit-label,
.orbit-item.frontmost .orbit-label {
    opacity: 1;
    transform: translateX(-50%) translateY(-3px);
}
/* Floating particles in 3D scene */
.floating-particle {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0.65;
}

.p1 {
    width: 18px;
    height: 18px;
    background: radial-gradient(circle, var(--golden-accent) 0%, transparent 80%);
    top: 15%;
    left: 8%;
    filter: drop-shadow(0 0 8px var(--golden-accent));
    animation: floatP1 8s ease-in-out infinite;
}

.p2 {
    width: 22px;
    height: 22px;
    background: radial-gradient(circle, var(--warm-red) 0%, transparent 80%);
    bottom: 18%;
    right: 5%;
    filter: drop-shadow(0 0 10px var(--warm-red));
    animation: floatP2 10s ease-in-out infinite;
}

.p3 {
    width: 14px;
    height: 14px;
    background: radial-gradient(circle, var(--soft-beige) 0%, transparent 80%);
    top: 45%;
    right: 12%;
    filter: drop-shadow(0 0 6px var(--caramel-brown));
    animation: floatP3 7s ease-in-out infinite;
}

.p4 {
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--caramel-brown) 0%, transparent 80%);
    bottom: 30%;
    left: 15%;
    filter: drop-shadow(0 0 8px var(--caramel-brown));
    animation: floatP4 9s ease-in-out infinite;
}

/* Scroll indicator mouse */
.hero-scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--color-text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(75, 46, 42, 0.35);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--warm-red);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouseWheel 2s ease infinite;
}

/* Hero Keyframes */
@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes floatCup {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}
@keyframes floatGlow {
    0%, 100% { width: 220px; opacity: 0.8; }
    50% { width: 180px; opacity: 0.4; }
}
@keyframes floatP1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15px, -15px) scale(1.2); }
}
@keyframes floatP2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 10px) scale(0.9); }
}
@keyframes floatP3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, -15px); }
}
@keyframes floatP4 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(12px, 12px); }
}
@keyframes scrollMouseWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 22px; opacity: 0; }
}

/* -------------------------------------------------------------
   2. INFO STRIP SECTION (GLASSMORPHISM & LIGHT PASTEL EDGES)
   ------------------------------------------------------------- */
.info-strip-section {
    padding: 0 0 90px;
    position: relative;
    z-index: 10;
}

.info-strip-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 247, 237, 0.75);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(198, 122, 61, 0.2);
    border-radius: 28px;
    padding: 28px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-3d);
    position: relative;
}

/* Border gradient overlay */
.info-strip-container::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(90deg, rgba(198, 122, 61, 0.3), rgba(255, 90, 60, 0.5), rgba(255, 179, 71, 0.5), rgba(75, 46, 42, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

.info-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.icon-orange {
    background: rgba(198, 122, 61, 0.15);
    color: var(--caramel-brown);
    border: 1px solid rgba(198, 122, 61, 0.3);
    box-shadow: 0 0 10px rgba(198, 122, 61, 0.15);
}

.icon-pink {
    background: rgba(255, 90, 60, 0.15);
    color: var(--warm-red);
    border: 1px solid rgba(255, 90, 60, 0.3);
    box-shadow: 0 0 10px rgba(255, 90, 60, 0.15);
}

.icon-blue {
    background: rgba(75, 46, 42, 0.08);
    color: var(--coffee-brown);
    border: 1px solid rgba(75, 46, 42, 0.2);
    box-shadow: 0 0 10px rgba(75, 46, 42, 0.1);
}

.icon-purple {
    background: rgba(198, 122, 61, 0.15);
    color: var(--caramel-brown);
    border: 1px solid rgba(198, 122, 61, 0.3);
    box-shadow: 0 0 10px rgba(198, 122, 61, 0.15);
}

.icon-green {
    width: 16px;
    height: 16px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-dot-pulse {
    width: 10px;
    height: 10px;
    background-color: #52B788;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(82, 183, 136, 0.5);
}

.status-dot-pulse::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #52B788;
    animation: pulseGlow 2.5s infinite ease-out;
}

.info-divider {
    width: 1px;
    height: 40px;
    background: rgba(198, 122, 61, 0.15);
}

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

.info-val {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--coffee-brown);
}

.info-lbl {
    font-size: 13px;
    color: var(--color-text-secondary);
}

/* -------------------------------------------------------------
   3. MENU SECTION (INTERACTIVE 3D GRID)
   ------------------------------------------------------------- */
.menu-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.menu-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 55px;
}

.menu-tabs {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(198, 122, 61, 0.16);
    border-radius: 50px;
    padding: 8px 12px;
    display: flex;
    gap: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(75, 46, 42, 0.05);
}

.tab-btn {
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.tab-btn i {
    width: 16px;
    height: 16px;
}

.tab-btn:hover {
    color: var(--caramel-brown);
    background: rgba(198, 122, 61, 0.05);
}

.tab-btn.active {
    color: #fff;
    background: linear-gradient(90deg, var(--caramel-brown), var(--warm-red));
    box-shadow: 0 5px 15px rgba(198, 122, 61, 0.25);
}

/* Menu Card Overhaul */
.menu-grid {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-card {
    height: 100%;
}

.menu-card.hidden {
    display: none;
}

.card-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    background-color: var(--soft-beige);
}

.menu-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-card:hover .menu-card-img {
    transform: scale(1.08);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(75, 46, 42, 0.15);
    z-index: 2;
}

.menu-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.menu-item-name {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--coffee-brown);
    line-height: 1.3;
}

.menu-item-price {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 800;
}

.menu-item-desc {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    height: 68px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(198, 122, 61, 0.12);
    padding-top: 15px;
}

.caffeine-level {
    font-size: 12px;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.caffeine-level i {
    width: 14px;
    height: 14px;
    color: var(--golden-accent);
}

.btn-card-order {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(198, 122, 61, 0.08);
    border: 1px solid rgba(198, 122, 61, 0.2);
    color: var(--caramel-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.btn-card-order i {
    width: 16px;
    height: 16px;
}

.btn-card-order:hover {
    background: linear-gradient(135deg, var(--caramel-brown), var(--warm-red));
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 90, 60, 0.25);
    border-color: transparent;
}

/* -------------------------------------------------------------
   4. EXPERIENCE SECTION (CINEMATIC IMAGE LAYER CONTRAST)
   ------------------------------------------------------------- */
.experience-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.experience-grid {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.experience-card {
    height: 380px;
}

.exp-inner {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    z-index: 1;
    border: 1px solid rgba(198, 122, 61, 0.15);
    box-shadow: var(--shadow-3d);
}

.exp-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -2;
}

.experience-card:hover .exp-bg-image {
    transform: scale(1.1);
}

/* Dark contrast overlay for high-contrast coffee brand visualization */
.exp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(75, 46, 42, 0.1) 0%, rgba(75, 46, 42, 0.9) 85%);
    z-index: -1;
}

.exp-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transform: translateZ(0px);
    transition: transform 0.3s ease;
}

.experience-card:hover .exp-content {
    transform: translateZ(40px); /* 3D pop effect */
}

.exp-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.exp-icon-box i {
    width: 20px;
    height: 20px;
}

.bg-purple-glow {
    background: rgba(255, 255, 255, 0.12);
    color: var(--golden-accent);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(255, 179, 71, 0.2);
}

.bg-pink-glow {
    background: rgba(255, 90, 60, 0.2);
    color: var(--golden-accent);
    border: 1px solid rgba(255, 90, 60, 0.3);
    box-shadow: 0 0 15px rgba(255, 90, 60, 0.2);
}

.bg-blue-glow {
    background: rgba(255, 255, 255, 0.12);
    color: var(--golden-accent);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(255, 179, 71, 0.2);
}

.bg-orange-glow {
    background: rgba(198, 122, 61, 0.25);
    color: var(--golden-accent);
    border: 1px solid rgba(198, 122, 61, 0.3);
    box-shadow: 0 0 15px rgba(198, 122, 61, 0.2);
}

.exp-title {
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 800;
    color: var(--cream-white);
}

.exp-desc {
    font-size: 14px;
    color: var(--soft-beige);
    line-height: 1.5;
}

.exp-schedule {
    font-size: 12px;
    font-weight: 700;
    color: var(--golden-accent);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.exp-schedule i {
    width: 14px;
    height: 14px;
    color: var(--golden-accent);
}

/* Specific Glow Borders matching elements */
.exp-glow-border {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 2px;
    pointer-events: none;
    opacity: 0.15;
    transition: opacity 0.3s ease;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.border-purple { background: linear-gradient(135deg, var(--caramel-brown), var(--coffee-brown)); }
.border-pink { background: linear-gradient(135deg, var(--warm-red), var(--caramel-brown)); }
.border-blue { background: linear-gradient(135deg, var(--soft-beige), var(--caramel-brown)); }
.border-orange { background: linear-gradient(135deg, var(--golden-accent), var(--warm-red)); }

.experience-card:hover .exp-glow-border {
    opacity: 1;
}

/* -------------------------------------------------------------
   5. TESTIMONIALS SECTION (3D CAROUSEL)
   ------------------------------------------------------------- */
.testimonials-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.testimonials-container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    padding: 10px;
}

.testimonial-card .card-inner {
    padding: 40px;
}

.stars {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
}

.stars i {
    width: 18px;
    height: 18px;
}

.fill-star {
    fill: currentColor;
}

.testimonial-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--coffee-brown);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(198, 122, 61, 0.25);
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--coffee-brown);
}

.user-title {
    font-size: 13px;
    color: var(--color-text-secondary);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(198, 122, 61, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    width: 30px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--caramel-brown), var(--warm-red));
    box-shadow: 0 0 10px rgba(198, 122, 61, 0.4);
}

/* -------------------------------------------------------------
   6. GALLERY SECTION (CINEMATIC FOOD GRID)
   ------------------------------------------------------------- */
.gallery-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.gallery-grid {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(198, 122, 61, 0.15);
    box-shadow: var(--shadow-3d);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(255, 247, 237, 0.92) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-hover-overlay {
    opacity: 1;
}

.gallery-tag {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--coffee-brown);
    letter-spacing: 0.5px;
}

/* Parallax sizing overrides */
.item-tall {
    grid-row: span 2;
}

.item-wide {
    grid-column: span 2;
}

/* Responsive configurations for gallery items */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    .item-tall, .item-wide {
        grid-row: span 1;
        grid-column: span 1;
    }
}

/* -------------------------------------------------------------
   7. CONTACT SECTION (WARM PASTEL & MOCK MAP)
   ------------------------------------------------------------- */
.contact-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.contact-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Shift gradient on background contact frame */
.contact-details-card {
    height: auto;
}

.contact-details-card .card-inner {
    padding: 40px;
    border-color: rgba(198, 122, 61, 0.25);
}

.contact-card-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--coffee-brown);
    margin-bottom: 10px;
}

.contact-card-intro {
    font-size: 15px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-item .contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

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

.contact-lbl {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-val {
    font-size: 15px;
    color: var(--coffee-brown);
    line-height: 1.5;
}

a.contact-val:hover {
    color: var(--caramel-brown);
}

/* Stylized Map Box */
.contact-map-wrapper {
    position: relative;
    width: 100%;
    height: 440px;
}

.neon-map-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-3d);
}

.map-glow-border {
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--soft-beige), var(--caramel-brown));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.mock-dark-map {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--soft-beige); /* Warm base map */
    overflow: hidden;
}

/* Light Map grid visual styling */
.mock-dark-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(75, 46, 42, 0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(75, 46, 42, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.map-street {
    position: absolute;
    background: var(--cream-white); /* Light street background */
}

.street-1 {
    width: 100%;
    height: 20px;
    top: 35%;
    transform: rotate(-5deg);
}

.street-2 {
    width: 25px;
    height: 100%;
    left: 40%;
    transform: rotate(15deg);
}

.street-3 {
    width: 100%;
    height: 15px;
    bottom: 25%;
    transform: rotate(20deg);
}

.map-route-line {
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--warm-red), var(--golden-accent));
    box-shadow: 0 0 10px rgba(198, 122, 61, 0.3);
    top: 35%;
    left: 0;
    transform: rotate(-5deg);
    z-index: 1;
}

.map-landmark {
    position: absolute;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(198, 122, 61, 0.2);
    font-size: 11px;
    color: var(--color-text-secondary);
    z-index: 1;
}

.hospital {
    top: 25%;
    left: 10%;
}

.garden {
    bottom: 15%;
    right: 15%;
}

.map-pulse-pin {
    position: absolute;
    top: 33%;
    left: 41%;
    z-index: 3;
}

.pin-dot {
    width: 14px;
    height: 14px;
    background: var(--warm-red);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--warm-red);
}

.pulse-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--warm-red);
    animation: ringWave 2s infinite ease-out;
}

.pin-tooltip {
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--coffee-brown);
    color: #fff;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(75, 46, 42, 0.35);
}

.pin-tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: var(--coffee-brown);
}

.map-overlay-instructions {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(198, 122, 61, 0.2);
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 4;
    box-shadow: 0 5px 15px rgba(75, 46, 42, 0.05);
}

.map-overlay-instructions i {
    color: var(--caramel-brown);
    flex-shrink: 0;
}

.map-overlay-instructions span {
    font-size: 12px;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

@keyframes ringWave {
    0% { transform: scale(0.4); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* -------------------------------------------------------------
   8. FOOTER (DARK CAFE BRAND LUXURY PANEL)
   ------------------------------------------------------------- */
.footer {
    position: relative;
    padding: 80px 0 110px; /* Space for action bar on mobile */
    background: var(--coffee-brown); /* Coffee dark background */
    border-top: 3px solid var(--caramel-brown);
    color: var(--soft-beige);
    z-index: 10;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
}

.footer-branding {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-branding .logo {
    color: var(--cream-white);
}

.footer-tag {
    font-size: 14px;
    color: var(--soft-beige);
    line-height: 1.6;
    max-width: 320px;
    opacity: 0.85;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--cream-white);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--soft-beige);
    opacity: 0.85;
}

.footer-links a:hover {
    color: var(--golden-accent);
    padding-left: 5px;
    opacity: 1;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--soft-beige);
    transition: var(--transition-fast);
}

.social-icons a i {
    width: 16px;
    height: 16px;
}

.social-icons a:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 0 15px rgba(198, 122, 61, 0.25);
}

.social-icons a:nth-child(1):hover { border-color: var(--warm-red); box-shadow: 0 0 15px rgba(255, 90, 60, 0.3); color: #fff; background: var(--warm-red); }
.social-icons a:nth-child(2):hover { border-color: var(--caramel-brown); box-shadow: 0 0 15px rgba(198, 122, 61, 0.3); color: #fff; background: var(--caramel-brown); }
.social-icons a:nth-child(3):hover { border-color: var(--golden-accent); box-shadow: 0 0 15px rgba(255, 179, 71, 0.3); color: #fff; background: var(--golden-accent); }
.social-icons a:nth-child(4):hover { border-color: var(--warm-red); box-shadow: 0 0 15px rgba(255, 90, 60, 0.3); color: #fff; background: var(--warm-red); }

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 4px;
    overflow: hidden;
}

.newsletter-form:focus-within {
    border-color: var(--golden-accent);
    box-shadow: 0 0 10px rgba(255, 179, 71, 0.15);
}

.newsletter-input {
    background: none;
    border: none;
    padding: 10px 16px;
    color: #fff;
    font-size: 13px;
    width: 100%;
    outline: none;
}

.newsletter-input::placeholder {
    color: var(--soft-beige);
    opacity: 0.6;
}

.newsletter-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--caramel-brown), var(--warm-red));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.newsletter-btn i {
    width: 14px;
    height: 14px;
}

.newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255, 90, 60, 0.3);
}

.footer-bottom {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 13px;
    color: var(--soft-beige);
    opacity: 0.6;
}

/* -------------------------------------------------------------
   STICKY MOBILE ACTION BAR
   ------------------------------------------------------------- */
.mobile-action-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 440px;
    height: 64px;
    background: rgba(255, 247, 237, 0.85);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(198, 122, 61, 0.25);
    border-radius: 40px;
    z-index: 90;
    display: none;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 15px 35px rgba(75, 46, 42, 0.1);
}

.mobile-action-bar::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 40px;
    padding: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), var(--warm-red), var(--caramel-brown), rgba(255, 255, 255, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.mobile-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--color-text-secondary);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 70px;
    height: 100%;
}

.mobile-action-item i {
    width: 18px;
    height: 18px;
}

.mobile-action-item:hover, .mobile-action-item:active {
    color: var(--caramel-brown);
}

/* -------------------------------------------------------------
   BOOKING RESERVATION MODAL
   ------------------------------------------------------------- */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(75, 46, 42, 0.6);
    backdrop-filter: blur(15px);
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-modal-overlay.open {
    display: flex;
    opacity: 1;
}

.booking-modal-card {
    width: 90%;
    max-width: 600px;
}

.booking-modal-card .card-inner {
    padding: 40px;
    border-color: rgba(198, 122, 61, 0.25);
    background: var(--cream-white);
    box-shadow: 0 40px 100px rgba(75, 46, 42, 0.15);
}

.modal-close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    color: var(--color-text-secondary);
    font-size: 24px;
    transition: var(--transition-fast);
    z-index: 10;
}

.modal-close-btn i {
    width: 20px;
    height: 20px;
}

.modal-close-btn:hover {
    color: var(--warm-red);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 30px;
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(198, 122, 61, 0.12);
    border: 1px solid rgba(198, 122, 61, 0.25);
    color: var(--caramel-brown);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.modal-badge i {
    width: 12px;
    height: 12px;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--coffee-brown);
    line-height: 1.3;
}

.modal-subtitle {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-top: 5px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--coffee-brown);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    width: 14px;
    height: 14px;
    color: var(--caramel-brown);
}

.form-group input, .form-group select, .form-group textarea {
    background: rgba(243, 224, 199, 0.3);
    border: 1px solid rgba(75, 46, 42, 0.15);
    border-radius: 14px;
    padding: 14px 18px;
    color: var(--coffee-brown);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--caramel-brown);
    box-shadow: 0 0 10px rgba(198, 122, 61, 0.15);
    background: #fff;
}

.btn-submit-booking {
    width: 100%;
    margin-top: 10px;
}

/* Success Receipt Layout */
.booking-success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0;
}

.success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(82, 183, 136, 0.15);
    color: #52B788;
    border: 1px solid rgba(82, 183, 136, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(82, 183, 136, 0.15);
}

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

.success-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--coffee-brown);
    margin-bottom: 10px;
}

.success-subtitle {
    font-size: 14px;
    color: var(--color-text-secondary);
    max-width: 400px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.booking-details-summary {
    width: 100%;
    background: rgba(243, 224, 199, 0.4);
    border: 1px solid rgba(198, 122, 61, 0.25);
    border-radius: 20px;
    padding: 24px;
    text-align: left;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(75, 46, 42, 0.05);
}

.booking-details-summary h5 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    border-bottom: 1px solid rgba(198, 122, 61, 0.2);
    padding-bottom: 10px;
    margin-bottom: 5px;
    color: var(--coffee-brown);
}

.booking-details-summary p {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.booking-details-summary strong {
    color: var(--coffee-brown);
}

/* -------------------------------------------------------------
   RESPONSIVENESS (MOBILE AND TABLETS)
   ------------------------------------------------------------- */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
        padding: 40px 0;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-description {
        max-width: 600px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .info-strip-container {
        padding: 24px 30px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    :root {
        --navbar-height: 75px;
        --orbit-radius-x: 145px;
        --orbit-radius-y: 50px;
        --orbit-item-size: 110px;
    }
    
    .navbar {
        height: var(--navbar-height);
    }
    
    .nav-links, .nav-actions .btn-outline {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-tagline {
        font-size: 20px;
    }
    
    .info-strip-container {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .info-divider {
        width: 100%;
        height: 1px;
        background: rgba(198, 122, 61, 0.15);
    }
    
    .info-item {
        justify-content: flex-start;
    }
    
    .mobile-action-bar {
        display: flex;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 46px;
    }
    
    .hero-3d-scene {
        width: 320px;
        height: 320px;
    }
    
    :root {
        --orbit-radius-x: 105px;
        --orbit-radius-y: 35px;
        --orbit-item-size: 85px;
    }
    .hero-orbit-brand {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .tab-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}