/* ============================================================
   ARASAN COFFEE — Premium Design System & Stylesheet
   ============================================================ */

/* ========================
   DESIGN TOKENS (VARS)
   ======================== */
:root {
    /* Color Palette */
    --primary-dark:      #120905;  /* Deep rich roasted espresso */
    --primary-mid:       #25160E;  /* Warm medium dark coffee */
    --primary-light:     #3d281d;  /* Coffee bean brown */
    --accent-gold:       #D4A373;  /* Luxurious warm gold */
    --accent-gold-hover: #E3B98E;  /* Lighter vibrant gold */
    --accent-cream:      #FAF6F0;  /* Creamy milk white */
    --bg-cream-dark:     #F3EBE0;  /* Soft beige latte */
    --white:             #ffffff;
    --text-dark:         #1E120B;  /* Deep dark coffee text */
    --text-muted:        #6C5B52;  /* Mild brown-gray description text */
    --success-green:     #2B7A4F;  /* Healthy green for veg/fresh items */
    --chili-red:         #C0392B;  /* Spiced red for hot menu items */

    /* Typography scale */
    --font-heading:      'Outfit', 'Playfair Display', Georgia, serif;
    --font-body:         'Plus Jakarta Sans', sans-serif;

    /* Spacing & Borders */
    --radius-full:       9999px;
    --radius-lg:         24px;
    --radius-md:         16px;
    --radius-sm:         10px;

    /* Shadow & Glass Effects */
    --shadow-sm:         0 4px 12px rgba(18, 9, 5, 0.04);
    --shadow-md:         0 8px 24px rgba(18, 9, 5, 0.08);
    --shadow-lg:         0 16px 40px rgba(18, 9, 5, 0.14);
    --shadow-gold:       0 8px 24px rgba(212, 163, 115, 0.25);
    
    --glass-bg:          rgba(255, 255, 255, 0.7);
    --glass-bg-dark:     rgba(18, 9, 5, 0.75);
    --glass-border:      rgba(255, 255, 255, 0.15);
    --glass-border-dark: rgba(212, 163, 115, 0.12);

    /* Transitions */
    --transition-smooth: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ========================
   GLOBAL BASE STYLES
   ======================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) var(--primary-dark);
}

body {
    font-family: var(--font-body);
    background-color: var(--accent-cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-hover);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-dark);
}

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

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

ul {
    list-style: none;
}

.section-padding {
    padding: 100px 0;
    position: relative;
}

.accent {
    color: var(--accent-gold);
}

/* ========================
   BUTTONS
   ======================== */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--accent-gold), #b58353);
    color: var(--primary-dark);
    padding: 14px 34px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-bounce);
    cursor: pointer;
}

.btn-primary-custom:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(212, 163, 115, 0.4);
    color: var(--primary-dark);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    padding: 14px 34px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-order {
    background: linear-gradient(135deg, var(--accent-gold), #b8864a);
    color: var(--primary-dark) !important;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    transition: var(--transition-bounce);
    white-space: nowrap;
    box-shadow: var(--shadow-gold);
}

.btn-order:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgba(200, 162, 124, 0.4);
}

/* ========================
   SECTION HEADER
   ======================== */
.section-tag {
    display: inline-block;
    background: rgba(212, 163, 115, 0.15);
    color: #b58353;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(2.1rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 18px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
}

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

/* ========================
   NAVBAR & MOBILE MENU
   ======================== */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

/* Scrolled Navbar Style */
#navbar.scrolled {
    padding: 14px 0;
    background: var(--glass-bg-dark);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border-dark);
    box-shadow: var(--shadow-lg);
}

.nav-logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-left: 10px;
    letter-spacing: 0.5px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition-smooth);
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--accent-gold) !important;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Mobile Toggle Hamburger button */
.hamburger-btn {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 1100;
    position: relative;
}

.hamburger-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
}

.hamburger-btn.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger-btn.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Overlay Menu */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(18, 9, 5, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    height: 100vh;
    background: var(--primary-dark);
    z-index: 1100;
    padding: 40px 32px;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--glass-border-dark);
}

.mobile-menu.open {
    right: 0;
}

.mobile-close-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    align-self: flex-end;
    padding: 8px;
    transition: var(--transition-smooth);
}

.mobile-close-btn:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

.mobile-logo {
    text-align: center;
    margin: 20px 0 40px;
}

