/* Haven House - Premium Café Website - English LTR */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800&display=swap');

/* ===== PAGE TRANSITION OVERLAY ===== */
.page-transition {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #0D7377 0%, #085456 50%, #1F2937 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-transition.fade-out {
    opacity: 0;
    visibility: hidden;
}
.page-transition .transition-logo {
    width: 120px;
    height: auto;
    animation: logoFloat 2s ease-in-out infinite, logoGlow 1.5s ease-in-out infinite alternate;
}
.page-transition .transition-text {
    margin-top: 25px;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 4px;
    opacity: 0;
    animation: textFadeIn 0.8s ease forwards 0.3s;
}
.page-transition .loader-dots {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}
.page-transition .loader-dots span {
    width: 10px;
    height: 10px;
    background: var(--orange);
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite;
}
.page-transition .loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.page-transition .loader-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}
@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 20px rgba(247,147,30,0.3)); }
    100% { filter: drop-shadow(0 0 40px rgba(247,147,30,0.6)); }
}
@keyframes textFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes dotBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

:root {
    --bg-cream: #F9F9F7;
    --orange: #F7931E;
    --teal: #0D7377;
    --fuchsia: #C026D3;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-image: url('assets/images/misc/brand-pattern.svg'),
                      radial-gradient(1200px 800px at 10% 10%, #ffffff 0%, #FBFBF9 30%, #F9F9F7 60%, #F7F7F5 100%);
    background-repeat: repeat, no-repeat;
    background-size: 420px auto, cover;
    background-position: 0 0, center;
    background-attachment: fixed, fixed;
}

.brand-icon-teal { color: var(--teal); }
.brand-icon-fuchsia { color: var(--fuchsia); }
.brand-icon-orange { color: var(--orange); }
body::before { content: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header - Premium Centered Design */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(249,249,247,0.9) 60%, rgba(13,115,119,0.06) 100%);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.scrolled {
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(249,249,247,0.9) 60%, rgba(13,115,119,0.06) 100%);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.header::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='24' viewBox='0 0 1200 24'%3E%3Cpath d='M0 12 C200 24 400 0 600 12 C800 24 1000 0 1200 12 L1200 24 L0 24 Z' fill='%230D7377' fill-opacity='0.08'/%3E%3Cpath d='M0 14 C200 26 400 2 600 14 C800 26 1000 2 1200 14 L1200 24 L0 24 Z' fill='%23F7931E' fill-opacity='0.05'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: cover;
    pointer-events: none;
}
.header-container {
    max-width: 1400px; margin: 0 auto; padding: 0 40px; width: 100%;
    display: flex; flex-direction: column; align-items: center;
}

/* Logo Section - Large & Centered */
.logo {
    text-decoration: none;
    display: flex; flex-direction: column; align-items: center;
    padding: 20px 0 15px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.logo:hover { transform: scale(1.02); }
.logo-img {
    height: 70px; width: auto;
    filter: drop-shadow(0 4px 15px rgba(13,115,119,0.2));
    transition: all 0.4s ease;
}
.header.scrolled .logo-img { height: 50px; }
.logo:hover .logo-img {
    filter: drop-shadow(0 6px 25px rgba(247,147,30,0.35));
}
.logo-text, .logo-tagline {
    display: none !important; /* Hidden as per design request */
}

.logo-text-backup {
    margin-top: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--teal);
    text-transform: uppercase;
    opacity: 0.8;
    transition: all 0.3s ease;
}
.header.scrolled .logo-text { display: none; }
.logo:hover .logo-text { opacity: 1; color: var(--orange); letter-spacing: 5px; }

/* Home header larger logo */
.home-header .logo-img { height: 88px; }

/* Navigation - Premium Style */
.nav {
    display: flex; gap: 8px; align-items: center;
    padding: 12px 20px 18px;
    position: relative;
}
.header.scrolled .nav { padding: 8px 20px 12px; }

.nav-link {
    font-size: 13px; font-weight: 700; color: var(--text-dark);
    text-decoration: none; text-transform: uppercase; letter-spacing: 1.5px;
    padding: 12px 22px;
    border-radius: 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    border: 2px solid rgba(13,115,119,0.25);
    background: rgba(255,255,255,0.6);
}
.nav-link::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--teal), #0a5d60);
    border-radius: 30px; opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 8px; left: 50%;
    width: 0; height: 2px;
    background: var(--orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav-link:hover::after { width: 30px; }
.nav-link:hover { color: var(--teal); transform: translateY(-2px); box-shadow: 0 0 0 4px rgba(13,115,119,0.08); }
@keyframes tabOutlinePulse {
    0% { box-shadow: 0 0 0 0 rgba(13,115,119,0.28); }
    50% { box-shadow: 0 0 0 6px rgba(13,115,119,0.16); }
    100% { box-shadow: 0 0 0 0 rgba(13,115,119,0.28); }
}
.nav-link:hover { animation: tabOutlinePulse 1.8s ease-in-out; }
.nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, var(--orange), #e8851a);
    border-color: transparent;
    box-shadow: 0 6px 25px rgba(247,147,30,0.35);
}
.nav-link.active::before { opacity: 1; transform: scale(1); }
.nav-link.active::after { display: none; }
.nav-link.active:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 30px rgba(247,147,30,0.45); }

/* Nav Dividers */
.nav-divider {
    width: 4px; height: 4px; background: var(--orange);
    border-radius: 50%; opacity: 0.5;
    animation: dividerPulse 2s ease-in-out infinite;
}
@keyframes dividerPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 1; }
}

