/* ========================================
   MIXUE INDONESIA - Main Stylesheet
   ======================================== */

/* Variables */
:root {
    --red: #D32F2F;
    --red-dark: #B71C1C;
    --red-light: #FFEBEE;
    --white: #FFFFFF;
    --brown: #8B4513;
    --brown-light: #A0522D;
    --bg: #FFF8F8;
    --bg-alt: #FFF0F0;
    --text: #1a1a1a;
    --text-light: #666;
    --text-muted: #999;
    --border: #FFE5E5;
    --shadow: rgba(211, 47, 47, 0.1);
    --shadow-lg: rgba(211, 47, 47, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --font-head: 'Nunito', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --nav-height: 70px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

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

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: var(--font-head);
    font-weight: 800;
    line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

p { color: var(--text-light); }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-lg);
}

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

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

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

.btn-white:hover {
    background: var(--bg-alt);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-nav {
    background: var(--red);
    color: var(--white) !important;
    border-radius: var(--radius);
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-nav:hover {
    background: var(--red-dark);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--red);
}

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

.nav-menu a {
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s;
    position: relative;
}

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

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

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

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

.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    background: linear-gradient(135deg, #FFF0F0 0%, #FFFFFF 50%, #FFF5E6 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(211,47,47,0.05) 0%, transparent 60%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding: 60px 20px 60px 60px;
    position: relative;
    z-index: 2;
}

.halal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--text);
    margin-bottom: 16px;
}

.hero h1 span {
    color: var(--red);
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.hero-sub strong {
    color: var(--red);
    font-weight: 700;
}

.hero-price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius);
    margin-bottom: 32px;
}

.hero-price-tag .from {
    font-size: 0.85rem;
    opacity: 0.85;
}

.hero-price-tag .price {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 900;
}

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

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

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

.stat-num {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--red);
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.snowman-float {
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(211,47,47,0.15));
}

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

/* ========================================
   SECTIONS - GENERAL
   ======================================== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-tag {
    display: inline-block;
    background: var(--red-light);
    color: var(--red);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.section-header p {
    margin-top: 8px;
    font-size: 1.05rem;
}

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

/* ========================================
   BESTSELLERS
   ======================================== */
.bestsellers {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px var(--shadow-lg);
}

.product-img {
    height: 180px;
    background: linear-gradient(135deg, var(--red-light) 0%, #FFF5E6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

.product-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--red);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.product-info p {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.product-price {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--red);
}

/* ========================================
   PRICE BANNER
   ======================================== */
.price-banner {
    background: var(--red);
    padding: 60px 0;
}

.price-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.price-item {
    text-align: center;
    color: var(--white);
    opacity: 0.9;
}

.price-item.highlight {
    opacity: 1;
}

.price-item .price-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.price-item .price-val {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 900;
}

.price-item .price-label {
    font-size: 0.85rem;
    opacity: 0.85;
}

.price-note {
    text-align: center;
    color: var(--white);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0.95;
}

.price-note strong {
    font-weight: 700;
}

/* ========================================
   WHY SECTION
   ======================================== */
.why-section {
    background: var(--bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.why-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.why-card:hover {
    border-color: var(--red);
    box-shadow: 0 8px 24px var(--shadow);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.9rem;
}

/* ========================================
   FRANCHISE CTA (Home)
   ======================================== */
.franchise-cta {
    padding: 80px 0;
    background: var(--bg);
}

.franchise-box {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    overflow: hidden;
    position: relative;
}

.franchise-content {
    flex: 1;
    color: var(--white);
}

.franchise-content h2 {
    color: var(--white);
    margin: 12px 0 16px;
}

.franchise-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
    max-width: 500px;
}

.franchise-highlights {
    display: flex;
    gap: 32px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.fh-item {
    display: flex;
    flex-direction: column;
}

.fh-item .fh-val {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
}

.fh-item .fh-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.franchise-visual {
    flex-shrink: 0;
}

.store-mock {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    width: fit-content;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.store-badge {
    background: var(--red);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--text);
    color: var(--white);
    padding: 60px 0 0;
}

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

.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin: 16px 0;
    font-size: 0.9rem;
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo span {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.3rem;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    font-size: 1rem;
}

.footer-social a:hover {
    background: var(--red);
}

.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.halal-badge-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ========================================
   PAGE HEADER (inner pages)
   ======================================== */
.page-header {
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--red-light) 0%, var(--white) 100%);
}

.page-header h1 {
    margin: 12px 0 8px;
}

.page-header p {
    font-size: 1.1rem;
}

.halal-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 12px;
}

/* ========================================
   MENU PAGE
   ======================================== */