.mobile-logo-img {
    max-width: 90px;
    height: auto;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    display: block;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-gold);
    padding-left: 26px;
}

.mobile-nav-link i {
    width: 20px;
    color: var(--accent-gold);
    font-size: 1.1rem;
}

/* ========================
   HERO SECTION
   ======================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1559056199-641a0ac8b55e?w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18, 9, 5, 0.94) 30%, rgba(37, 22, 14, 0.75) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.typed-cursor {
    color: var(--accent-gold);
    font-weight: 300;
    margin-left: 2px;
    animation: blinkCursor 0.8s infinite;
}

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

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 530px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-cup-wrapper {
    position: relative;
    max-width: 460px;
    width: 100%;
}

.hero-cup-img {
    width: 100%;
    filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.65));
    animation: floatCup 6s ease-in-out infinite;
}

.hero-cup-glow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 50px;
    background: radial-gradient(ellipse, rgba(212, 163, 115, 0.35), transparent 70%);
    filter: blur(14px);
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes floatCup {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1.5deg); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.9; transform: translateX(-50%) scale(1.3); }
}

.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: bounceDown 2s ease-in-out infinite;
    z-index: 2;
    font-weight: 700;
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.9; }
}

/* ========================
   ABOUT SECTION
   ======================== */
.about-section {
    background-color: var(--white);
}

.about-img-wrapper {
    position: relative;
    padding-right: 20px;
    padding-bottom: 20px;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 4px solid var(--accent-cream);
}

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

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--accent-gold), #b58353);
    color: var(--primary-dark);
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    z-index: 5;
    animation: slowSpin 16s linear infinite;
}

.about-img-badge i {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

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

.about-content .section-title {
    margin-top: 10px;
}

.about-text {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 24px;
    background: var(--accent-cream);
    border-radius: var(--radius-md);
    border-left: 5px solid var(--accent-gold);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.highlight-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-mid), var(--primary-dark));
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.highlight-item h6 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 3px;
}

.highlight-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ========================
   MENU SECTION
   ======================== */
.menu-section {
    background-color: var(--accent-cream);
}

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 50px;
}

.menu-tab {
    background: var(--white);
    color: var(--primary-mid);
    border: 1px solid rgba(212, 163, 115, 0.3);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--primary-mid);
    color: var(--white);
    border-color: var(--primary-mid);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 22, 14, 0.25);
}

.menu-tab i {
    font-size: 0.95rem;
    color: var(--accent-gold);
}

.menu-tab:hover i,
.menu-tab.active i {
    color: var(--accent-gold-hover);
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 163, 115, 0.1);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.menu-card-header {
    padding: 30px 28px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(212, 163, 115, 0.1);
}