/* Header Cart */
.header-cart {
    position: absolute; top: 25px; right: 40px;
    display: flex; align-items: center;
    padding: 10px;
    border-radius: 50%;
    background: rgba(13,115,119,0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.header-cart svg { width: 24px; height: 24px; color: var(--teal); transition: all 0.3s; }
.header-cart:hover { background: var(--orange); transform: scale(1.1) rotate(5deg); box-shadow: 0 5px 20px rgba(247,147,30,0.35); }
.header-cart:hover svg { color: #fff; }
.header-cart .cart-count {
    position: absolute; top: -5px; right: -5px;
    width: 22px; height: 22px; background: var(--orange);
    color: #fff; font-size: 11px; font-weight: 700;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    border: 2px solid #fff;
    animation: cartBadgePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes cartBadgePop { 0% { transform: scale(0); } 100% { transform: scale(1); } }

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: #fff; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.12); padding: 10px 0; min-width: 160px; opacity: 0; visibility: hidden; transition: all 0.3s ease; margin-top: 15px; }
.nav-dropdown-menu::before { content: ''; position: absolute; top: -8px; left: 50%; transform: translateX(-50%); border-left: 8px solid transparent; border-right: 8px solid transparent; border-bottom: 8px solid #fff; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; margin-top: 10px; }
.dropdown-item { display: block; padding: 10px 20px; font-size: 14px; font-weight: 500; color: var(--text-dark); text-decoration: none; transition: all 0.2s; }
.dropdown-item:hover { background: var(--bg-cream); color: var(--teal); padding-left: 25px; }

.header-right { display: flex; align-items: center; gap: 15px; justify-self: end; }
.cart-link { display: flex; align-items: center; position: relative; }
.cart-link svg { width: 26px; height: 26px; color: var(--teal); }
.cart-count {
    position: absolute; top: -8px; right: -10px;
    background: var(--orange); color: white; font-size: 11px; font-weight: 700;
    width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

/* Mobile Header Actions */
.mobile-header-actions { display: none; align-items: center; gap: 10px; }
.mobile-action-btn { display: flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 20px; text-decoration: none; transition: all 0.3s; font-size: 13px; font-weight: 600; }
.mobile-action-btn.menu-btn { background: linear-gradient(135deg, var(--orange), #e8851a); color: #fff; box-shadow: 0 3px 12px rgba(247,147,30,0.35); }
.mobile-action-btn.menu-btn svg { width: 16px; height: 16px; }
.mobile-action-btn.icon-only { width: 38px; height: 38px; padding: 0; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.mobile-action-btn.contact-btn { background: linear-gradient(135deg, var(--teal), #0a5d60); box-shadow: 0 3px 12px rgba(13,115,119,0.35); }
.mobile-action-btn.cart-btn { background: linear-gradient(135deg, #1f2937, #374151); position: relative; box-shadow: 0 3px 12px rgba(0,0,0,0.25); }
.mobile-action-btn svg { width: 18px; height: 18px; color: #fff; }
.mobile-action-btn:active { transform: scale(0.92); }
.mobile-cart-badge { position: absolute; top: -4px; right: -4px; width: 16px; height: 16px; background: var(--orange); color: #fff; font-size: 9px; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; animation: badgePulse 2s infinite; }
@keyframes badgePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; z-index: 10; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--teal); transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55); border-radius: 2px; transform-origin: center; }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu Overlay */
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0); z-index: 1001; backdrop-filter: blur(0); transition: all 0.4s ease; }
.mobile-overlay.active { display: block; background: rgba(0,0,0,0.6); backdrop-filter: blur(5px); }

/* Mobile Nav - Legendary Design */
.mobile-nav {
    position: fixed; top: 0; right: -340px; width: 320px; height: 100%;
    background: linear-gradient(165deg, #0D7377 0%, #085456 40%, #1F2937 100%);
    padding: 0; z-index: 1002;
    transition: right 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: -15px 0 60px rgba(0,0,0,0.4);
    display: flex; flex-direction: column;
    overflow: hidden;
}
.mobile-nav::before { content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%; background: radial-gradient(circle, rgba(247,147,30,0.15) 0%, transparent 70%); pointer-events: none; }
.mobile-nav.active { right: 0; }

.mobile-nav-header { padding: 25px; background: #fff; border-radius: 0 0 20px 20px; margin: 0 15px 20px 15px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; }
.mobile-nav-logo .logo-img { height: 55px; }
.mobile-nav-close { position: absolute; top: 30px; right: 25px; background: rgba(0,0,0,0.08); border: none; width: 42px; height: 42px; border-radius: 12px; cursor: pointer; transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); display: flex; align-items: center; justify-content: center; backdrop-filter: blur(10px); }
.mobile-nav-close svg { width: 20px; height: 20px; color: #333; transition: transform 0.3s; }
.mobile-nav-close:hover { background: var(--orange); transform: rotate(90deg); }

.mobile-nav-links { padding: 25px 20px; flex: 1; overflow-y: auto; }
.mobile-nav-link { display: flex; align-items: center; gap: 16px; padding: 18px 20px; margin-bottom: 10px; font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.85); text-decoration: none; border-radius: 14px; transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); position: relative; background: rgba(255,255,255,0.05); border: 1px solid transparent; }
.mobile-nav-link:hover { background: rgba(255,255,255,0.12); border-color: rgba(247,147,30,0.3); color: #fff; transform: translateX(8px); }
.mobile-nav-link.active { background: linear-gradient(135deg, var(--orange), #e8851a); color: #fff; box-shadow: 0 8px 25px rgba(247,147,30,0.35); border-color: transparent; }
.mobile-nav-link svg { width: 22px; height: 22px; opacity: 0.9; transition: all 0.3s; }
.mobile-nav-link:hover svg { opacity: 1; transform: scale(1.1); }
.mobile-nav-link.active svg { opacity: 1; }
.mobile-nav-link.active { background: linear-gradient(135deg, var(--teal), #0a5d60); color: #fff; }
.mobile-nav-link svg { width: 22px; height: 22px; transition: transform 0.3s; }
.mobile-nav-link:hover svg { transform: translateX(5px); }

.mobile-nav-footer { padding: 25px; border-top: 1px solid rgba(255,255,255,0.15); background: #085456; }
.mobile-nav-social { display: flex; justify-content: center; gap: 12px; margin-bottom: 15px; }
.mobile-nav-social a { width: 44px; height: 44px; background: rgba(255,255,255,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; transition: all 0.3s; backdrop-filter: blur(5px); }
.mobile-nav-social a svg { width: 20px; height: 20px; color: rgba(255,255,255,0.8); }
.mobile-nav-social a:hover { background: var(--orange); transform: translateY(-3px) scale(1.05); }
.mobile-nav-social a:hover svg { color: #fff; }
.mobile-nav-copyright { text-align: center; font-size: 12px; color: rgba(255,255,255,0.5); }

/* Hero */
.hero {
    position: relative; height: 100vh; min-height: 600px; margin-top: 160px;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.header.scrolled + .mobile-overlay + .mobile-nav + .hero,
.header.scrolled ~ .hero { margin-top: 100px; }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6)); }
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); padding: 20px; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(36px, 7vw, 64px); font-weight: 700; margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-subtitle { font-size: clamp(16px, 3vw, 22px); margin-bottom: 40px; opacity: 0.95; font-weight: 300; }
.hero-btn {
    display: inline-block; padding: 16px 40px; background: var(--orange); color: var(--white);
    text-decoration: none; font-weight: 600; font-size: 16px; border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.hero-btn:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(232, 93, 4, 0.4); }

.hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2;
    color: var(--white); text-align: center; opacity: 0.8;
}
.hero-scroll span { display: block; font-size: 12px; letter-spacing: 2px; margin-bottom: 10px; }
.hero-scroll svg { width: 24px; height: 24px; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* Intro */
.intro { padding: 120px 0; overflow: hidden; }
.hero.hero-fallback { background-size: cover; background-position: center; }
.intro-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.intro-tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 3px; color: var(--orange); margin-bottom: 20px; opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.intro-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 42px); font-weight: 600; margin-bottom: 20px; line-height: 1.3; opacity: 0; transform: translateY(30px); transition: all 0.6s ease 0.1s; }
.intro-content p { color: var(--text-light); font-size: 17px; line-height: 1.8; margin-bottom: 30px; opacity: 0; transform: translateY(30px); transition: all 0.6s ease 0.2s; }
.intro-content .btn-outline { opacity: 0; transform: translateY(30px); transition: all 0.6s ease 0.3s; }
.intro-content.visible .intro-tag,
.intro-content.visible h2,
.intro-content.visible p,
.intro-content.visible .btn-outline { opacity: 1; transform: translateY(0); }

/* Intro Mosaic Image */
.intro-mosaic { position: relative; height: 450px; perspective: 1000px; }
.mosaic-container { position: relative; width: 100%; height: 100%; border-radius: 20px; overflow: hidden; box-shadow: 0 25px 60px rgba(0,0,0,0.2); }
.mosaic-piece { position: absolute; overflow: hidden; opacity: 0; transform-style: preserve-3d; }
.mosaic-piece img { position: absolute; width: 500%; height: 500%; object-fit: cover; }
.mosaic-piece:nth-child(1) { top: 0; left: 0; width: 50%; height: 50%; transform: translate(-100%, -100%) rotateY(-30deg); transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0s; }
.mosaic-piece:nth-child(1) img { top: 0; left: 0; }
.mosaic-piece:nth-child(2) { top: 0; right: 0; width: 50%; height: 50%; transform: translate(100%, -100%) rotateY(30deg); transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s; }
.mosaic-piece:nth-child(2) img { top: 0; right: 0; }
.mosaic-piece:nth-child(3) { bottom: 0; left: 0; width: 50%; height: 50%; transform: translate(-100%, 100%) rotateX(30deg); transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s; }
.mosaic-piece:nth-child(3) img { bottom: 0; left: 0; }
.mosaic-piece:nth-child(4) { bottom: 0; right: 0; width: 50%; height: 50%; transform: translate(100%, 100%) rotateX(-30deg); transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s; }
.mosaic-piece:nth-child(4) img { bottom: 0; right: 0; }
.intro-mosaic.visible .mosaic-piece { opacity: 1; transform: translate(0, 0) rotate(0); }
.mosaic-glow { position: absolute; inset: -20px; background: linear-gradient(135deg, rgba(247,147,30,0.3), rgba(13,115,119,0.3)); border-radius: 30px; filter: blur(30px); opacity: 0; transition: opacity 0.8s ease 0.5s; z-index: -1; }
.intro-mosaic.visible .mosaic-glow { opacity: 1; }
.mosaic-frame { position: absolute; inset: -8px; border: 3px solid var(--orange); border-radius: 28px; opacity: 0; transform: scale(1.1); transition: all 0.6s ease 0.6s; }
.intro-mosaic.visible .mosaic-frame { opacity: 0.5; transform: scale(1); }

@media (max-width: 992px) {
    .intro-grid { grid-template-columns: 1fr; gap: 50px; }
    .intro-mosaic { height: 380px; }
}
@media (max-width: 576px) {
    .intro-mosaic { height: 300px; }
}

.btn-outline {
    display: inline-block; padding: 14px 32px; border: 2px solid var(--text-dark); color: var(--text-dark);
    text-decoration: none; font-weight: 600; font-size: 14px; border-radius: 30px; transition: all 0.3s;
}
.btn-outline:hover { background: var(--text-dark); color: var(--white); }

.btn-primary {
    display: inline-block; padding: 16px 36px; background: var(--orange); color: var(--white);
    text-decoration: none; font-weight: 600; font-size: 15px; border-radius: 30px; border: none; cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover { transform: scale(1.03); box-shadow: 0 10px 30px rgba(232, 93, 4, 0.3); }

.btn-outline-light {
    display: inline-block; padding: 14px 32px; border: 2px solid var(--white); color: var(--white);
    text-decoration: none; font-weight: 600; font-size: 14px; border-radius: 30px; transition: all 0.3s;
}
.btn-outline-light:hover { background: var(--white); color: var(--text-dark); }

/* Cart Side Panel */
.cart-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9999;
}
.cart-panel-overlay.active { opacity: 1; pointer-events: auto; }
.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 92vw;
    height: 100%;
    background: #fff;
    box-shadow: -20px 0 60px rgba(0,0,0,0.25);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    z-index: 10000;
    border-left: 3px solid var(--light-gray);
}
.cart-panel.active { transform: translateX(0); }
.cart-panel-header {
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.cart-panel-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 700;
}
.cart-panel-total {
    font-weight: 800;
    color: var(--orange);
}
.cart-panel-close {
    border: none;
    background: #f5f5f5;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    cursor: pointer;
    color: #333;
}
.cart-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
}
.cart-panel-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}
.cart-panel-item:last-child { border-bottom: none; }
.cart-item-img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}
.cart-item-info {
    flex: 1;
    min-width: 0;
}
.cart-item-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}
.cart-item-note {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}
.cart-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
}
.cart-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}
.cart-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    cursor: pointer;
}
.cart-item-price {
    font-weight: 700;
    color: var(--text-dark);
}
.cart-panel-footer {
    padding: 16px 20px;
    border-top: 1px solid #eee;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.cart-empty {
    text-align: center;
    padding: 50px 10px;
    color: var(--text-light);
}

/* Food Showcase Slider */
.food-showcase { width: 100%; overflow: hidden; padding: 40px 0; position: relative; touch-action: pan-y pinch-zoom; cursor: grab; }
.food-showcase:active { cursor: grabbing; }
.showcase-slider { display: flex; user-select: none; will-change: transform; }
.showcase-slider.dragging { cursor: grabbing; transition: none; }

@keyframes outlinePulse {
    0% { box-shadow: 0 0 0 0 rgba(13,115,119,0.28), 0 0 0 0 rgba(192,38,211,0.12); }
    50% { box-shadow: 0 0 0 6px rgba(13,115,119,0.18), 0 0 0 10px rgba(192,38,211,0.08); }
    100% { box-shadow: 0 0 0 0 rgba(13,115,119,0.28), 0 0 0 0 rgba(192,38,211,0.12); }
}
.menu-card.revealed,
.eat-pillar.revealed,
.value-card.revealed,
.team-card.revealed,
.tier-card.revealed,
.reward-item.revealed,
.contact-item.revealed,
.contact-info-card.revealed,
.contact-form-card.revealed,
.info-item.revealed,
.step-item.revealed,
.fav-item.revealed,
.cart-item.revealed,
.order-type-card.revealed,
.payment-option.revealed {
    animation: outlinePulse 2.4s ease-in-out;
}
.menu-card:hover,
.eat-pillar:hover,
.value-card:hover,
.team-card:hover,
.tier-card:hover {
    box-shadow: 0 0 0 2px rgba(13,115,119,0.25), 0 10px 35px rgba(13,115,119,0.25);
}
.btn-outline:hover,
.btn-primary:hover {
    box-shadow: 0 0 0 3px rgba(13,115,119,0.25), 0 10px 30px rgba(247,147,30,0.25);
}

.section-header { position: relative; }
.section-header::after {
    content: "";
    display: block;
    width: 120px;
    height: 3px;
    margin-top: 14px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--teal), var(--fuchsia), var(--orange));
}
.section-title { color: var(--teal); }
.section-subtitle { color: var(--text-light); }
.section-tag { color: var(--orange); letter-spacing: 3px; }

.eat-pillar-icon { color: var(--teal); }
.eat-pillars .eat-pillar:nth-child(2) .eat-pillar-icon { color: var(--fuchsia); }
.eat-pillars .eat-pillar:nth-child(3) .eat-pillar-icon { color: var(--orange); }
.eat-pillars .eat-pillar:nth-child(4) .eat-pillar-icon { color: var(--teal); }

.footer-section a svg { color: var(--teal); }
.nav-divider { background: var(--orange); }
.showcase-slide { flex-shrink: 0; width: 70vw; max-width: 900px; height: 55vh; min-height: 400px; max-height: 600px; margin: 0 20px; position: relative; overflow: hidden; border-radius: 20px; }
.showcase-slide img { width: 100%; height: 100%; object-fit: cover; -webkit-user-drag: none; user-select: none; pointer-events: none; }
.showcase-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%); pointer-events: none; }
@media (max-width: 768px) {
    .showcase-slide { width: 85vw; height: 45vh; min-height: 300px; margin: 0 10px; }
}

/* Eatertainment */
.eatertainment-section { padding: 60px 0; text-align: center; }
.eatertainment-card {
    display: inline-block; padding: 50px 80px; background: linear-gradient(135deg, var(--orange), var(--fuchsia));
    border-radius: 24px; text-align: center; box-shadow: var(--shadow-lg);
}
.eat-your { display: block; font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.8); letter-spacing: 10px; margin-bottom: 5px; }
.eat-main { display: block; font-family: 'Playfair Display', serif; font-size: clamp(32px, 6vw, 56px); font-weight: 700; color: var(--white); letter-spacing: 4px; }
.eat-sub { display: block; font-size: 14px; color: rgba(255,255,255,0.9); margin-top: 15px; letter-spacing: 2px; }

