/* ===== CSS Variables ===== */
:root {
    /* Warm Gold Family */
    --gold: #c8930a;
    --gold-light: #f5d36e;
    --gold-soft: #fdf3d7;
    --gold-bg: #fffbf0;
    --gold-dark: #a07608;
    --gold-border: rgba(200, 147, 10, 0.25);

    /* Warm Blue */
    --blue: #2b7de9;
    --blue-soft: #dbeafe;
    --blue-bg: #f0f6ff;
    --blue-dark: #1d5fb5;
    --blue-border: rgba(43, 125, 233, 0.2);

    /* Warm Orange */
    --orange: #e07a2f;
    --orange-soft: #fde8d0;
    --orange-bg: #fff7f0;
    --orange-dark: #c06420;
    --orange-border: rgba(224, 122, 47, 0.2);

    /* Neutrals - Warm Tones */
    --dark: #2c2418;
    --dark-soft: #3d3225;
    --text: #3a3028;
    --text-light: #6b5e52;
    --text-muted: #9a8e82;
    --white: #ffffff;
    --cream: #fefcf8;
    --warm-gray: #f7f4f0;
    --warm-border: #ebe5dd;

    --shadow: 0 2px 8px rgba(60, 40, 10, 0.08), 0 1px 3px rgba(60, 40, 10, 0.06);
    --shadow-lg: 0 8px 24px rgba(60, 40, 10, 0.1), 0 3px 8px rgba(60, 40, 10, 0.06);
    --shadow-xl: 0 16px 40px rgba(60, 40, 10, 0.12), 0 6px 12px rgba(60, 40, 10, 0.06);
    --shadow-gold: 0 4px 16px rgba(200, 147, 10, 0.2);
    --shadow-blue: 0 4px 16px rgba(43, 125, 233, 0.15);
    --shadow-orange: 0 4px 16px rgba(224, 122, 47, 0.15);

    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s ease;
}

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

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

.container {
    margin: 0 auto;
    padding: 0 48px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--gold-dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.85rem;
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-small:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

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

.navbar.scrolled {
    background: rgba(255, 252, 248, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 12px rgba(60, 40, 10, 0.08);
    padding: 10px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .logo {
    color: var(--dark);
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: contain;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    width: 40px;
    height: 40px;
}

.logo-highlight {
    color: var(--gold);
}

.navbar:not(.scrolled) .logo-highlight {
    color: var(--gold-light);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.navbar.scrolled .nav-links a {
    color: var(--text-light);
}

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

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.navbar:not(.scrolled) .nav-links a:hover,
.navbar:not(.scrolled) .nav-links a.active {
    color: var(--gold-light);
}

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

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

.navbar.scrolled .nav-toggle span {
    background: var(--dark);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #3a2c10 0%, #5c4316 30%, #7a5a1e 60%, #c8930a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 220, 120, 0.2) 0%, transparent 60%);
    border-radius: 50%;
    animation: heroFloat 8s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    animation: heroFloat 10s ease-in-out infinite alternate-reverse;
}

@keyframes heroFloat {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-20px) scale(1.05); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 140px 40px 100px 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    color: var(--gold-light);
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    line-height: 1.8;
}

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

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
}

.stat-plus {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-light);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.section-tag {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
}

/* ============================================================
   SECTION: ABOUT - Warm Blue Tone
   ============================================================ */
.about {
    background: var(--blue-bg);
}

.about .section-tag {
    background: var(--blue-soft);
    color: var(--blue);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
}

.about-content > p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-icon {
    color: var(--blue);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.feature strong {
    display: block;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 2px;
}

.feature p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--blue-border);
}

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

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-soft);
    color: var(--blue);
    border-radius: var(--radius-sm);
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.info-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================================
   SECTION: PRODUCTS - Warm Orange Tone
   ============================================================ */
.products {
    background: var(--orange-bg);
}

.products .section-tag {
    background: var(--orange-soft);
    color: var(--orange);
}

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

