@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2C1810;
    --secondary: #8B4513;
    --accent: #D4A574;
    --cream: #F5E6D3;
    --dark: #1a1a1a;
    --light: #ffffff;
    --gray: #666;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --shadow-xl: 0 12px 48px rgba(0,0,0,0.2);
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F5E6D3 0%, #fff 50%, #E8D5C4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Animasi Biji Kopi di Loading Screen */
.loading-screen .coffee-bean {
    position: absolute;
    width: 50px;
    height: 60px;
    background: radial-gradient(ellipse at center, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.15;
    animation: floatLoading 4s infinite ease-in-out;
}

.loading-screen .coffee-bean::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 70%;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
}

.loading-screen .bean1 { top: 15%; left: 15%; animation-delay: 0s; }
.loading-screen .bean2 { top: 70%; left: 85%; animation-delay: -1s; transform: rotate(45deg); }
.loading-screen .bean3 { top: 25%; left: 75%; animation-delay: -2s; }
.loading-screen .bean4 { top: 80%; left: 20%; animation-delay: -3s; transform: rotate(90deg); }
.loading-screen .bean5 { top: 50%; left: 90%; animation-delay: -1.5s; }
.loading-screen .bean6 { top: 10%; left: 50%; animation-delay: -2.5s; }

@keyframes floatLoading {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.15;
    }
    25% {
        opacity: 0.25;
    }
    50% { 
        transform: translateY(-40px) rotate(180deg) scale(1.1);
        opacity: 0.2;
    }
    75% {
        opacity: 0.15;
    }
}

.loading-content {
    text-align: center;
    color: var(--light);
    position: relative;
    z-index: 2;
}

.loading-logo {
    width: 180px;
    height: auto;
    margin: 0 auto 2rem;
    animation: fadeInScale 1.5s ease-out forwards, pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(44, 24, 16, 0.3));
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.7);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.loading-text {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    animation: pulse 1.5s ease-in-out infinite;
    color: var(--primary);
    text-shadow: 2px 2px 10px rgba(44, 24, 16, 0.2);
    letter-spacing: 1px;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.loading-bar {
    width: 250px;
    height: 6px;
    background: rgba(44, 24, 16, 0.15);
    border-radius: 10px;
    margin: 1.5rem auto;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(44, 24, 16, 0.1);
}

.loading-progress {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--accent), var(--secondary));
    background-size: 200% 100%;
    border-radius: 10px;
    animation: loading 2s ease-in-out infinite, shimmer 1.5s linear infinite;
}

@keyframes loading {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== HERO ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleInBounce {
    0% {
        opacity: 0;
        transform: scale(0.7) translateY(30px);
    }
    60% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideInText {
    0% {
        opacity: 0;
        transform: translateX(-50px) skewY(10deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) skewY(0deg);
    }
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(139, 69, 19, 0.3), 2px 2px 10px rgba(139, 69, 19, 0.2);
    }
    50% {
        text-shadow: 0 0 20px rgba(139, 69, 19, 0.6), 2px 2px 20px rgba(139, 69, 19, 0.4);
    }
}

@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* ===== BACKGROUND ANIMATION ===== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #F5E6D3 0%, #fff 50%, #E8D5C4 100%);
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.about {
    position: relative;
    z-index: 1;
}

.bg-animation.active {
    opacity: 1;
}

.coffee-bean {
    position: absolute;
    width: 40px;
    height: 50px;
    background: radial-gradient(ellipse at center, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.06;
    animation: float 20s infinite ease-in-out;
}

.coffee-bean::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 70%;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
}

.bean1 { top: 10%; left: 10%; animation-delay: 0s; }
.bean2 { top: 60%; left: 80%; animation-delay: -5s; transform: rotate(45deg); }
.bean3 { top: 30%; left: 70%; animation-delay: -10s; }
.bean4 { top: 80%; left: 20%; animation-delay: -15s; transform: rotate(90deg); }
.bean5 { top: 50%; left: 50%; animation-delay: -8s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-50px) rotate(180deg); }
}

.steam-line {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to top, transparent, rgba(139,69,19,0.1), transparent);
    animation: steamLine 8s infinite ease-in-out;
}