/* Section Titles */
.section-title {
    font-family: 'Playfair Display', serif; font-size: clamp(28px, 5vw, 42px); font-weight: 600;
    text-align: center; margin-bottom: 50px; color: var(--text-dark);
}
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 600; }
.view-all { color: var(--orange); font-weight: 600; text-decoration: none; transition: opacity 0.3s; }
.view-all:hover { opacity: 0.7; }

/* Featured Menu */
.featured-menu { padding: 100px 0; background: var(--white); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
.menu-card { background: var(--bg-cream); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s; }
.menu-card:hover { transform: translateY(-8px); }
.menu-card-img { height: 200px; overflow: hidden; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.menu-card:hover .menu-card-img img { transform: scale(1.1); }
.menu-card-content { padding: 24px; }
.menu-card-content h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.menu-card-content p { color: var(--text-light); font-size: 14px; margin-bottom: 16px; }
.menu-card-footer { display: flex; justify-content: space-between; align-items: center; }
.price { font-size: 22px; font-weight: 700; color: var(--orange); }
.menu-category { display: inline-block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--teal); background: rgba(15,118,110,0.1); padding: 4px 10px; border-radius: 20px; margin-bottom: 10px; }

.add-btn {
    width: 44px; height: 44px; border: none; background: var(--teal); color: var(--white);
    border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s, background 0.3s;
}
.add-btn:hover { transform: scale(1.1); background: var(--orange); }
.add-btn svg { width: 20px; height: 20px; }

/* Gallery */
.gallery-section { padding: 80px 0; overflow: hidden; }
.gallery-track { display: flex; gap: 20px; animation: scroll 30s linear infinite; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-300px * 6 - 120px)); } }
.gallery-slide { flex-shrink: 0; width: 300px; height: 400px; border-radius: 20px; overflow: hidden; position: relative; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-slide:hover img { transform: scale(1.1); }
.gallery-label {
    position: absolute; bottom: 20px; left: 20px; background: rgba(255,255,255,0.95);
    padding: 8px 20px; border-radius: 20px; font-weight: 600; font-size: 13px; color: var(--text-dark);
}

/* CTA */
.cta-section { padding: 100px 0; background: var(--text-dark); }
.cta-content { text-align: center; color: var(--white); }
.cta-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 5vw, 42px); font-weight: 600; margin-bottom: 15px; }
.cta-content p { opacity: 0.8; font-size: 18px; margin-bottom: 30px; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* Page Hero */
/* Page Hero - Professional Responsive Design */
.page-hero { 
    position: relative; 
    height: 50vh; 
    min-height: 380px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-top: 160px; 
    overflow: hidden;
}
.page-hero.small { 
    height: 45vh; 
    min-height: 320px; 
}
.page-hero-bg { 
    position: absolute; 
    inset: 0; 
    background-size: cover; 
    background-position: center; 
    transform: scale(1);
    animation: pageHeroZoom 16s ease forwards;
    will-change: transform;
}
@keyframes pageHeroZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
}
.page-hero-overlay { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%); 
}
.page-hero-content { 
    position: relative; 
    z-index: 2; 
    text-align: center; 
    color: var(--white); 
    padding: 30px 20px;
    max-width: 800px;
}
.page-hero-content h1 { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(36px, 6vw, 56px); 
    font-weight: 600; 
    margin-bottom: 15px; 
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}
.page-hero-content p { 
    font-size: 18px; 
    opacity: 0.95; 
    text-shadow: 0 1px 10px rgba(0,0,0,0.3);
    max-width: 500px;
    margin: 0 auto;
}

