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

:root {
    --red: #D32F2F;
    --red-dark: #B71C1C;
    --yellow: #FFC107;
    --yellow-dark: #FF8F00;
    --orange: #FF5722;
    --brown: #5D4037;
    --brown-light: #8D6E63;
    --cream: #FFF8E1;
    --white: #FFFFFF;
    --dark: #1a1a1a;
    --gray: #666;
    --gray-light: #f5f5f5;

    --font: 'Poppins', sans-serif;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--orange));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(211,47,47,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(211,47,47,0.45);
}

.btn-outline {
    border-color: var(--red);
    color: var(--red);
    background: transparent;
}

.btn-outline:hover {
    background: var(--red);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    font-size: 1.1rem;
    padding: 16px 36px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(37,211,102,0.45);
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--red);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    font-size: 1.05rem;
    box-shadow: 0 4px 20px rgba(220,39,67,0.3);
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(220,39,67,0.45);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.5rem;
    font-weight: 900;
}

.logo-satay {
    color: var(--yellow);
    text-shadow: 2px 2px 0 var(--orange);
}

.logo-sentol {
    color: var(--red);
    font-weight: 800;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-menu a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    position: relative;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--red);
}

.nav-cta {
    background: linear-gradient(135deg, var(--red), var(--orange));
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(211,47,47,0.3);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    color: var(--white) !important;
    transform: translateY(-1px);
}

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

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, #fff 50%, #FFF3E0 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--red);
    top: -100px;
    right: -50px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--yellow);
    bottom: -80px;
    left: -60px;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--orange);
    top: 40%;
    right: 20%;
    animation: float 10s ease-in-out infinite;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: var(--yellow);
    top: 20%;
    left: 10%;
    animation: float 7s ease-in-out infinite reverse;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 12px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--dark);
}

.text-gradient {
    background: linear-gradient(135deg, var(--red), var(--orange), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

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

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--red);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
}

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

.hero-img-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fire-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,87,34,0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.hero-logo-img {
    width: 360px;
    height: 360px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
    animation: floatSlow 4s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow);
    color: var(--red);
    animation: bounce 2s ease infinite;
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}

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

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--red), var(--orange));
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
}

.text-highlight {
    color: var(--red);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray);
    margin-top: 12px;
}

/* ===== TENTANG ===== */
.tentang {
    background: var(--gray-light);
}

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

.tentang-card {
    background: var(--white);
    padding: 36px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.tentang-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.tentang-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.tentang-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== MENU ===== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

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

.menu-card-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream), #FFF3E0);
}

.menu-emoji {
    font-size: 5rem;
}

.menu-card-body {
    padding: 24px;
}

.menu-card-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.menu-card-body p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 16px;
}

.menu-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--red);
}

.price-unit {
    font-size: 0.85rem;
    color: var(--gray);
}

.menu-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--red);
    color: var(--white);
}

.menu-card-badge.popular { background: var(--orange); }
.menu-card-badge.special { background: var(--brown); }
.menu-card-badge.family { background: #25D366; }

.menu-cta {
    text-align: center;
    margin-top: 48px;
}

.menu-cta p {
    color: var(--gray);
    margin-bottom: 20px;
}

/* ===== REWARDS ===== */
.rewards-section {
    background: linear-gradient(180deg, #FFF8E1 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

/* Promo Banner */
.rewards-promo-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, #B71C1C, #D32F2F, #FF5722);
    border-radius: var(--radius);
    padding: 36px 40px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(211,47,47,0.3);
}

.rewards-promo-banner::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    top: -80px;
    left: -60px;
}

.rewards-promo-banner::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    bottom: -60px;
    right: -40px;
}

.promo-flame-left,
.promo-flame-right {
    font-size: 3rem;
    animation: floatSlow 2s ease-in-out infinite;
}

.promo-banner-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.promo-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--red-dark);
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
    animation: pulse 2s ease-in-out infinite;
}

.promo-banner-content h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.promo-banner-content p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 500px;
}

/* Steps */
.rewards-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.rewards-step {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    flex: 1;
    max-width: 280px;
}

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

.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--orange));
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 800;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.rewards-step h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.rewards-step p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
}

.rewards-step-arrow {
    color: var(--red);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Promo Quotes */
.rewards-quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.quote-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--red);
    position: relative;
}

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

.quote-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--red), var(--orange));
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 14px;
}

.quote-card p {
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.7;
}

.quote-card strong {
    color: var(--red);
}

/* Rewards CTA */
.rewards-cta {
    margin-top: 0;
}

.rewards-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: linear-gradient(135deg, var(--dark), #2c2c2c);
    border-radius: var(--radius);
    padding: 40px 48px;
    box-shadow: var(--shadow-lg);
}

.rewards-cta-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}

.rewards-cta-text p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
}

/* Rewards responsive */
@media (max-width: 768px) {
    .rewards-promo-banner {
        padding: 28px 24px;
    }

    .promo-flame-left,
    .promo-flame-right {
        display: none;
    }

    .promo-banner-content h3 {
        font-size: 1.4rem;
    }

    .rewards-steps {
        flex-direction: column;
        gap: 16px;
    }

    .rewards-step {
        max-width: 100%;
        width: 100%;
    }

    .rewards-step-arrow {
        transform: rotate(90deg);
    }

    .rewards-quotes {
        grid-template-columns: 1fr;
    }

    .rewards-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
}

/* ===== GALERI ===== */
.galeri-section {
    background: var(--gray-light);
}

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

.galeri-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.galeri-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.galeri-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream), #FFF3E0);
    gap: 12px;
}

.galeri-placeholder span {
    font-size: 3rem;
}

.galeri-placeholder p {
    font-size: 0.9rem;
    color: var(--brown-light);
    font-weight: 600;
}

.galeri-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== LOKASI ===== */
.lokasi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.lokasi-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lokasi-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.lokasi-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--red), var(--orange));
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.lokasi-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.lokasi-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

.lokasi-card a {
    color: var(--red);
    font-weight: 600;
}

.lokasi-card a:hover {
    text-decoration: underline;
}

.lokasi-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
    color: var(--gray);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--red);
}

.map-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--red-dark), var(--red), var(--orange));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -200px;
    right: -100px;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    bottom: -150px;
    left: -100px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--red);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--yellow);
    padding-left: 8px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--red);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.25; }
    50% { transform: scale(1.15); opacity: 0.35; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-img-wrapper {
        width: 340px;
        height: 340px;
    }

    .hero-logo-img {
        width: 280px;
        height: 280px;
    }

    .tentang-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: var(--white);
        padding: 100px 32px 32px;
        gap: 20px;
        box-shadow: -4px 0 30px rgba(0,0,0,0.15);
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-desc {
        margin: 0 auto 32px;
    }

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

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

    .hero-image {
        order: -1;
    }

    .hero-img-wrapper {
        width: 260px;
        height: 260px;
    }

    .hero-logo-img {
        width: 220px;
        height: 220px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .tentang-grid {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .galeri-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lokasi-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .footer-contact p {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-img-wrapper {
        width: 220px;
        height: 220px;
    }

    .hero-logo-img {
        width: 180px;
        height: 180px;
    }

    .galeri-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