.product-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--orange-border);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-orange);
    border-color: var(--orange);
}

.product-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-soft);
    color: var(--orange);
    border-radius: 50%;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.product-card:hover .product-icon {
    background: var(--orange);
    color: var(--white);
    transform: scale(1.1);
}

.product-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.product-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.products-cta > p {
    color: var(--text-light);
    margin-bottom: 16px;
}

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

.marketplace-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    color: var(--white);
}

.marketplace-btn.shopee {
    background: #ee4d2d;
}

.marketplace-btn.shopee:hover {
    background: #d9411f;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(238, 77, 45, 0.3);
}

.marketplace-btn.tokopedia {
    background: #42b549;
}

.marketplace-btn.tokopedia:hover {
    background: #37a03e;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(66, 181, 73, 0.3);
}

/* ============================================================
   SECTION: BRANCHES - Warm Blue Tone
   ============================================================ */
.branches {
    background: var(--blue-bg);
}

.branches .section-tag {
    background: var(--blue-soft);
    color: var(--blue);
}

.branches .btn-small {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.branches .btn-small:hover {
    background: var(--blue-dark);
    box-shadow: var(--shadow-blue);
}

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

.branch-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--blue-border);
}

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

.branch-card.featured {
    border-color: var(--gold);
    border-width: 2px;
}

.branch-card.featured:hover {
    box-shadow: var(--shadow-gold);
}

.branch-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.branch-icon {
    font-size: 2rem;
    color: var(--blue);
    margin-bottom: 16px;
}

.branch-card.featured .branch-icon {
    color: var(--gold);
}

.branch-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
}

.branch-info {
    margin-bottom: 20px;
}

.branch-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    justify-content: center;
    text-align: left;
}

.branch-info i {
    color: var(--blue);
    margin-top: 4px;
    flex-shrink: 0;
}

.branch-card.featured .branch-info i {
    color: var(--gold);
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--blue-border);
}

.map-container iframe {
    display: block;
}

/* ============================================================
   SECTION: CONTACT - Warm Orange Tone
   ============================================================ */
.contact {
    background: var(--orange-bg);
}

.contact .section-tag {
    background: var(--orange-soft);
    color: var(--orange);
}

.contact .btn-small {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.contact .btn-small:hover {
    background: var(--orange-dark);
    box-shadow: var(--shadow-orange);
}

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

.contact-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--orange-border);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-orange);
    border-color: var(--orange);
}

.contact-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    margin: 0 auto 16px;
    color: var(--white);
}

.contact-icon.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.contact-icon.facebook {
    background: #1877f2;
}

.contact-icon.maps {
    background: #ea4335;
}

.contact-icon.shopee {
    background: #ee4d2d;
}

.contact-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-card > p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.contact-address {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.address-box {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-gold);
}