/* About Page */
.about-content-section { padding: 100px 0; }
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 100px; }
.section-tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 3px; color: var(--orange); margin-bottom: 15px; }
.about-story-text h2 { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 600; margin-bottom: 20px; line-height: 1.3; }
.about-story-text p { color: var(--text-light); font-size: 16px; line-height: 1.8; margin-bottom: 15px; }
.about-story-img img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-lg); }

.text-center { text-align: center; }
.about-values h2 { font-family: 'Playfair Display', serif; font-size: 36px; margin-bottom: 50px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.value-card { background: var(--white); padding: 40px 30px; border-radius: 20px; text-align: center; box-shadow: var(--shadow); transition: transform 0.3s; }
.value-card:hover { transform: translateY(-5px); }
.value-icon { width: 70px; height: 70px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; background: rgba(232, 93, 4, 0.1); border-radius: 50%; color: var(--orange); }
.value-icon.teal { background: rgba(15, 118, 110, 0.1); color: var(--teal); }
.value-icon.fuchsia { background: rgba(192, 38, 211, 0.1); color: var(--fuchsia); }
.value-icon svg { width: 32px; height: 32px; }
.value-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.value-card p { color: var(--text-light); font-size: 15px; line-height: 1.7; }

.about-team { margin-top: 100px; }
.about-team h2 { font-family: 'Playfair Display', serif; font-size: 36px; margin-bottom: 50px; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.team-card { text-align: center; }
.team-card img { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; margin-bottom: 20px; box-shadow: var(--shadow); }
.team-card h4 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; margin-bottom: 5px; }
.team-card p { color: var(--text-light); font-size: 14px; }

/* Menu Page */
.menu-page-section { padding: 80px 0; }
.menu-filters { display: flex; justify-content: center; gap: 15px; margin-bottom: 50px; flex-wrap: wrap; }
.filter-btn {
    padding: 12px 28px; border: 2px solid var(--text-dark); background: transparent;
    border-radius: 30px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active { background: var(--orange); border-color: var(--orange); color: var(--white); }
.menu-grid-full { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }

/* Contact Page */
.contact-page-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.contact-info-card, .contact-form-card { background: var(--white); padding: 40px; border-radius: 20px; box-shadow: var(--shadow); }
.contact-info-card h2, .contact-form-card h2 { font-family: 'Playfair Display', serif; font-size: 28px; margin-bottom: 30px; }
.contact-item { display: flex; gap: 20px; margin-bottom: 25px; align-items: flex-start; }
.contact-icon { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: rgba(232, 93, 4, 0.1); border-radius: 12px; color: var(--orange); flex-shrink: 0; }
.contact-icon.teal { background: rgba(15, 118, 110, 0.1); color: var(--teal); }
.contact-icon.fuchsia { background: rgba(192, 38, 211, 0.1); color: var(--fuchsia); }
.contact-icon svg { width: 24px; height: 24px; }
.contact-item h4 { font-size: 16px; font-weight: 600; margin-bottom: 5px; }
.contact-item p, .contact-item a { color: var(--text-light); text-decoration: none; font-size: 15px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 14px; }
.form-group input, .form-group textarea {
    width: 100%; padding: 14px 18px; border: 2px solid #E5E7EB; border-radius: 12px;
    font-family: 'Nunito', sans-serif; font-size: 15px; transition: border-color 0.3s; background: var(--bg-cream);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #9CA3AF; }
.full-width { width: 100%; }

.map-container { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }

/* Checkout Page */
.checkout-section { padding: 120px 0 80px; min-height: 100vh; }
.page-title { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 600; margin-bottom: 40px; }
.checkout-grid { display: grid; grid-template-columns: 1fr 400px; gap: 40px; align-items: start; }
.cart-items-container { background: var(--white); padding: 30px; border-radius: 20px; box-shadow: var(--shadow); }
.empty-cart { text-align: center; padding: 60px 20px; color: var(--text-light); }
.empty-cart svg { opacity: 0.3; margin-bottom: 20px; }
.empty-cart h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--text-dark); margin-bottom: 10px; }
.empty-cart p { margin-bottom: 30px; }

.cart-item { display: flex; gap: 20px; padding: 20px; background: var(--bg-cream); border-radius: 16px; margin-bottom: 15px; align-items: center; }
.cart-item-img { width: 80px; height: 80px; border-radius: 12px; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-weight: 600; margin-bottom: 5px; }
.cart-item-price { color: var(--orange); font-weight: 700; }
.cart-item-qty { display: flex; align-items: center; gap: 12px; }
.qty-btn { width: 32px; height: 32px; border: 1px solid #ddd; background: var(--white); border-radius: 8px; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.qty-btn:hover { background: var(--orange); color: white; border-color: var(--orange); }
.cart-item-total { font-weight: 700; min-width: 80px; text-align: right; }
.remove-btn { width: 36px; height: 36px; border: none; background: transparent; color: #EF4444; cursor: pointer; border-radius: 8px; transition: background 0.3s; }
.remove-btn:hover { background: rgba(239, 68, 68, 0.1); }

.order-summary { background: var(--white); padding: 30px; border-radius: 20px; box-shadow: var(--shadow); position: sticky; top: 100px; }
.order-summary h3 { font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 25px; }
.summary-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #eee; font-size: 15px; }
.summary-row.total { border-bottom: none; font-size: 20px; font-weight: 700; padding-top: 20px; }
.checkout-form { margin-top: 25px; padding-top: 25px; border-top: 1px solid #eee; }
.checkout-form h4 { font-size: 18px; font-weight: 600; margin-bottom: 20px; }

/* Footer - New Legendary Design */
.footer {
    background: linear-gradient(165deg, #0D7377 0%, #085456 40%, #1F2937 100%);
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(247,147,30,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.footer::after {
    content: '';
    position: absolute;
    left: 0; right: 0; top: -1px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='24' viewBox='0 0 1200 24'%3E%3Cpath d='M0 12 C200 0 400 24 600 12 C800 0 1000 24 1200 12 L1200 24 L0 24 Z' fill='%230D7377' fill-opacity='0.08'/%3E%3Cpath d='M0 10 C200 -2 400 22 600 10 C800 -2 1000 22 1200 10 L1200 24 L0 24 Z' fill='%23F7931E' fill-opacity='0.05'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: cover;
    pointer-events: none;
}
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }

/* Footer Top - Logo Section (Hidden for cleaner design) */
.footer-top {
    display: none;
}
.footer-logo-vertical {
    display: none;
}

/* Footer Main Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 50px 0;
}
.footer-section h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--orange);
}
.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    margin-bottom: 14px;
    font-size: 15px;
    transition: all 0.3s;
}
.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}
.footer-links a svg {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

/* Hours Section */
.footer-hours .hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-hours .hours-item:last-child {
    border-bottom: none;
}
.footer-hours .day {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}
.footer-hours .time {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

/* Contact Section */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}
.footer-contact-item .icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footer-contact-item .icon svg {
    width: 18px;
    height: 18px;
    color: var(--orange);
}
.footer-contact-item .info p {
    margin: 0;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.5;
}
.footer-contact-item .info a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}
.footer-contact-item .info a:hover {
    color: var(--orange);
}

/* Social Section */
.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.footer-social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    color: var(--white);
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover {
    background: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(247,147,30,0.3);
    border-color: var(--orange);
}
.footer-social svg { width: 20px; height: 20px; }

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.15);
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}
.footer-bottom-links {
    display: flex;
    gap: 25px;
}
.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--white); }
.admin-link { color: rgba(255,255,255,0.3); text-decoration: none; font-size: 12px; transition: color 0.3s; }
.admin-link:hover { color: var(--white); }

/* Footer Created By */
.footer-created {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.footer-created svg {
    width: 16px;
    height: 16px;
    color: var(--orange);
}
.footer-created span {
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-section h4::after { left: 50%; transform: translateX(-50%); }
    .footer-social { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .footer-logo-vertical h3 { font-size: 24px; }
}

/* Why Haven House Section */
.why-section { padding: 120px 0; background: linear-gradient(180deg, var(--bg-cream) 0%, var(--white) 100%); }
.why-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 52px); text-align: center; margin-bottom: 80px; color: var(--text-dark); position: relative; }
.why-title::after { content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background: linear-gradient(90deg, var(--orange), var(--teal)); border-radius: 2px; }
.why-layout { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 40px; align-items: center; }
.why-features-left, .why-features-right { display: flex; flex-direction: column; gap: 50px; }
.why-features-left .why-feature { text-align: right; }
.why-features-right .why-feature { text-align: left; }
.why-feature { padding: 25px; background: var(--white); border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.06); transition: transform 0.4s, box-shadow 0.4s; position: relative; overflow: hidden; }
.why-feature::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--orange), var(--teal)); opacity: 0; transition: opacity 0.3s; }
.why-feature:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.why-feature:hover::before { opacity: 1; }
.why-feature-icon { font-size: 36px; margin-bottom: 15px; }
.why-feature h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600; margin-bottom: 12px; color: var(--text-dark); }
.why-feature p { color: var(--text-light); font-size: 15px; line-height: 1.7; }
.why-center { display: flex; justify-content: center; align-items: center; }
.why-image-wrapper { position: relative; width: 320px; height: 320px; }
.why-image { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; position: relative; z-index: 2; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.why-image-ring { position: absolute; inset: -15px; border: 3px dashed var(--orange); border-radius: 50%; animation: spin 30s linear infinite; opacity: 0.5; }
.why-image-glow { position: absolute; inset: -30px; background: linear-gradient(135deg, rgba(247,147,30,0.15), rgba(13,115,119,0.15)); border-radius: 50%; filter: blur(20px); z-index: 1; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

@media (max-width: 992px) {
    .why-layout { grid-template-columns: 1fr; gap: 40px; }
    .why-center { order: -1; }
    .why-features-left, .why-features-right { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .why-features-left .why-feature, .why-features-right .why-feature { text-align: center; flex: 1 1 280px; max-width: 350px; }
    .why-image-wrapper { width: 250px; height: 250px; }
}

/* Animations */
.animate-fade { opacity: 0; transform: translateY(20px); animation: fadeIn 0.8s ease forwards; }
.animate-fade:nth-child(2) { animation-delay: 0.2s; }
.animate-fade:nth-child(3) { animation-delay: 0.4s; }
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }

.animate-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s, transform 0.6s; }
.animate-scroll.visible { opacity: 1; transform: translateY(0); }

/* Toast */
.toast {
    position: fixed; bottom: 30px; right: 30px; padding: 16px 24px; background: var(--teal); color: var(--white);
    border-radius: 12px; font-weight: 600; box-shadow: var(--shadow-lg); transform: translateY(100px); opacity: 0;
    transition: all 0.3s; z-index: 2000;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* Responsive */
@media (max-width: 992px) {
    .intro-grid, .about-story, .contact-grid, .checkout-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .intro { padding: 80px 0; }
    .intro-mosaic { height: 350px; }
}
@media (max-width: 768px) {
    /* ===== MOBILE HEADER - PROFESSIONAL DESIGN ===== */
    .header {
        height: auto;
        min-height: 65px;
        padding: 0;
        background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(249,249,247,0.9) 60%, rgba(13,115,119,0.06) 100%);
        box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    }
    .header.scrolled {
        background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(249,249,247,0.9) 60%, rgba(13,115,119,0.06) 100%);
        box-shadow: 0 2px 20px rgba(0,0,0,0.12);
    }
    .header-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 12px 16px;
        height: auto;
        position: relative;
    }
    .logo {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 0;
        position: static;
        transform: none;
    }
    .logo-img { height: 50px; }
    .header.scrolled .logo-img { height: 46px; }
    .nav { 
        display: flex !important; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 6px; 
        padding: 10px 12px 14px; 
    }
    .nav-divider { display: none; }
    .header-cart { display: none; }
    .mobile-header-actions { display: none !important; }
    .mobile-menu-btn { display: none !important; }
    .mobile-overlay { display: none !important; }
    .mobile-overlay.active { display: none !important; }
    .mobile-nav, .mobile-nav.active { display: none !important; }
    .hero { height: 70vh; min-height: 400px; margin-top: 100px; }
    .page-hero { height: 40vh; min-height: 280px; margin-top: 100px; }
    .page-hero.small { height: 35vh; min-height: 250px; }
    .page-hero-content { padding: 25px 15px; }
    .page-hero-content h1 { font-size: 32px; letter-spacing: 1px; }
    .page-hero-content p { font-size: 16px; }
    .intro { padding: 60px 0; }
    .intro-mosaic { height: 280px; }
    .section-title { font-size: 28px; margin-bottom: 30px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-social { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .gallery-slide { width: 250px; height: 320px; }
    .checkout-grid { grid-template-columns: 1fr; }
    .order-summary { position: static; }
    .eatertainment-card { padding: 35px 40px; }
    .eat-main { font-size: 28px; }
    .why-section { padding: 80px 0; }
    .why-title { font-size: 28px; margin-bottom: 50px; }
    .cta-section { padding: 60px 0; }
    .cta-content h2 { font-size: 24px; }
    .contact-info-card, .contact-form-card { padding: 25px; }
}

/* ===== MOBILE HEADER - Small Phones ===== */
@media (max-width: 480px) {
    .header-container {
        padding: 10px 12px;
        height: 60px;
    }
    .logo-img {
        height: 38px;
    }
    .mobile-header-actions {
        gap: 5px;
        right: 12px;
    }
    .mobile-menu-btn {
        left: 12px;
    }
    .mobile-action-btn {
        width: 34px;
        height: 34px;
    }
    .mobile-action-btn.menu-btn {
        padding: 6px 12px;
    }
    .mobile-action-btn.menu-btn span {
        font-size: 12px;
    }
    .mobile-action-btn svg {
        width: 16px;
        height: 16px;
    }
    .mobile-menu-btn {
        padding: 6px;
    }
    .mobile-menu-btn span {
        width: 20px;
    }
    .hero { margin-top: 60px; }
    .page-hero { margin-top: 75px; min-height: 240px; }
    .page-hero.small { min-height: 220px; }
    .page-hero-content h1 { font-size: 28px; margin-bottom: 10px; }
    .page-hero-content p { font-size: 14px; }
}
@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .intro-content h2 { font-size: 24px; }
    .btn-outline, .btn-primary { padding: 12px 24px; font-size: 14px; }
    .why-feature { padding: 20px; }
    .why-feature h3 { font-size: 18px; }
    .showcase-slide { margin: 0 10px; }
}