.menu-filter {
    padding: 20px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: var(--nav-height);
    z-index: 100;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.filter-tab {
    padding: 8px 20px;
    border: 2px solid var(--border);
    border-radius: 50px;
    background: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.menu-section {
    padding: 60px 0;
    background: var(--bg);
}

.menu-category {
    margin-bottom: 60px;
}

.menu-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.cat-icon {
    font-size: 2.5rem;
}

.category-header h2 {
    font-size: 1.5rem;
}

.category-header p {
    font-size: 0.9rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

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

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

.menu-card-header {
    height: 120px;
    background: linear-gradient(135deg, var(--red-light) 0%, #FFF5E6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

.menu-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--brown);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
}

.menu-badge.bestseller-tag {
    background: var(--red);
}

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

.menu-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.menu-card-body p {
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-price {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--red);
}

.menu-tag {
    background: var(--red-light);
    color: var(--red);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
}

/* ========================================
   PRICE SUMMARY
   ======================================== */
.price-summary {
    padding: 60px 0;
    background: var(--white);
}

.summary-box {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    color: var(--white);
}

.summary-box h3 {
    color: var(--white);
    margin-bottom: 28px;
    font-size: 1.3rem;
}

.summary-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.summary-item {
    display: flex;
    flex-direction: column;
}

.s-label {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 4px;
}

.s-val {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 900;
}

.s-product {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 4px;
}

.summary-note {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

/* ========================================
   LOCATIONS PAGE
   ======================================== */
.location-search {
    padding: 40px 0;
    background: var(--white);
}

.search-box {
    max-width: 700px;
    margin: 0 auto;
}

.search-input-wrap {
    display: flex;
    align-items: center;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
}

.search-input-wrap:focus-within {
    border-color: var(--red);
}

.search-icon {
    padding: 0 14px;
    font-size: 1.2rem;
}

.search-input-wrap input {
    flex: 1;
    padding: 14px 0;
    border: none;
    background: none;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}

.search-btn {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.search-btn:hover {
    background: var(--red-dark);
}

.search-hints {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.search-hints span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hint-tag {
    background: var(--red-light);
    color: var(--red);
    border: none;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.hint-tag:hover {
    background: var(--red);
    color: var(--white);
}

/* Cities Grid */
.cities-section {
    padding: 60px 0;
    background: var(--bg);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.city-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--border);
    transition: all 0.25s;
    cursor: pointer;
    position: relative;
}

.city-card:hover {
    border-color: var(--red);
    box-shadow: 0 4px 16px var(--shadow);
}

.city-card.hidden {
    display: none;
}

.city-icon {
    font-size: 2rem;
}

.city-info h3 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.city-info p {
    font-size: 0.8rem;
}

.city-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--red);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
}

.city-badge-og {
    background: var(--brown);
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: var(--white);
}

.map-box {
    background: linear-gradient(135deg, var(--red-light) 0%, var(--bg) 100%);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
}

.map-placeholder .map-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.map-placeholder h3 {
    margin-bottom: 8px;
}

.map-note {
    font-size: 0.9rem;
    margin: 12px 0 28px;
}

.map-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

.ms-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 900;
    color: var(--red);
}

.ms-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Expansion CTA */
.expansion-cta {
    padding: 60px 0;
    background: var(--bg);
}

.expansion-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
    border: 1px solid var(--border);
}

.expansion-cities {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.exp-city {
    background: var(--red-light);
    color: var(--red);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.growth-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 120px;
    padding: 0 10px;
}

.chart-bar {
    width: 40px;
    height: var(--h);
    background: var(--red-light);
    border-radius: 6px 6px 0 0;
    position: relative;
    transition: all 0.3s;
}

.chart-bar.active {
    background: var(--red);
}

.chart-bar::after {
    content: attr(style);
    display: none;
}

.chart-label {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.franchise-cta-small {
    padding: 40px 0;
    background: var(--white);
}

.cta-small-box {
    background: linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 100%);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-small-box h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.cta-small-box p {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.story-section {
    padding: 80px 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content p {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.founder-card {
    background: var(--red-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    margin-bottom: 24px;
}

.founder-avatar {
    font-size: 4rem;
    margin-bottom: 12px;
}

.founder-card h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.founder-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.founder-quote {
    font-style: italic;
    color: var(--red) !important;
    margin-top: 12px;
    font-size: 0.9rem !important;
}

.timeline-mini {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tm-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
    background: var(--bg);
    border-radius: var(--radius);
    border-left: 3px solid var(--red);
}

.tm-year {
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--red);
    font-size: 0.9rem;
    min-width: 45px;
}

.tm-event {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Stats Banner */
.stats-banner {
    background: var(--red);
    padding: 60px 0;
}

.big-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.big-stat {
    text-align: center;
    color: var(--white);
}

.bs-num {
    display: block;
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 4px;
}

.bs-label {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* Indonesia Story */
.indo-story {
    padding: 80px 0;
    background: var(--bg);
}

.indo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.milestone-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border);
}

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

.milestone-card h3 {
    margin-bottom: 20px;
}

.mc-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mc-item {
    display: flex;
    gap: 14px;
    position: relative;
}

.mc-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 18px;
    width: 2px;
    height: calc(100% + 16px);
    background: var(--border);
}

.mc-dot {
    width: 12px;
    height: 12px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}

.mc-year {
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--red);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 2px;
}

.mc-content p {
    font-size: 0.9rem;
}

.revenue-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.rev-card {
    background: var(--red-light);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
}

.rev-val {
    display: block;
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--red);
}

.rev-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Halal Section */
.halal-section {
    padding: 80px 0;
    background: var(--white);
}

.halal-box {
    background: linear-gradient(135deg, #F5F5F5 0%, var(--white) 100%);
    border-radius: var(--radius-lg);
    padding: 50px;
    display: flex;
    gap: 50px;
    align-items: center;
    border: 1px solid var(--border);
}

.halal-badge-lg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.halal-content h2 {
    margin-bottom: 16px;
}

.halal-content p {
    margin-bottom: 12px;
    font-size: 1rem;
}

.halal-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.hh-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.hh-icon {
    font-size: 1.2rem;
}

.cert-badge {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    position: relative;
    min-width: 220px;
}

.cert-icon {
    font-size: 3.5rem;
    margin-bottom: 12px;
}

.cert-badge h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.cert-badge p {
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.cert-date {
    color: var(--text-muted) !important;
}

.cert-stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--red);
    opacity: 0.15;
    border: 4px solid var(--red);
    padding: 4px 16px;
    border-radius: 8px;
    pointer-events: none;
}

/* QSC Section */
.qsc-section {
    padding: 80px 0;
    background: var(--bg);
}

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

.qsc-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.qsc-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
}

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

.qsc-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Global Section */
.global-section {
    padding: 80px 0;
    background: var(--white);
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.country-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.country-card:hover {
    border-color: var(--red);
    background: var(--red-light);
}

.country-card span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-cards {
    padding: 60px 0;
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.contact-card:hover {
    box-shadow: 0 8px 24px var(--shadow);
    transform: translateY(-4px);
}

.cc-icon {
    font-size: 3rem;
    margin-bottom: 14px;
}

.contact-card h3 {
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.cc-note {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* Franchise Form */
.franchise-section {
    padding: 80px 0;
    background: var(--white);
}

.franchise-form-wrap {
    max-width: 700px;
    margin: 0 auto;
}

.franchise-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.franchise-form-header p {
    margin-top: 8px;
    margin-bottom: 24px;
}

.franchise-facts {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.ff-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.ff-val {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--red);
}

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

.franchise-form {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--border);
}

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

.form-group {
    margin-bottom: 16px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--white);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-success {
    text-align: center;
    padding: 40px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.form-success h3 {
    margin-bottom: 8px;
}

/* HQ Section */
.hq-section {
    padding: 60px 0;
    background: var(--bg);
}

.hq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.hq-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border);
}

.hq-icon {
    font-size: 3rem;
    margin-bottom: 14px;
}

.hq-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.hq-card p {
    font-size: 0.9rem;
}

.hq-note {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
    margin-top: 8px;
}

/* Social Section */
.social-section {
    padding: 60px 0;
    background: var(--white);
}

.social-box {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 50px;
    text-align: center;
    color: var(--white);
}

.social-box h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.social-box p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    padding: 16px 24px;
    border-radius: var(--radius);
    transition: all 0.2s;
    min-width: 120px;
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.sl-icon {
    font-size: 1.8rem;
}

.sl-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.sl-handle {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .hero-content {
        padding: 60px 20px 60px 40px;
    }

    .franchise-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .franchise-content p {
        max-width: 100%;
    }

    .franchise-highlights {
        justify-content: center;
    }

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

    .halal-box {
        flex-direction: column;
        text-align: center;
    }

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

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

@media (max-width: 768px) {
    :root {
        --nav-height: 60px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        box-shadow: 0 4px 20px var(--shadow);
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu a:not(.btn-nav) {
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: calc(var(--nav-height) + 20px);
    }

    .hero-content {
        padding: 40px 20px;
        max-width: 100%;
    }

    .hero-visual {
        padding: 20px;
    }

    .snowman-float svg {
        width: 200px !important;
        height: auto !important;
    }

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

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

    .stat-divider {
        display: none;
    }

    section {
        padding: 60px 0;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

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

    .franchise-cta-small .cta-small-box {
        flex-direction: column;
        text-align: center;
    }

    .price-grid {
        gap: 24px;
    }

    .big-stats {
        gap: 30px;
    }

    .revenue-cards {
        grid-template-columns: 1fr;
    }

    .expansion-box {
        flex-direction: column;
    }

    .expansion-visual {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

    .map-box {
        padding: 30px 20px;
    }

    .franchise-form {
        padding: 24px;
    }

    .social-box {
        padding: 30px 20px;
    }

    .social-links {
        flex-direction: column;
    }

    .franchise-facts {
        gap: 20px;
    }

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

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

    .hero-price-tag .price {
        font-size: 1.5rem;
    }

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

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

    .price-item .price-val {
        font-size: 1.4rem;
    }

    .filter-tabs {
        gap: 6px;
    }

    .filter-tab {
        padding: 6px 14px;
        font-size: 0.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

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

.bestsellers,
.why-section,
.menu-category,
.cities-section {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll offset for fixed nav */
html {
    scroll-padding-top: calc(var(--nav-height) + 20px);
}