.line1 { top: 20%; left: 30%; animation-delay: 0s; }
.line2 { top: 40%; left: 60%; animation-delay: -3s; }
.line3 { top: 70%; left: 85%; animation-delay: -6s; }

@keyframes steamLine {
    0% { transform: translateY(0) scaleY(1); opacity: 0; }
    50% { opacity: 0.3; }
    100% { transform: translateY(-200px) scaleY(0.5); opacity: 0; }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.7rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.header-logo {
    width: 52px;
    height: auto;
    display: block;
    transform: translateY(5px);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--primary);
    letter-spacing: 0px;
    font-style: normal;
}

.logo-subtitle {
    font-size: 0.65rem;
    color: var(--secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ===== NAV MENU ===== */
.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.nav-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.nav-link:hover i {
    transform: translateY(-3px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ===== BURGER ===== */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, rgba(245,230,211,0.7) 0%, rgba(255,255,255,0.3) 100%);
}

.hero-content {
    max-width: 800px;
    text-align: center;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255,255,255,0.9);
    border: 2px solid var(--accent);
    border-radius: 50px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    animation: scaleInBounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

.hero-badge i {
    color: var(--accent);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary);
    animation: glowPulse 3s ease-in-out infinite;
}

.title-line {
    display: block;
    animation: slideInText 0.9s ease-out forwards;
    opacity: 0;
}

.title-line:first-of-type {
    animation-delay: 0.2s;
}

.title-line:last-of-type {
    animation-delay: 0.5s;
}

.highlight {
    color: var(--secondary);
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.9s ease-out 0.7s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
    animation: scaleInBounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

.btn:nth-child(1) {
    animation-delay: 0.9s;
}

.btn:nth-child(2) {
    animation-delay: 1.1s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--light);
    box-shadow: 0 4px 15px rgba(139,69,19,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139,69,19,0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--light);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
    animation: fadeInUp 1s ease-out 1.3s backwards;
    opacity: 0;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--secondary), transparent);
    animation: floatBounce 3s ease-in-out 1.8s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== SECTION COMMONS ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-label i {
    font-size: 1.1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-description {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 8rem 2rem;
    background: #ffffff !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    scroll-snap-align: start;
    position: relative;
    z-index: 10;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: -1;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-card {
    width: 100%;
    height: 600px;
    border-radius: 30px;
    background: url('img/galeri1.webp') center/cover;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transform-origin: center center;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, filter 0.4s ease;
    will-change: transform, box-shadow;
    /* gentle floating animation */
    animation: floatSlow 8s ease-in-out infinite alternate;
}

.image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44,24,16,0.25), transparent 50%);
    transition: opacity 0.5s ease;
}

/* shimmer effect */
.image-card::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -60%;
    width: 220%;
    height: 160%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%) rotate(-10deg);
    transition: transform 0.9s ease;
    pointer-events: none;
}

/* Hover interactions */
.image-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    animation-play-state: paused;
}

.image-card:hover::before {
    opacity: 0.05;
}

.image-card:hover::after {
    transform: translateX(20%) rotate(-10deg);
}

@keyframes floatSlow {
    from { transform: translateY(0) rotate(0.01deg); }
    to { transform: translateY(-6px) rotate(-0.01deg); }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: rgba(245,230,211,0.3);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    background: var(--light);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* ===== MENU SECTION ===== */
.menu {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, rgba(245,230,211,0.3) 0%, rgba(255,255,255,1) 100%);
    position: relative;
    min-height: 100vh;
    scroll-snap-align: start;
}

.menu-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.4;
    pointer-events: none;
}

.menu-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    background: rgba(255,255,255,0.8);
    padding: 0.5rem;
    border-radius: 50px;
    justify-content: center;
    flex-wrap: wrap;
    box-shadow: var(--shadow-sm);
}