/* ===== ATMOSPHERE GALLERY SLIDER ===== */
.atmosphere-gallery-section {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, var(--bg-cream) 0%, #f0f0ec 100%);
    overflow: hidden;
}

.atmosphere-gallery-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.atmosphere-gallery-section .section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--teal) 0%, #0a5d60 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.atmosphere-gallery-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.atmosphere-gallery-section .section-subtitle {
    color: var(--text-light);
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto;
}

.atmosphere-slider-wrapper {
    position: relative;
    padding: 0 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Navigation Arrows */
.atm-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.atm-nav-btn:hover {
    background: var(--teal);
    transform: translateY(-50%) scale(1.1);
}

.atm-nav-btn:hover svg {
    stroke: #fff;
}

.atm-nav-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-dark);
    transition: stroke 0.3s;
}

.atm-prev { left: 10px; }
.atm-next { right: 10px; }

/* ===== Hero Vertical Logo ===== */
.hero-logo-vertical {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.hero-logo-img {
    height: 140px;
    width: auto;
    filter: drop-shadow(0 8px 30px rgba(0,0,0,0.35));
    margin-bottom: 8px;
}
.hero-logo-title {
    font-family: 'Playfair Display', serif;
    letter-spacing: 8px;
    font-size: clamp(18px, 3vw, 26px);
    margin: 6px 0;
}
.hero-logo-tagline {
    font-size: 14px;
    opacity: 0.9;
}
@media (max-width: 768px) {
    .hero-logo-img { height: 95px; }
    .hero-logo-title { letter-spacing: 6px; font-size: 18px; }
    .hero-logo-vertical { top: 20px; }
}

/* ===== Eatertainment Explainer Video ===== */
.eat-video-wrapper {
    margin: 30px 0 40px;
}
.eat-video-aspect {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    background: #000;
}
.eat-video-aspect::before {
    content: '';
    display: block;
    padding-top: 56.25%;
}
.eat-video-aspect video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Image Modal Viewer ===== */
.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(2px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.image-modal.active { display: flex; }
.image-modal-backdrop {
    position: absolute;
    inset: 0;
}
.image-modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    max-width: 90vw;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.image-modal-content img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    background: #000;
}
.image-modal-caption {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-dark);
    border-top: 1px solid var(--light-gray);
}
.image-modal-close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: var(--text-dark);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
@media (max-width: 480px) {
    .image-modal-content { max-width: 95vw; max-height: 85vh; }
    .image-modal-caption { font-size: 13px; }
}

