/* ============================================
   MAK GAMBRENG — STYLESHEET
   One Stop F&B Franchise Centre
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --kuning: #FFD700;
    --kuning-glow: #FFC107;
    --kuning-light: #FFF3B0;
    --krem: #FFF5E1;
    --krem-dark: #F5E6D3;
    --putih: #FFFFFF;
    --hitam: #1A1A1A;
    --hitam-light: #2D2D2D;
    --merah: #E63946;
    --merah-light: #FF6B6B;
    --hijau: #2A9D8F;
    --hijau-light: #4ECDC4;
    --abu: #F5F5F5;
    --abu-text: #888888;

    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-strong: 0 12px 40px rgba(0,0,0,0.16);
    --shadow-glow: 0 0 30px rgba(255,215,0,0.3);
    --shadow-glow-strong: 0 0 40px rgba(255,215,0,0.5);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 50px;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--putih);
    color: var(--hitam);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

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

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

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

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hitam);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-logo {
    width: 200px;
    height: 200px;
    position: relative;
    animation: logoPulse 2s ease-in-out infinite;
}

.preloader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255,215,0,0.3));
}

.preloader-steam {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.steam-particle {
    width: 6px;
    height: 25px;
    background: linear-gradient(to top, var(--kuning), transparent);
    border-radius: 50%;
    opacity: 0;
    animation: steamRise 1.5s ease-in-out infinite;
}

.steam-particle:nth-child(2) { animation-delay: 0.3s; }
.steam-particle:nth-child(3) { animation-delay: 0.6s; }

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes steamRise {
    0% { opacity: 0; transform: translateY(10px) scale(0.5); }
    50% { opacity: 0.7; }
    100% { opacity: 0; transform: translateY(-25px) scale(1.2); }
}

.preloader-text {
    margin-top: 30px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 28px;
    color: var(--kuning);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.preloader-sub {
    margin-top: 10px;
    font-size: 14px;
    color: var(--krem);
    opacity: 0.7;
    letter-spacing: 1px;
}

.preloader-progress {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    margin-top: 30px;
    overflow: hidden;
}

.preloader-progress-bar {
    width: 0%;
    height: 100%;
    background: var(--kuning);
    border-radius: 3px;
    transition: width 0.3s ease;
    animation: progressFill 2s ease-in-out forwards;
}

@keyframes progressFill {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    padding: 10px 50px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo-img {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: var(--shadow-glow);
    transition: var(--transition-normal);
}

.header-logo:hover .header-logo-img {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow-strong);
}

.header-logo-text {
    display: flex;
    flex-direction: column;
}

.header-logo-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    color: var(--putih);
    transition: var(--transition-normal);
    letter-spacing: 0.5px;
}

.header.scrolled .header-logo-name {
    color: var(--hitam);
}

.header-logo-tagline {
    font-size: 10px;
    color: var(--kuning);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    transition: var(--transition-normal);
}

.header.scrolled .header-logo-tagline {
    color: var(--abu-text);
}

.header-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.header-nav a {
    color: var(--putih);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 5px 0;
    transition: var(--transition-normal);
}

.header.scrolled .header-nav a {
    color: var(--hitam);
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--kuning);
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

.header-nav a:hover {
    color: var(--kuning);
}

.header-cta {
    background: var(--kuning);
    color: var(--hitam);
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-glow);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.4);
    background: var(--kuning-glow);
}

.header-cta i {
    transition: transform 0.3s;
}

.header-cta:hover i {
    transform: translateX(3px);
}

.header-mobile-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--putih);
    cursor: pointer;
    padding: 5px;
}

.header.scrolled .header-mobile-btn {
    color: var(--hitam);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--hitam);
    z-index: 1001;
    padding: 80px 30px 30px;
    transition: right 0.4s ease;
    overflow-y: auto;
}

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

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--putih);
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu-nav ul {
    list-style: none;
}

.mobile-menu-nav li {
    margin-bottom: 5px;
}

.mobile-menu-nav a {
    color: var(--putih);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition-normal);
}

.mobile-menu-nav a:hover {
    color: var(--kuning);
    padding-left: 10px;
}

.mobile-menu-cta {
    margin-top: 30px;
    display: block;
    text-align: center;
    padding: 18px;
    background: var(--kuning);
    color: var(--hitam);
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 30%, #0f3460 60%, #1a1a2e 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23FFD700" opacity="0.15"/></svg>');
    background-size: 40px 40px;
    animation: bgMove 20s linear infinite;
}

@keyframes bgMove {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--kuning);
    border-radius: 50%;
    opacity: 0.2;
    animation: particleFloat 15s infinite linear;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 120px 20px 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,215,0,0.15);
    border: 1.5px solid var(--kuning);
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--kuning);
    border-radius: 50%;
    animation: dotPulse 2s infinite;
}

.hero-badge-text {
    color: var(--kuning);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: var(--putih);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-title .highlight {
    color: var(--kuning);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -5px;
    right: -5px;
    height: 15px;
    background: var(--kuning);
    opacity: 0.25;
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--krem);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.5s both;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.7s both;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--kuning);
    color: var(--hitam);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255,215,0,0.4);
    background: var(--kuning-glow);
}

.btn-primary i {
    transition: transform 0.3s;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    color: var(--putih);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    border-color: var(--kuning);
    color: var(--kuning);
    transform: translateY(-3px);
    background: rgba(255,215,0,0.05);
}

.btn-dark {
    background: var(--hitam);
    color: var(--kuning);
    box-shadow: var(--shadow-medium);
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
    background: var(--hitam-light);
}

.btn-outline-dark {
    background: transparent;
    color: var(--hitam);
    border: 2px solid var(--hitam);
}

.btn-outline-dark:hover {
    background: var(--hitam);
    color: var(--kuning);
    transform: translateY(-3px);
}

.btn-large {
    padding: 20px 50px;
    font-size: 17px;
}

/* ===== HERO STATS ===== */
.hero-stats {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 60px;
    z-index: 2;
    animation: fadeInUp 1s ease 1s both;
}