.tab-btn {
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    color: var(--gray);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn i {
    font-size: 1.2rem;
}

.tab-btn:hover {
    color: var(--secondary);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--light);
    box-shadow: 0 4px 15px rgba(139,69,19,0.3);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.menu-card {
    background: var(--light);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.menu-card:hover::before {
    transform: scaleX(1);
}

.menu-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.menu-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-image {
    transform: scale(1.08);
}

.menu-info {
    padding: 1.8rem;
}

.menu-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.menu-info p {
    color: var(--gray);
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-size: 0.95rem;
    min-height: 60px;
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.price {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 700;
}

.order-btn {
    padding: 0.65rem 1.3rem;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--light);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(139,69,19,0.2);
}

.order-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(139,69,19,0.35);
}

.order-btn {
    display: none;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: 8rem 2rem;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.gallery-carousel {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 1rem 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.gallery-item {
    flex: 0 0 280px;
    scroll-snap-align: start;
    /* ...existing code... */
}

.gallery-item {
    height: 380px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-label {
    color: var(--light);
    font-size: 1.6rem;
    font-family: var(--font-heading);
    font-weight: 600;
    display: block;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
/* Events Section */
.events {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden;
}

.events::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,165,116,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.events-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 4rem 3rem;
    border-radius: 30px;
    border: 2px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 2;
}

.events-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent), var(--light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--primary);
    box-shadow: 0 8px 30px rgba(212,165,116,0.3);
    animation: pulse 2s ease-in-out infinite;
}

.events-card h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--light);
    margin-bottom: 1rem;
}

.events-card p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-light {
    background: var(--light);
    color: var(--primary);
    border: 2px solid var(--light);
}

.btn-light:hover {
    background: transparent;
    color: var(--light);
    border-color: var(--light);
}

/* ===== CONTACT SECTION (LOKASI) - ENHANCED ===== */
.contact {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, rgba(245,230,211,0.3) 0%, rgba(255,255,255,1) 100%);
    position: relative;
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.3;
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: stretch;
}

/* INFO SECTION - ENHANCED */
.contact-info {
    background: linear-gradient(135deg, var(--light) 0%, rgba(245,230,211,0.5) 100%);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(212,165,116,0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--light);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-item:hover {
    transform: translateX(10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.info-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139,69,19,0.2);
}

.info-item:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-content p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* MAP SECTION - ENHANCED */
.contact-map {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 100%;
    min-height: 500px;
    border: 3px solid var(--accent);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: saturate(1.2) contrast(1.1);
}

.contact-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212,165,116,0.1), transparent);
    pointer-events: none;
    z-index: 1;
}

/* ===== SOCIAL CONTACT SECTION - ENHANCED ===== */
.social-contact-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--light) 0%, rgba(245,230,211,0.2) 100%);
    position: relative;
    overflow: hidden;
}

.social-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(245,230,211,0.3), transparent);
    pointer-events: none;
}

/* GRID - ENHANCED */
.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

/* Ensure all grid rows are equal height so cards match */
.contact-card-grid {
    grid-auto-rows: 1fr;
}

/* CARD - PREMIUM DESIGN */
.contact-card {
    background: linear-gradient(135deg, var(--light) 0%, rgba(255,255,255,0.95) 100%);
    border: 2px solid rgba(212,165,116,0.2);
    border-radius: 30px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
    flex: 1 1 auto;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(139,69,19,0.25);
    border-color: var(--accent);
}

/* ICON WRAPPER - ENHANCED */
.contact-card-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    padding: 0;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(245,230,211,0.5), rgba(255,255,255,0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(139,69,19,0.2);
}