/* Slider Container */
.atmosphere-slider {
    display: flex;
    gap: 25px;
    overflow: hidden;
    scroll-behavior: smooth;
    padding: 20px 0;
    min-height: 450px;
}

.atm-slide {
    flex: 0 0 auto;
    width: 350px;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    /* Ensure slides are always visible - override any animation classes */
    opacity: 1 !important;
}

.atm-slide:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.atm-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.atm-slide:hover img {
    transform: scale(1.1);
}

.atm-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.atm-slide:hover .atm-slide-overlay {
    opacity: 1;
}

.atm-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: #fff;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.atm-slide:hover .atm-slide-content {
    transform: translateY(0);
    opacity: 1;
}

.atm-slide-label {
    display: inline-block;
    background: var(--orange);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.atm-slide-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.atm-slide-desc {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
}

/* Category Tabs */
.atm-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.atm-tab {
    padding: 12px 28px;
    border: 2px solid #e0e0e0;
    background: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.atm-tab:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.atm-tab.active {
    background: linear-gradient(135deg, var(--teal) 0%, #0a5d60 100%);
    color: #fff;
    border-color: var(--teal);
    box-shadow: 0 4px 15px rgba(13,115,119,0.3);
}

/* Dots Navigation */
.atm-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.atm-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.atm-dot:hover {
    background: var(--orange);
}

.atm-dot.active {
    background: var(--teal);
    width: 35px;
    border-radius: 6px;
}

/* Progress Bar */
.atm-progress {
    width: 200px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin: 25px auto 0;
    overflow: hidden;
}

.atm-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--teal), var(--orange));
    width: 0%;
    transition: width 0.1s linear;
}

/* Responsive */
@media (max-width: 1200px) {
    .atm-slide { width: 300px; height: 400px; }
}

@media (max-width: 992px) {
    .atmosphere-gallery-section { padding: 80px 0 60px; }
    .atmosphere-slider-wrapper { padding: 0 50px; }
    .atm-slide { width: 280px; height: 380px; }
    .atm-nav-btn { width: 44px; height: 44px; }
}

@media (max-width: 768px) {
    .atmosphere-gallery-section .section-title { font-size: 32px; }
    .atmosphere-slider-wrapper { padding: 0 20px; }
    .atm-nav-btn { display: none; }
    .atm-slide { width: 260px; height: 350px; }
    .atm-tabs { gap: 8px; }
    .atm-tab { padding: 10px 20px; font-size: 13px; }
    .atmosphere-slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .atmosphere-slider::-webkit-scrollbar { display: none; }
    .atm-slide { scroll-snap-align: center; }
}