.hero-stat {
    text-align: center;
    position: relative;
}

.hero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 36px;
    color: var(--kuning);
    display: block;
    line-height: 1;
}

.hero-stat-label {
    font-size: 12px;
    color: var(--krem);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-indicator span {
    font-size: 11px;
    color: var(--kuning);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.scroll-indicator i {
    color: var(--kuning);
    font-size: 20px;
}

@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 COMMON ===== */
.section {
    padding: 100px 50px;
    position: relative;
}

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

.section-label {
    display: inline-block;
    background: rgba(255,215,0,0.15);
    color: var(--kuning);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    color: var(--hitam);
    margin-bottom: 15px;
}

.section-title span {
    color: var(--kuning);
    position: relative;
}

.section-subtitle {
    font-size: 17px;
    color: var(--abu-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== SIGNATURE MENU ===== */
.menu-section {
    background: var(--krem);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-card {
    background: var(--putih);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
}

.menu-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.menu-card-image {
    height: 220px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-card:nth-child(1) .menu-card-image { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
}
.menu-card:nth-child(2) .menu-card-image { 
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); 
}
.menu-card:nth-child(3) .menu-card-image { 
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); 
}
.menu-card:nth-child(4) .menu-card-image { 
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); 
}

.menu-card-icon {
    font-size: 80px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    transition: transform 0.4s ease;
}

.menu-card:hover .menu-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.menu-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badgePulse 2s infinite;
    z-index: 2;
}

.badge-bestseller {
    background: var(--merah);
    color: var(--putih);
}

.badge-new {
    background: var(--kuning);
    color: var(--hitam);
}

.badge-promo {
    background: var(--hijau);
    color: var(--putih);
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.menu-card-content {
    padding: 25px;
}

.menu-card-title {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

.menu-card-desc {
    font-size: 14px;
    color: var(--abu-text);
    margin-bottom: 15px;
    line-height: 1.5;
}

.menu-card-price {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: var(--kuning);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.menu-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 12px;
    background: var(--hitam);
    color: var(--kuning);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-normal);
}

.menu-card-cta:hover {
    background: var(--kuning);
    color: var(--hitam);
}

/* ===== BRAND STORY ===== */
.story-section {
    background: var(--putih);
}

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

.story-image {
    position: relative;
}

.story-image-main {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 150px;
    box-shadow: var(--shadow-medium);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.story-image-main::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: storyRotate 15s linear infinite;
}

@keyframes storyRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.story-image-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--kuning);
    border-radius: var(--radius-lg);
    bottom: -30px;
    right: -30px;
    z-index: 1;
    opacity: 0.8;
    animation: accentPulse 3s ease-in-out infinite;
}

@keyframes accentPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.story-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.story-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.story-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.story-feature:hover {
    background: var(--krem);
    transform: translateX(5px);
}

.story-feature-icon {
    width: 45px;
    height: 45px;
    background: var(--kuning);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.story-feature-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 700;
}

.story-feature-text p {
    font-size: 13px;
    color: var(--abu-text);
    margin: 0;
    line-height: 1.4;
}

/* ===== FRANCHISE MAP ===== */
.franchise-section {
    background: var(--hitam);
    color: var(--putih);
    position: relative;
    overflow: hidden;
}

.franchise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23FFD700" opacity="0.08"/></svg>');
    background-size: 50px 50px;
}

.franchise-section .section-title {
    color: var(--putih);
}

.franchise-section .section-subtitle {
    color: var(--krem);
    opacity: 0.8;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto 50px;
    position: relative;
}

.map-indonesia {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255,215,0,0.1);
}

.map-indonesia::after {
    content: '🗺️ Peta Interaktif Indonesia';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: rgba(255,255,255,0.1);
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.map-point {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--kuning);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255,215,0,0.5);
    z-index: 2;
}