.address-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.address-box p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    margin-bottom: 16px;
    display: inline-flex;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.55);
}

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

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links h4 {
    color: var(--gold-light);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(200, 147, 10, 0.35);
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== Mobile Menu Overlay ===== */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ===== Responsive: Tablet (1024px) ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

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

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

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

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

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

/* ===== Responsive: Mobile (768px) ===== */
@media (max-width: 768px) {
    /* -- Container -- */
    .container {
        padding: 0 16px;
    }

    /* -- Navbar -- */
    .navbar {
        padding: 10px 0;
    }

    .navbar.scrolled {
        padding: 8px 0;
    }

    .logo {
        font-size: 1.15rem;
        gap: 8px;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .navbar.scrolled .logo-img {
        width: 36px;
        height: 36px;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-toggle span {
        display: block;
        width: 22px;
        height: 2.5px;
        background: var(--white);
        border-radius: 2px;
        transition: var(--transition);
        position: absolute;
    }

    .nav-toggle span:nth-child(1) {
        transform: translateY(-7px);
    }

    .nav-toggle span:nth-child(3) {
        transform: translateY(7px);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        padding: 90px 28px 40px;
        gap: 8px;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-xl);
        z-index: 999;
        overflow-y: auto;
    }

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

    .nav-links li {
        border-bottom: 1px solid var(--warm-border);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        color: var(--text) !important;
        font-size: 1rem;
        display: block;
        padding: 14px 8px;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--gold) !important;
    }

    .nav-links a::after {
        display: none;
    }

    /* -- Hero -- */
    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 90px 20px 48px 20px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
        margin-bottom: 16px;
    }

    .hero h1 {
        font-size: 1.9rem;
        margin-bottom: 14px;
    }

    .hero h1 br {
        display: none;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 24px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 32px;
    }

    .hero-buttons .btn {
        justify-content: center;
        width: 100%;
        padding: 14px 24px;
    }

    .hero-stats {
        gap: 0;
        justify-content: space-between;
        padding-top: 24px;
    }

    .stat {
        flex: 1;
        text-align: center;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-plus {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }

    /* -- Sections -- */
    .section {
        padding: 56px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

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

    .section-desc {
        font-size: 0.95rem;
    }

    .section-tag {
        font-size: 0.7rem;
        padding: 4px 12px;
    }

    /* -- About -- */
    .about-content h3 {
        font-size: 1.25rem;
    }

    .info-card {
        padding: 24px;
    }

    /* -- Products -- */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .product-card {
        padding: 24px 16px;
    }

    .product-icon {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
        margin-bottom: 14px;
    }

    .product-card h3 {
        font-size: 0.95rem;
    }

    .product-card p {
        font-size: 0.8rem;
    }

    .marketplace-links {
        flex-direction: column;
        align-items: stretch;
    }

    .marketplace-btn {
        justify-content: center;
        padding: 14px 24px;
    }

    /* -- Branches -- */
    .branches-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .branch-card {
        padding: 28px 20px;
    }

    .branch-card.featured {
        order: -1;
    }

    .branch-info p {
        font-size: 0.8rem;
        justify-content: flex-start;
    }

    .map-container iframe {
        height: 250px;
    }

    /* -- Contact -- */
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .contact-card {
        padding: 24px 16px;
    }

    .contact-icon {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }

    .contact-card h3 {
        font-size: 0.9rem;
    }

    .contact-card > p {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    .contact-card .btn-small {
        padding: 7px 16px;
        font-size: 0.78rem;
    }

    .contact-address {
        grid-template-columns: 1fr;
    }

    .address-box {
        padding: 24px 20px;
    }

    .address-box h3 {
        font-size: 1rem;
    }

    .address-box p {
        font-size: 0.88rem;
    }

    /* -- Footer -- */
    .footer {
        padding: 48px 0 0;
    }

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

    .footer-brand .logo-img {
        width: 44px;
        height: 44px;
    }

    .footer-links h4 {
        margin-bottom: 12px;
    }

    .footer-links ul {
        gap: 8px;
    }

    /* -- Back to Top -- */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* ===== Responsive: Small Phone (480px) ===== */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.55rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

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

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card {
        padding: 20px 12px;
    }

    .product-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .product-card h3 {
        font-size: 0.85rem;
    }

    .product-card p {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .contact-card {
        padding: 20px 12px;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .contact-card h3 {
        font-size: 0.82rem;
    }

    .contact-card > p {
        font-size: 0.7rem;
    }

    .contact-card .btn-small {
        padding: 6px 12px;
        font-size: 0.72rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-plus {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .marketplace-btn {
        font-size: 0.88rem;
    }
}

/* ===== Touch Friendly ===== */
@media (hover: none) {
    .product-card:hover,
    .info-card:hover,
    .branch-card:hover,
    .contact-card:hover {
        transform: none;
    }

    .product-card:active,
    .info-card:active,
    .branch-card:active,
    .contact-card:active {
        transform: scale(0.98);
    }
}