@media (max-width: 480px) {
    .atmosphere-gallery-section .section-title { font-size: 26px; }
    .atmosphere-gallery-section .section-subtitle { font-size: 15px; }
    .atm-slide { width: 240px; height: 320px; }
    .atm-slide-content { padding: 20px; }
    .atm-slide-title { font-size: 18px; }
}


/* ===== EATERTAINMENT PREMIUM SECTION ===== */
.eatertainment-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

/* Background Elements */
.eat-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.eat-bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.eat-circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: floatCircle 20s ease-in-out infinite;
}

.eat-circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: floatCircle 15s ease-in-out infinite reverse;
}

.eat-bg-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.eat-line-1 {
    width: 100%;
    top: 30%;
    animation: shimmerLine 8s ease-in-out infinite;
}

.eat-line-2 {
    width: 80%;
    bottom: 25%;
    left: 10%;
    animation: shimmerLine 10s ease-in-out infinite 2s;
}

@keyframes floatCircle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

@keyframes shimmerLine {
    0%, 100% { opacity: 0.05; }
    50% { opacity: 0.2; }
}

/* Header */
.eat-header {
    text-align: center;
    margin-bottom: 80px;
}

.eat-tag {
    display: inline-block;
    background: rgba(247, 147, 30, 0.2);
    color: var(--orange);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 25px;
    border: 1px solid rgba(247, 147, 30, 0.3);
}

.eat-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.eat-your {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    letter-spacing: 15px;
}

.eat-main {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, var(--orange) 50%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 5px;
    text-shadow: 0 0 60px rgba(247, 147, 30, 0.3);
}

.eat-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Four Pillars */
.eat-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.eat-pillar {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.eat-pillar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(13, 115, 119, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

.eat-pillar:hover {
    transform: translateY(-15px);
    border-color: rgba(13, 115, 119, 0.4);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3), 0 0 40px rgba(13, 115, 119, 0.2);
}

.eat-pillar:hover::before {
    opacity: 1;
}

.eat-pillar-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    color: var(--teal);
    transition: all 0.5s;
}

.eat-pillar:hover .eat-pillar-icon {
    color: var(--orange);
    transform: scale(1.15) rotate(5deg);
}

.eat-pillar-icon svg {
    width: 100%;
    height: 100%;
}

.eat-pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.eat-pillar-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.eat-pillar-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.eat-pillar-tags span {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s;
}

.eat-pillar:hover .eat-pillar-tags span {
    background: rgba(13, 115, 119, 0.3);
    color: #fff;
}

/* CTA */
.eat-cta {
    text-align: center;
}

.eat-cta-text {
    font-size: 22px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.eat-cta-text strong {
    color: var(--orange);
}

.eat-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--teal) 0%, #0a5d60 100%);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(13, 115, 119, 0.4);
}

.eat-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(13, 115, 119, 0.5);
}

.eat-cta-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.eat-cta-btn:hover svg {
    transform: translateX(5px);
}

/* Animation Classes */
.eat-anim-left,
.eat-anim-right,
.eat-anim-up,
.eat-anim-scale {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.eat-anim-left {
    transform: translateX(-80px);
}

.eat-anim-right {
    transform: translateX(80px);
}

.eat-anim-up {
    transform: translateY(50px);
}

.eat-anim-scale {
    transform: scale(0.8);
}

.eat-anim-left.visible,
.eat-anim-right.visible,
.eat-anim-up.visible,
.eat-anim-scale.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Stagger delays for pillars */
.eat-pillar[data-delay="0"] { transition-delay: 0s; }
.eat-pillar[data-delay="1"] { transition-delay: 0.15s; }
.eat-pillar[data-delay="2"] { transition-delay: 0.3s; }
.eat-pillar[data-delay="3"] { transition-delay: 0.45s; }

/* Responsive */
@media (max-width: 1200px) {
    .eat-pillars { grid-template-columns: repeat(2, 1fr); }
    .eat-main { font-size: 56px; }
}

@media (max-width: 768px) {
    .eatertainment-section { padding: 80px 0; }
    .eat-header { margin-bottom: 50px; }
    .eat-main { font-size: 40px; letter-spacing: 2px; }
    .eat-your { font-size: 18px; letter-spacing: 10px; }
    .eat-subtitle { font-size: 16px; }
    .eat-pillars { grid-template-columns: 1fr; gap: 20px; margin-bottom: 50px; }
    .eat-pillar { padding: 30px 25px; }
    .eat-pillar-icon { width: 70px; height: 70px; }
    .eat-pillar-title { font-size: 20px; }
    .eat-cta-text { font-size: 18px; }
    .eat-cta-btn { padding: 15px 30px; font-size: 15px; }
}

@media (max-width: 480px) {
    .eat-main { font-size: 32px; }
    .eat-your { font-size: 14px; letter-spacing: 8px; }
    .eat-tag { font-size: 10px; padding: 8px 18px; }
}


/* ===== LOYALTY PROGRAM SECTION ===== */
.loyalty-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #F9F9F7 0%, #f0f0ec 100%);
}

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

.loyalty-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange) 0%, #e8851a 100%);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.loyalty-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.loyalty-header p {
    color: var(--text-light);
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto;
}

/* How It Works */
.loyalty-how-it-works {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.loyalty-how-it-works h3,
.loyalty-tiers h3,
.loyalty-rewards h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
}