.map-point::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid var(--kuning);
    border-radius: 50%;
    animation: mapPulse 2s infinite;
}

.map-point:hover {
    transform: scale(1.4);
    box-shadow: 0 0 30px rgba(255,215,0,0.8);
}

@keyframes mapPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.map-tooltip {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--putih);
    color: var(--hitam);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    z-index: 3;
}

.map-point:hover .map-tooltip {
    opacity: 1;
    bottom: 35px;
}

.franchise-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.franchise-stat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.franchise-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--kuning);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.franchise-stat:hover::before {
    transform: scaleX(1);
}

.franchise-stat:hover {
    background: rgba(255,215,0,0.08);
    border-color: var(--kuning);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.franchise-stat-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 42px;
    color: var(--kuning);
    margin-bottom: 10px;
    line-height: 1;
}

.franchise-stat-label {
    font-size: 13px;
    color: var(--krem);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonial-section {
    background: var(--krem);
    overflow: hidden;
    padding: 80px 0;
}

.testimonial-section .section-header {
    padding: 0 50px;
}

.testimonial-marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonial-marquee {
    display: flex;
    gap: 30px;
    animation: marquee 40s linear infinite;
    width: max-content;
    padding: 20px 0;
}

.testimonial-marquee:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    background: var(--putih);
    border-radius: var(--radius-lg);
    padding: 35px;
    width: 380px;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-normal);
    cursor: grab;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-stars {
    color: var(--kuning);
    font-size: 16px;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--kuning) 0%, var(--kuning-glow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.testimonial-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
    font-weight: 700;
}

.testimonial-info p {
    font-size: 13px;
    color: var(--abu-text);
    font-weight: 500;
}

.testimonial-badge {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 12px;
    background: rgba(255,215,0,0.15);
    color: var(--kuning);
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== FRANCHISE CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--kuning) 0%, #FFC107 50%, var(--kuning-glow) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 50px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    animation: ctaRotate 25s linear infinite;
}

@keyframes ctaRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 48px;
    color: var(--hitam);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-section > .cta-content > p {
    font-size: 20px;
    color: var(--hitam);
    opacity: 0.85;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.cta-urgency {
    margin-top: 25px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--merah);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: urgencyPulse 2s infinite;
}

@keyframes urgencyPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.02); }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--hitam);
    color: var(--putih);
    padding: 80px 50px 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--kuning), var(--kuning-glow), var(--kuning));
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .header-logo {
    margin-bottom: 20px;
}

.footer-brand .header-logo-name {
    color: var(--putih);
}

.footer-brand .header-logo-tagline {
    color: var(--kuning);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: #aaa;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--putih);
    font-size: 18px;
    transition: var(--transition-normal);
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-social a:hover {
    background: var(--kuning);
    color: var(--hitam);
    transform: translateY(-3px);
    border-color: var(--kuning);
    box-shadow: var(--shadow-glow);
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--kuning);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: #aaa;
    font-size: 14px;
    transition: var(--transition-normal);
    display: inline-block;
}

.footer-column a:hover {
    color: var(--kuning);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-item i {
    color: var(--kuning);
    font-size: 16px;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.footer-contact-item span {
    font-size: 14px;
    color: #aaa;
    line-height: 1.5;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #666;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: #666;
    transition: var(--transition-normal);
}

.footer-bottom-links a:hover {
    color: var(--kuning);
}

/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--putih);
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition-normal);
    position: relative;
    border: 3px solid rgba(255,255,255,0.3);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #25D366;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--hitam);
    color: var(--putih);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--hitam);
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    right: 80px;
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 15px;
    background: var(--putih);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 998;
    gap: 10px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.mobile-sticky-cta .btn {
    flex: 1;
    padding: 14px 16px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-image {
        order: -1;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 20px;
    }

    .header-nav,
    .header-cta {
        display: none;
    }

    .header-mobile-btn {
        display: block;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

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

    .hero-cta-group .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-stats {
        gap: 25px;
        bottom: 120px;
    }

    .hero-stat-number {
        font-size: 28px;
    }

    .hero-stat-label {
        font-size: 10px;
    }

    .hero-stat:not(:last-child)::after {
        right: -12px;
        height: 30px;
    }

    .section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 15px;
    }

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

    .franchise-stats {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .story-features {
        grid-template-columns: 1fr;
    }

    .story-image-main {
        height: 350px;
    }

    .testimonial-card {
        width: 320px;
        padding: 25px;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .cta-section > .cta-content > p {
        font-size: 16px;
    }

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

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .mobile-sticky-cta {
        display: flex;
    }

    .floating-whatsapp {
        bottom: 85px;
    }

    .map-indonesia {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 13px;
    }

    .preloader-text {
        font-size: 22px;
    }

    .header-logo-img {
        width: 45px;
        height: 45px;
    }

    .header-logo-name {
        font-size: 18px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header, .floating-whatsapp, .mobile-sticky-cta, .preloader {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 20px;
    }

    .section {
        padding: 30px 20px;
    }
}