.menu-card-header i {
    font-size: 2rem;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-card-header h4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

/* Category header gradients */
.menu-card-header.tea { 
    background: linear-gradient(135deg, #2e593e, #1a3324); 
}
.menu-card-header.tea i { background: rgba(255, 255, 255, 0.12); }

.menu-card-header.coffee { 
    background: linear-gradient(135deg, var(--primary-mid), var(--primary-dark)); 
}
.menu-card-header.coffee i { background: rgba(255, 255, 255, 0.12); }

.menu-card-header.baked { 
    background: linear-gradient(135deg, #a6723c, #70471f); 
}
.menu-card-header.baked i { background: rgba(255, 255, 255, 0.12); }

.menu-card-header.fried { 
    background: linear-gradient(135deg, #b24823, #7c2d11); 
}
.menu-card-header.fried i { background: rgba(255, 255, 255, 0.12); }

.menu-card-header.snacks { 
    background: linear-gradient(135deg, #87742d, #544715); 
}
.menu-card-header.snacks i { background: rgba(255, 255, 255, 0.12); }

.menu-card-header.beverages { 
    background: linear-gradient(135deg, #2b6e8a, #164357); 
}
.menu-card-header.beverages i { background: rgba(255, 255, 255, 0.12); }

/* Menu Items List */
.menu-items-list {
    padding: 16px 28px 28px;
}

.menu-items-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px dashed rgba(212, 163, 115, 0.25);
    transition: var(--transition-smooth);
}

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

.menu-item-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.menu-item-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

/* Badges styling */
.menu-badge {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}
.menu-badge.hot { background: #FADBD8; color: var(--chili-red); }
.menu-badge.popular { background: #FCF3CF; color: #B7950B; }
.menu-badge.signature { background: #D5F5E3; color: var(--success-green); }
.menu-badge.smoked { background: #E5E7E9; color: #5D6D7E; }
.menu-badge.new { background: #E8F8F5; color: #16A085; }
.menu-badge.hot-seller { background: #FDEDEC; color: #CB4335; }
.menu-badge.dessert { background: #F5EEF8; color: #8E44AD; }
.menu-badge.classic { background: #EAFAF1; color: #27AE60; }
.menu-badge.cheesy { background: #FEF9E7; color: #D4AC0D; }
.menu-badge.cool { background: #EAF2F8; color: #2980B9; }

.menu-item-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.menu-item-price {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #b58353;
    padding-top: 2px;
}

.menu-items-list li:hover {
    padding-left: 6px;
}

.menu-items-list li:hover .menu-item-name {
    color: #b58353;
}

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

/* ========================
   SPECIALS SECTION
   ======================== */
.specials-section {
    background-color: var(--primary-dark);
    color: var(--white);
    overflow: hidden;
}

.specials-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.specials-section .section-tag {
    background: rgba(212, 163, 115, 0.15);
    color: var(--accent-gold);
}

.specials-section .section-title {
    color: var(--white);
}

.specials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.special-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border-dark);
    border-radius: var(--radius-lg);
    padding: 44px 32px;
    text-align: center;
    transition: var(--transition-bounce);
    height: 100%;
}

.special-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 8px 30px rgba(0,0,0,0.4);
}

.special-icon {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, var(--accent-gold), #b8864a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 1.8rem;
    color: var(--primary-dark);
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-gold);
}

.special-card:hover .special-icon {
    transform: scale(1.12) rotate(10deg);
}

.special-card h5 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 14px;
}

.special-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
}

/* ========================
   GALLERY SECTION
   ======================== */
.gallery-section {
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 260px 260px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.gallery-item.gi-large {
    grid-row: span 2;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 9, 5, 0.85), rgba(18, 9, 5, 0.1) 70%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-text {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    margin-bottom: 12px;
}

.gallery-overlay i {
    width: 44px;
    height: 44px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transform: translateY(15px) scale(0.85);
    transition: var(--transition-bounce);
}

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

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

.gallery-item:hover .gallery-text {
    transform: translateY(0);
}

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

.gallery-item:hover .gallery-overlay i:hover {
    background: var(--white);
    color: var(--primary-dark);
}

/* ========================
   REVIEWS SECTION
   ======================== */
.reviews-section {
    background-color: var(--accent-cream);
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid rgba(212, 163, 115, 0.08);
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 28px;
    font-family: Georgia, serif;
    font-size: 5.5rem;
    color: rgba(212, 163, 115, 0.18);
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.review-stars i {
    color: #f4b942;
    font-size: 0.95rem;
}

.review-text {
    font-size: 0.98rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 28px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(212, 163, 115, 0.15);
    padding-top: 20px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-mid), var(--primary-dark));
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.reviewer h6 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--primary-dark);
    margin: 0 0 3px;
}

.reviewer span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================
   CONTACT SECTION
   ======================== */
.contact-section {
    background-color: var(--white);
}

.contact-info-card,
.contact-form-card {
    background: var(--accent-cream);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    box-shadow: var(--shadow-md);
    height: 100%;
    border: 1px solid rgba(212, 163, 115, 0.08);
}

.contact-info-card h4,
.contact-form-card h4 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(212, 163, 115, 0.2);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.contact-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary-mid), var(--primary-dark));
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    margin-top: 3px;
    box-shadow: var(--shadow-sm);
}

.contact-info-item h6 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    color: #b58353;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

.form-group-custom {
    margin-bottom: 24px;
}

.form-group-custom label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 18px;
    color: var(--accent-gold);
    font-size: 0.95rem;
    pointer-events: none;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background: var(--white);
    border: 1px solid rgba(212, 163, 115, 0.35);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
    outline: none;
    box-shadow: var(--shadow-sm);
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(212, 163, 115, 0.18);
}

.input-wrapper.textarea-wrapper {
    align-items: flex-start;
}

.input-wrapper.textarea-wrapper i {
    top: 16px;
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 140px;
}

#submitBtn {
    transition: var(--transition-smooth);
}
#submitBtn i {
    font-size: 0.9rem;
}

/* ========================
   FOOTER
   ======================== */
#footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid var(--glass-border-dark);
}

.footer-top {
    padding: 90px 0 50px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin-bottom: 28px;
}

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

.social-icons a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition-bounce);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icons a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-4px) scale(1.05);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.footer-links a i {
    font-size: 0.65rem;
    color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 6px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-contact-list li i {
    color: var(--accent-gold);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.footer-bottom p strong {
    color: var(--white);
}

/* ========================
   FLOATING WIDGETS
   ======================== */
/* Scroll Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 96px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--primary-mid);
    color: var(--white);
    border: 1px solid var(--glass-border-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-md);
}

.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.scroll-top-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 900;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-bounce);
    animation: waPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    color: var(--white);
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* ========================
   FADE-IN ANIMATIONS
   ======================== */
.fade-in,
.fade-in-right {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-right {
    transform: translateX(30px);
}

.fade-in.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* ========================
   LIGHTBOX MODAL
   ======================== */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(12, 6, 4, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    z-index: 10001;
    transition: var(--transition-bounce);
}

.lightbox-close:hover {
    color: var(--accent-gold);
    transform: scale(1.1) rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.5rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: var(--transition-bounce);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
    transform: translateY(-50%) scale(1.08);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-content {
    max-width: 85%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 72vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 3px solid rgba(255, 255, 255, 0.08);
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.lightbox-modal.active .lightbox-img {
    transform: scale(1);
    opacity: 1;
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 18px;
    text-align: center;
    letter-spacing: 0.3px;
}

/* ========================
   RESPONSIVE MEDIA QUERIES
   ======================== */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-rows: 220px 220px;
    }
}

/* Tablet (≤991px) */
@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }

    .hero-image-col {
        display: none;
    }

    .hero-content {
        text-align: center;
        padding: 130px 0 80px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-img-wrapper {
        padding-right: 0;
        padding-bottom: 0;
        margin-bottom: 40px;
    }

    .about-img-main img {
        height: 380px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
        gap: 16px;
    }

    .gallery-item.gi-large {
        grid-row: span 1;
    }

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

/* Mobile (≤767px) */
@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .hero-content {
        padding: 110px 0 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: auto;
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .stat-label {
        font-size: 0.72rem;
    }

    .stat-divider {
        height: 36px;
    }

    .about-img-main img {
        height: 300px;
    }

    .about-img-badge {
        width: 90px;
        height: 90px;
        font-size: 0.65rem;
        right: -10px;
        bottom: -10px;
    }

    .about-img-badge i {
        font-size: 1.25rem;
    }

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

    .highlight-item {
        text-align: left;
    }

    /* Horizontal scroll category tabs on mobile */
    .menu-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .menu-tabs::-webkit-scrollbar {
        display: none;
    }

    .menu-tab {
        flex-shrink: 0;
        padding: 9px 18px;
        font-size: 0.85rem;
    }

    .menu-items-list {
        padding: 10px 20px 20px;
    }

    .menu-items-list li {
        padding: 12px 0;
    }

    .menu-item-name {
        font-size: 0.95rem;
    }

    .menu-item-desc {
        font-size: 0.76rem;
    }

    .menu-item-price {
        font-size: 0.95rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 150px);
        gap: 12px;
    }

    .gallery-item.gi-large,
    .gallery-item.gi-wide {
        grid-row: span 1;
        grid-column: span 1;
    }
    
    .gallery-overlay {
        padding: 16px;
    }
    .gallery-text {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    .gallery-overlay i {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .review-card {
        padding: 30px 24px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 30px 24px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }
}

/* Very Small Screens (≤480px) */
@media (max-width: 480px) {
    .section-padding {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .nav-logo-text {
        font-size: 1.3rem;
    }

    .hero-content {
        padding: 100px 0 50px;
    }

    .hero-title {
        font-size: 1.95rem;
    }

    .hero-scroll-hint {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 170px);
        gap: 10px;
    }

    .gallery-item.gi-large,
    .gallery-item.gi-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 24px 18px;
    }

    .input-wrapper input,
    .input-wrapper textarea {
        font-size: 0.9rem;
        padding: 12px 14px 12px 42px;
    }

    .scroll-top-btn {
        bottom: 86px;
        right: 16px;
        width: 42px;
        height: 42px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 16px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .mobile-menu {
        width: 280px;
        right: -280px;
    }
}