.steps-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    text-align: center;
    padding: 30px 20px;
    background: #F9F9F7;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--teal) 0%, #0a5d60 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 10px auto 20px;
    background: linear-gradient(135deg, rgba(13,115,119,0.1) 0%, rgba(13,115,119,0.02) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.step-item h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.step-arrow {
    color: var(--orange);
}

.step-arrow svg {
    width: 30px;
    height: 30px;
}

/* Tiers */
.loyalty-tiers {
    margin-bottom: 50px;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.tier-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    border: 2px solid #e5e5e5;
    transition: all 0.4s;
    position: relative;
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.tier-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tier-icon svg {
    width: 45px;
    height: 45px;
}

.tier-bronze .tier-icon svg { color: #CD7F32; }
.tier-silver .tier-icon svg { color: #A8A8A8; }
.tier-gold .tier-icon svg { color: #FFD700; }
.tier-platinum .tier-icon svg { color: #E5E4E2; stroke-width: 2.5; }

.tier-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.tier-points {
    display: inline-block;
    background: #F0F0F0;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
}

.tier-card ul {
    list-style: none;
    text-align: left;
}

.tier-card ul li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-light);
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tier-card ul li:last-child {
    border-bottom: none;
}

.tier-card ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
}

.tier-card.featured {
    border-color: var(--teal);
    background: linear-gradient(180deg, #fff 0%, rgba(13,115,119,0.03) 100%);
}

/* Rewards Catalog */
.loyalty-rewards {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.reward-item {
    background: linear-gradient(135deg, #F9F9F7 0%, #fff 100%);
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s;
}

.reward-item:hover {
    border-color: var(--orange);
    transform: scale(1.03);
}

.reward-points {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange) 0%, #e8851a 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.reward-item h5 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.reward-item p {
    font-size: 13px;
    color: var(--text-light);
}

/* CTA */
.loyalty-cta .cta-card {
    background: linear-gradient(135deg, var(--teal) 0%, #0a5d60 100%);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.loyalty-cta .cta-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #fff;
    margin-bottom: 10px;
}

.loyalty-cta .cta-content p {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
}

.loyalty-cta .cta-content strong {
    color: var(--orange);
}

.loyalty-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: var(--teal);
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.loyalty-join-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.loyalty-join-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.loyalty-join-btn:hover svg {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1100px) {
    .tiers-grid { grid-template-columns: repeat(2, 1fr); }
    .rewards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .loyalty-section { padding: 70px 0; }
    .loyalty-header h2 { font-size: 32px; }
    .loyalty-how-it-works { padding: 35px 25px; }
    .steps-row { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); }
    .tiers-grid { grid-template-columns: 1fr; }
    .rewards-grid { grid-template-columns: repeat(2, 1fr); }
    .loyalty-rewards { padding: 35px 25px; }
    .loyalty-cta .cta-card { padding: 35px; flex-direction: column; text-align: center; }
    .loyalty-cta .cta-content { text-align: center; }
}

@media (max-width: 480px) {
    .loyalty-header h2 { font-size: 26px; }
    .rewards-grid { grid-template-columns: 1fr; }
    .loyalty-join-btn { width: 100%; justify-content: center; }
}


/* ===== LOYALTY SIGNUP MODAL ===== */
.loyalty-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loyalty-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loyalty-modal {
    background: #fff;
    border-radius: 24px;
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
}

.loyalty-modal-overlay.active .loyalty-modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.modal-close svg {
    width: 20px;
    height: 20px;
    color: #666;
}

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

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange) 0%, #e8851a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(247,147,30,0.4); }
    50% { box-shadow: 0 0 0 15px rgba(247,147,30,0); }
}

.modal-icon svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

.modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.modal-header p {
    color: var(--text-light);
    font-size: 16px;
}

.modal-header strong {
    color: var(--orange);
}

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

.form-group-modal {
    margin-bottom: 20px;
}

.form-group-modal label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group-modal input,
.form-group-modal select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    background: #F9F9F7;
}

.form-group-modal input:focus,
.form-group-modal select:focus {
    outline: none;
    border-color: var(--teal);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(13,115,119,0.1);
}

.modal-benefits {
    background: linear-gradient(135deg, rgba(13,115,119,0.08) 0%, rgba(13,115,119,0.02) 100%);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.modal-benefits h4 {
    font-size: 14px;
    color: var(--teal);
    margin-bottom: 15px;
    font-weight: 700;
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.benefit-item svg {
    width: 18px;
    height: 18px;
    color: var(--teal);
    flex-shrink: 0;
}

.terms-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
}

.terms-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--teal);
}

.terms-check label {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.terms-check a {
    color: var(--teal);
}

.modal-submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--teal) 0%, #0a5d60 100%);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(13,115,119,0.35);
}

.modal-submit-btn svg {
    width: 22px;
    height: 22px;
}

/* Success State */
.modal-success {
    text-align: center;
    padding: 20px 0;
}

.success-animation {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(34,197,94,0.15) 0%, rgba(34,197,94,0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-animation svg {
    width: 50px;
    height: 50px;
    color: #22C55E;
}

.modal-success h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.modal-success p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 25px;
}

.modal-success strong {
    color: var(--orange);
}

.member-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.member-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(247,147,30,0.2) 0%, transparent 70%);
}

.card-tier {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #CD7F32;
    margin-bottom: 10px;
}

.card-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 8px;
}

.card-points {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.card-points span {
    font-size: 28px;
    font-weight: 700;
    color: var(--orange);
}

.modal-done-btn {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--orange) 0%, #e8851a 100%);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-done-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(247,147,30,0.35);
}

@media (max-width: 600px) {
    .loyalty-modal { padding: 30px 20px; }
    .modal-form .form-row-modal { grid-template-columns: 1fr; }
    .benefits-list { grid-template-columns: 1fr; }
    .modal-header h2 { font-size: 24px; }
}


/* ===== PROFESSIONAL SCROLL ANIMATIONS ===== */

/* Base Animation States */
.scroll-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Fade Up Animation */
.anim-fade-up {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-fade-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Left Animation */
.anim-fade-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-fade-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Fade Right Animation */
.anim-fade-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-fade-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Scale Up Animation */
.anim-scale-up {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-scale-up.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Zoom In Animation */
.anim-zoom-in {
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 1s cubic-bezier(0.34, 1.56, 0.64, 1),
                transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.anim-zoom-in.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Flip Animation */
.anim-flip {
    opacity: 0;
    transform: perspective(800px) rotateX(-30deg);
    transform-origin: center top;
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-flip.revealed {
    opacity: 1;
    transform: perspective(800px) rotateX(0);
}

/* Slide Up Bounce */
.anim-bounce-up {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.7s ease-out,
                transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.anim-bounce-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Blur In Animation */
.anim-blur-in {
    opacity: 0;
    filter: blur(20px);
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-blur-in.revealed {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Stagger Delays for Children */
.stagger-children > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children > *:nth-child(8) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(9) { transition-delay: 0.45s; }
.stagger-children > *:nth-child(10) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(11) { transition-delay: 0.55s; }
.stagger-children > *:nth-child(12) { transition-delay: 0.6s; }

/* Custom Delays */
.delay-100 { transition-delay: 0.1s !important; }
.delay-200 { transition-delay: 0.2s !important; }
.delay-300 { transition-delay: 0.3s !important; }
.delay-400 { transition-delay: 0.4s !important; }
.delay-500 { transition-delay: 0.5s !important; }

/* Hero Text Animation */
.hero-animate-title {
    opacity: 0;
    transform: translateY(50px);
    animation: heroTitleIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-animate-subtitle {
    opacity: 0;
    transform: translateY(30px);
    animation: heroSubtitleIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hero-animate-cta {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: heroCTAIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s forwards;
}

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

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

@keyframes heroCTAIn {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Image Reveal Animation */
.img-reveal {
    position: relative;
    overflow: hidden;
}

.img-reveal::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--teal), var(--orange));
    transform: translateX(-101%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.img-reveal.revealed::before {
    transform: translateX(101%);
}

.img-reveal img {
    transform: scale(1.3);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.img-reveal.revealed img {
    transform: scale(1);
}

/* Card Hover Enhanced */
.card-animated {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s ease;
}

.card-animated:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Number Counter Animation */
.counter-animate {
    display: inline-block;
}

/* Text Reveal Line by Line */
.text-reveal-line {
    overflow: hidden;
}

.text-reveal-line > * {
    display: block;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.text-reveal-line.revealed > * {
    transform: translateY(0);
}

/* Parallax Scroll Effect */
.parallax-slow {
    transition: transform 0.1s linear;
}

/* Floating Animation */
.float-animation {
    animation: floatUpDown 4s ease-in-out infinite;
}

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

/* Pulse Glow Animation */
.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(247,147,30,0.3); }
    50% { box-shadow: 0 0 40px rgba(247,147,30,0.6); }
}

/* Section Title Animation */
.section-title-animated {
    position: relative;
    display: inline-block;
}

.section-title-animated::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--teal));
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.section-title-animated.revealed::after {
    width: 100%;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .anim-fade-up,
    .anim-fade-left,
    .anim-fade-right,
    .scroll-reveal {
        transform: translateY(40px) !important;
    }
    
    .anim-fade-left.revealed,
    .anim-fade-right.revealed,
    .anim-fade-up.revealed,
    .scroll-reveal.revealed {
        transform: translateY(0) !important;
    }
    
    .stagger-children > *:nth-child(n) {
        transition-delay: 0.05s !important;
    }
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal,
    .anim-fade-up,
    .anim-fade-left,
    .anim-fade-right,
    .anim-scale-up,
    .anim-zoom-in,
    .anim-flip,
    .anim-bounce-up,
    .anim-blur-in {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .float-animation,
    .pulse-glow {
        animation: none !important;
    }
}