/* ICON FONT - SIZE ENHANCEMENT */
.contact-card-icon i {
    font-size: 2.8rem;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-card-icon i {
    transform: scale(1.1);
}

.whatsapp-icon {
    background: linear-gradient(135deg, rgba(37,211,102,0.1), rgba(37,211,102,0.05));
}
.whatsapp-icon i { font-size: 3rem; color: #25D366; }

.instagram-icon {
    background: linear-gradient(135deg, rgba(228,64,95,0.1), rgba(228,64,95,0.05));
}
.instagram-icon i { font-size: 2.8rem; color: #E4405F; }

.facebook-icon {
    background: linear-gradient(135deg, rgba(24,119,242,0.1), rgba(24,119,242,0.05));
}
.facebook-icon i { font-size: 2.7rem; color: #1877F2; }

.tiktok-icon {
    background: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(0,0,0,0.05));
}
.tiktok-icon i { font-size: 2.6rem; color: #000; }

/* ===== LOGO FOOD - ENHANCED ===== */
.contact-logo-img {
    max-width: 75px;
    max-height: 75px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-logo-img {
    transform: scale(1.1);
}

/* Specific logo styling for GoFood */
.gofood-icon {
    background: linear-gradient(135deg, rgba(0,174,81,0.1), rgba(0,174,81,0.05));
}
.contact-logo-img.gofood-specific-logo {
    max-width: 60px;
    max-height: 60px;
}

/* Specific logo styling for GrabFood */
.grab-icon {
    background: linear-gradient(135deg, rgba(0,177,82,0.1), rgba(0,177,82,0.05));
}
.contact-logo-img.grabfood-specific-logo {
    max-width: 65px;
    max-height: 65px;
    transform: translateY(8px);
}

/* Specific logo styling for ShopeeFood */
.shopeefood-icon {
    background: linear-gradient(135deg, rgba(238,77,45,0.1), rgba(238,77,45,0.05));
}
.contact-logo-img.shopeefood-specific-logo {
    max-width: 80px;
    max-height: 80px;
    transform: translateY(8px);
}

/* TITLE - ENHANCED */
.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card:hover h3 {
    color: var(--secondary);
}

/* DESC - ENHANCED */
.contact-card p {
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    flex-grow: 1;
    font-size: 1rem;
}

/* BUTTON - PREMIUM STYLE */
.btn-outline-contact {
    margin-top: auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--light);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(139,69,19,0.2);
    position: relative;
    overflow: hidden;
}

.btn-outline-contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-outline-contact:hover::before {
    width: 300px;
    height: 300px;
}

.btn-outline-contact:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(139,69,19,0.35);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    position: relative;
}

.footer-top {
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.footer-logo {
    width: 72px;
    height: auto;
    display: block;
    transform: translateY(6px);
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin: 0;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-brand p {
    font-size: 0.8rem;
    opacity: 0.85;
    margin: 0;
}

.footer-desc {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--light);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(139,69,19,0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(139,69,19,0.4);
}

/* ===== RESPONSIVE ===== */

/* TABLET & MEDIUM DEVICES (1025px - 1440px) */
@media (max-width: 1440px) {
    .nav-container {
        padding: 0 3rem;
    }
    
    .container {
        padding: 0 2rem;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-container {
        padding: 0 2.5rem;
    }
}

@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .image-card {
        height: 400px;
    }
    
    .gallery-item {
        flex: 0 0 calc(50% - 0.75rem);
        height: 320px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        gap: 2rem;
    }
}

/* MOBILE & SMALL TABLETS (769px - 1024px) */
@media (max-width: 768px) {
    /* NAVIGATION */
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--light);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle span {
        width: 24px;
        height: 2.5px;
    }
    
    /* HERO SECTION */
    .hero {
        padding: 6rem 1.5rem 3rem;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
    }
    
    /* SECTIONS */
    .about,
    .menu,
    .gallery,
    .contact,
    .social-contact-section,
    .events {
        padding: 6rem 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* ABOUT SECTION */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .image-card {
        height: 350px;
    }
    
    /* MENU SECTION */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-tabs {
        padding: 0.75rem;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .tab-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .menu-info {
        padding: 1.5rem;
    }
    
    /* GALLERY SECTION */
    .gallery-item {
        flex: 0 0 100%;
        height: 300px;
    }
    
    /* CONTACT SECTION */
    .contact-grid {
        gap: 2rem;
    }
    
    .contact-info {
        padding: 2rem;
    }
    
    .info-items {
        gap: 1.5rem;
    }
    
    .info-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-map {
        min-height: 400px;
    }
    
    /* SOCIAL CONTACT */
    .contact-card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
        min-height: 380px;
    }
    
    .contact-card-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .contact-card-icon i {
        font-size: 2.4rem;
    }
    
    .contact-card h3 {
        font-size: 1.4rem;
    }
    
    .contact-card p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-outline-contact {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* EVENTS SECTION */
    .events-card {
        padding: 2.5rem 1.5rem;
    }
    
    .events-card h2 {
        font-size: 2rem;
    }
    
    .events-card p {
        font-size: 1.05rem;
    }
    
    /* FOOTER */
    .footer-grid {
        text-align: center;
    }
    
    .footer-brand {
        flex-direction: column;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1.2rem;
    }
    
    /* RESPONSIVE IMAGES */
    .gallery-carousel {
        gap: 1rem;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
}

/* SMALL MOBILE (481px - 768px) */
@media (max-width: 600px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .header-logo {
        width: 45px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }
    
    .hero {
        padding: 5rem 1rem 2.5rem;
        min-height: 85vh;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1.2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .about,
    .menu,
    .gallery,
    .contact,
    .social-contact-section,
    .events {
        padding: 5rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .menu-tabs {
        flex-direction: column;
        margin-bottom: 1.5rem;
    }
    
    .tab-btn {
        width: 100%;
        padding: 0.75rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .loading-logo {
        width: 110px;
    }
    
    .loading-text {
        font-size: 1.8rem;
    }
    
    .loading-bar {
        width: 180px;
    }
    
    .contact-card {
        padding: 1.5rem 1rem;
        min-height: 350px;
    }
    
    .contact-card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .contact-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-card p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-card-grid {
        gap: 1rem;
    }
    
    .info-item {
        padding: 1.2rem;
    }
    
    .contact-map {
        min-height: 300px;
    }
    
    .events-card {
        padding: 2rem 1rem;
    }
    
    .events-card h2 {
        font-size: 1.6rem;
    }
    
    .events-card p {
        font-size: 1rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* EXTRA SMALL MOBILE (480px & below) */
@media (max-width: 480px) {
    * {
        scroll-behavior: auto;
    }
    
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .header-logo {
        width: 40px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-subtitle {
        font-size: 0.55rem;
    }
    
    .hero {
        padding: 4.5rem 0.75rem 2rem;
        min-height: 80vh;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.35rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.25;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .about,
    .menu,
    .gallery,
    .contact,
    .social-contact-section,
    .events {
        padding: 4rem 0.75rem;
    }
    
    .section-label {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .menu-tabs {
        flex-direction: column;
        padding: 0.5rem;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .tab-btn {
        width: 100%;
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
    
    .tab-btn i {
        font-size: 1rem;
    }
    
    .menu-info {
        padding: 1.2rem 1rem;
    }
    
    .menu-info h3 {
        font-size: 1.2rem;
    }
    
    .menu-info p {
        font-size: 0.9rem;
        min-height: 50px;
    }
    
    .image-card {
        height: 280px;
    }
    
    .loading-logo {
        width: 100px;
        margin-bottom: 1.5rem;
    }
    
    .loading-text {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .loading-bar {
        width: 150px;
        height: 5px;
        margin: 1rem auto;
    }
    
    .contact-card-grid {
        gap: 0.75rem;
    }
    
    .contact-card {
        padding: 1.5rem 1rem;
        min-height: 320px;
    }
    
    .contact-card-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1rem;
    }
    
    .contact-card-icon i {
        font-size: 2.2rem;
    }
    
    .contact-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-card p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .btn-outline-contact {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .contact-logo-img {
        max-width: 60px;
        max-height: 60px;
    }
    
    .contact-logo-img.gofood-specific-logo {
        max-width: 50px;
        max-height: 50px;
    }
    
    .contact-logo-img.grabfood-specific-logo {
        max-width: 55px;
        max-height: 55px;
    }
    
    .contact-logo-img.shopeefood-specific-logo {
        max-width: 65px;
        max-height: 65px;
    }
    
    .info-item {
        padding: 1rem 0.75rem;
        gap: 0.75rem;
    }
    
    .info-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .info-content h3 {
        font-size: 1.1rem;
    }
    
    .info-content p {
        font-size: 0.85rem;
    }
    
    .contact-map {
        min-height: 250px;
    }
    
    .contact-info {
        padding: 1.5rem 1rem;
    }
    
    .events-card {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }
    
    .events-icon {
        width: 75px;
        height: 75px;
        margin-bottom: 1rem;
        font-size: 2rem;
    }
    
    .events-card h2 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .events-card p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-grid {
        gap: 1.5rem;
    }
    
    .footer-logo {
        width: 60px;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .footer-bottom-content {
        gap: 0.75rem;
    }
    
    .footer-bottom-links {
        gap: 0.5rem;
    }
    
    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: 1rem;
        right: 1rem;
        font-size: 1rem;
    }
    
    /* Gallery responsif */
    .gallery-item {
        flex: 0 0 100%;
        height: 250px;
    }
    
    .gallery-label {
        font-size: 1.2rem;
    }
    
    .scroll-indicator {
        bottom: 2rem;
    }
}