/* ==========================================================================
   KEMITRAAN AICE INDONESIA - MAIN STYLESHEET
   Aesthetics: Deep Galaxy Cosmic Purple & Elite Gold Luxury
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-dark: #0c0418;
    --bg-surface: #17092e;
    --bg-surface-elevated: #220d44;
    --bg-card: rgba(34, 13, 68, 0.7);
    --border-color: rgba(147, 51, 234, 0.25);
    --border-highlight: rgba(245, 158, 11, 0.5);

    /* Purple Spectrum */
    --primary-50: #f5f3ff;
    --primary-100: #ede9fe;
    --primary-400: #a78bfa;
    --primary-500: #8b5cf6;
    --primary-600: #7c3aed;
    --primary-700: #6d28d9;
    --primary-900: #3b0764;

    /* Gold / Amber Highlights */
    --gold-300: #fde68a;
    --gold-400: #fbbf24;
    --gold-500: #f59e0b;
    --gold-600: #d97706;

    /* Status & Extras */
    --whatsapp-green: #25d366;
    --whatsapp-dark: #128c7e;
    --whatsapp-glow: rgba(37, 211, 102, 0.35);
    --text-main: #f8fafc;
    --text-muted: #cbd5e1;
    --text-dim: #94a3b8;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
    --grad-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --grad-glow: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 70%);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Transitions & Shadows */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(124, 58, 237, 0.35);
}

/* 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-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(109, 40, 217, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 40%);
    background-attachment: fixed;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

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

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

ul {
    list-style: none;
}

/* Utilities */
.text-center { text-align: center; }
.text-gold { color: var(--gold-400) !important; }
.text-gradient {
    background: linear-gradient(135deg, #fbbf24 0%, #f43f5e 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.highlight-gold {
    color: var(--gold-400);
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}

.img-responsive {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.rounded-card {
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
    background: linear-gradient(90deg, #1f0b3e 0%, #341264 50%, #1f0b3e 100%);
    border-bottom: 1px solid rgba(147, 51, 234, 0.3);
    padding: 8px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.announcement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-live {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(0.96); }
}

.announcement-text {
    color: var(--text-muted);
    font-weight: 500;
}

.top-contact a {
    color: var(--gold-400);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.top-contact a:hover {
    color: #fff;
}

/* ==========================================================================
   NAVBAR (DESKTOP)
   ========================================================================== */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(12, 4, 24, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(12, 4, 24, 0.96);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(147, 51, 234, 0.4);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    gap: 1rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #fff;
    display: block;
    line-height: 1.1;
}

.brand-tagline {
    font-size: 0.68rem;
    color: var(--gold-400);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-link {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 6px 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-link i {
    font-size: 0.8rem;
    color: var(--primary-400);
}

.nav-link:hover, .nav-link.active {
    color: #fff;
    background: rgba(124, 58, 237, 0.2);
}

.btn-nav-cta {
    background: var(--grad-gold);
    color: #0c0418 !important;
    font-weight: 800;
    padding: 7px 14px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

.btn-nav-cta i {
    color: #0c0418 !important;
}

.btn-nav-cta:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.5);
}

/* Hamburger Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.hamburger-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: var(--transition);
}

/* ==========================================================================
   MOBILE DRAWER
   ========================================================================== */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #17092e;
    border-left: 1px solid rgba(147, 51, 234, 0.3);
    z-index: 1999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem 1.25rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.active {
    transform: translateX(-320px);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
    padding-bottom: 1rem;
}

.drawer-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
    overflow-y: auto;
}

.drawer-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 10px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.drawer-link i {
    width: 20px;
    color: var(--primary-400);
}

.drawer-link:hover {
    background: rgba(124, 58, 237, 0.2);
    color: #fff;
}

.drawer-cta {
    background: var(--grad-gold);
    color: #0c0418;
    font-weight: 800;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.drawer-footer {
    border-top: 1px solid rgba(147, 51, 234, 0.2);
    padding-top: 1rem;
    text-align: center;
}

.drawer-footer p {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.btn-drawer-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--whatsapp-green);
    color: #fff;
    font-weight: 700;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
}

/* ==========================================================================
   BUTTONS & CTAS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 22px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.6);
}

.btn-gold {
    background: var(--grad-gold);
    color: #0c0418;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: #fff;
    box-shadow: 0 4px 15px var(--whatsapp-glow);
}

.btn-whatsapp:hover {
    background: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-lg {
    padding: 13px 26px;
    font-size: 1.05rem;
}

.btn-xl {
    padding: 16px 30px;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.btn-block {
    width: 100%;
}

.pulse-btn {
    animation: pulseCta 2.5s infinite;
}

@keyframes pulseCta {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    }
    50% {
        box-shadow: 0 0 25px rgba(124, 58, 237, 0.85);
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 4rem 0 3rem;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 650px;
    height: 450px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, rgba(245, 158, 11, 0.1) 40%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.hero-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(147, 51, 234, 0.4);
    color: var(--primary-100);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
}

.hero-badge-accent {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: var(--gold-300);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.85rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    line-height: 1.65;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(34, 13, 68, 0.5);
    border: 1px solid rgba(147, 51, 234, 0.2);
    padding: 10px 14px;
    border-radius: 12px;
}

.hero-feat-item i {
    font-size: 1.35rem;
    color: var(--gold-400);
    flex-shrink: 0;
}

.hero-feat-item div {
    display: flex;
    flex-direction: column;
}

.hero-feat-item strong {
    font-size: 0.9rem;
    color: #fff;
}

.hero-feat-item span {
    font-size: 0.76rem;
    color: var(--text-dim);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-visual {
    position: relative;
}

.visual-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 40px rgba(124, 58, 237, 0.3);
    border: 1px solid rgba(147, 51, 234, 0.4);
    background: var(--bg-surface);
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(12, 4, 24, 0.7) 100%);
    pointer-events: none;
}

.img-hero {
    width: 100%;
    display: block;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.img-hero:hover {
    transform: scale(1.02);
}

.visual-floating-badge {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(12, 4, 24, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(245, 158, 11, 0.5);
    color: var(--gold-300);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-section {
    padding: 1.5rem 0 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(34, 13, 68, 0.8) 0%, rgba(23, 9, 46, 0.9) 100%);
    border: 1px solid rgba(147, 51, 234, 0.25);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.stat-icon {
    font-size: 1.6rem;
    color: var(--gold-400);
    margin-bottom: 0.5rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.35rem;
}

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

/* ==========================================================================
   SECTION COMMON HEADERS
   ========================================================================== */
.section {
    padding: 4.5rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(124, 58, 237, 0.18);
    border: 1px solid rgba(147, 51, 234, 0.35);
    color: var(--primary-100);
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.85rem;
}

.wedding-badge {
    background: rgba(244, 63, 94, 0.15);
    border-color: rgba(244, 63, 94, 0.4);
    color: #fda4af;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.35rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

/* ==========================================================================
   KEUNGGULAN SECTION (IMAGE 3)
   ========================================================================== */
.keunggulan-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.5rem;
    align-items: center;
}

.keunggulan-image-box {
    position: relative;
}

.keunggulan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.keunggulan-card {
    background: rgba(34, 13, 68, 0.6);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 14px;
    padding: 1.25rem;
    display: flex;
    gap: 12px;
    transition: var(--transition);
}

.keunggulan-card:hover {
    background: rgba(45, 18, 84, 0.8);
    border-color: rgba(147, 51, 234, 0.4);
    transform: translateY(-2px);
}

.k-icon {
    width: 40px;
    height: 40px;
    background: var(--grad-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.k-content h3 {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.35rem;
}

.k-content p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   PAKET USAHA SECTION (IMAGES 6, 7, 8)
   ========================================================================== */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    align-items: stretch;
}

.package-card {
    background: linear-gradient(180deg, rgba(34, 13, 68, 0.9) 0%, rgba(23, 9, 46, 0.95) 100%);
    border: 1px solid rgba(147, 51, 234, 0.25);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.package-card:hover {
    transform: translateY(-6px);
    border-color: rgba(147, 51, 234, 0.5);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(124, 58, 237, 0.25);
}

.package-card.featured {
    border-color: rgba(245, 158, 11, 0.6);
    background: linear-gradient(180deg, rgba(45, 18, 84, 0.95) 0%, rgba(28, 11, 56, 0.98) 100%);
}

.package-card.best-seller {
    border-color: rgba(168, 85, 247, 0.7);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 30px rgba(168, 85, 247, 0.3);
}

.package-badge-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(12, 4, 24, 0.85);
    border: 1px solid rgba(147, 51, 234, 0.4);
    color: var(--primary-100);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.74rem;
    font-weight: 700;
    z-index: 2;
}

.package-badge-tag.popular {
    background: var(--grad-gold);
    color: #0c0418;
    border: none;
}

.package-badge-tag.best {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #fff;
    border: none;
}

.package-img-holder {
    width: 100%;
    position: relative;
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
    overflow: hidden;
}

.package-img {
    width: 100%;
    display: block;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.package-img:hover {
    transform: scale(1.04);
}

.package-header {
    padding: 1.25rem 1.5rem 0.75rem;
    text-align: center;
}

.package-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.35rem;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 0.5rem;
}

.package-price .currency {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-400);
}

.package-price .amount {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--gold-400);
    letter-spacing: -0.5px;
}

.package-tagline {
    font-size: 0.82rem;
    color: var(--text-dim);
}

.package-body {
    padding: 1rem 1.5rem;
    flex-grow: 1;
}

.facility-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-100);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.facility-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.facility-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.facility-list li i {
    color: var(--gold-400);
    font-size: 0.8rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.package-footer {
    padding: 1.25rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(147, 51, 234, 0.15);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.btn-chat-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--whatsapp-green);
    font-weight: 700;
    padding: 6px;
    border-radius: 6px;
    transition: var(--transition);
}

.btn-chat-wa:hover {
    color: #fff;
    background: rgba(37, 211, 102, 0.15);
}

/* ==========================================================================
   HAWKER SECTION (IMAGES 9 & 10)
   ========================================================================== */
.hawker-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.hawker-card {
    background: linear-gradient(180deg, rgba(34, 13, 68, 0.85) 0%, rgba(23, 9, 46, 0.95) 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.hawker-img-box {
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
    overflow: hidden;
}

.hawker-img-box img {
    cursor: pointer;
    transition: transform 0.4s ease;
}

.hawker-img-box img:hover {
    transform: scale(1.03);
}

.hawker-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hawker-header {
    margin-bottom: 1rem;
}

.hawker-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.4);
    color: #38bdf8;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hawker-badge.motor {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.4);
    color: var(--gold-400);
}

.hawker-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.3rem;
}

.hawker-items {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.hawker-items li {
    font-size: 0.88rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hawker-items li i {
    color: var(--gold-400);
    font-size: 0.85rem;
}

/* ==========================================================================
   PAKET WEDDING / ACARA SECTION (IMAGES 12 & 13)
   ========================================================================== */
.wedding-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.wedding-card {
    background: linear-gradient(180deg, rgba(46, 16, 68, 0.85) 0%, rgba(28, 9, 44, 0.95) 100%);
    border: 1px solid rgba(244, 63, 94, 0.3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(244, 63, 94, 0.2);
    display: flex;
    flex-direction: column;
}

.wedding-img-box {
    border-bottom: 1px solid rgba(244, 63, 94, 0.2);
    overflow: hidden;
}

.wedding-img-box img {
    cursor: pointer;
    transition: transform 0.4s ease;
}

.wedding-img-box img:hover {
    transform: scale(1.03);
}

.wedding-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.wedding-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fda4af;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.wedding-content h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.35rem;
}

.wedding-desc {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.wedding-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.wedding-list li {
    font-size: 0.88rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.wedding-list li i {
    color: #fb7185;
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
}

/* ==========================================================================
   KATALOG SECTION (IMAGE 4)
   ========================================================================== */
.katalog-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.katalog-image-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(147, 51, 234, 0.35);
}

.katalog-image-wrapper img {
    cursor: pointer;
    transition: transform 0.4s ease;
}

.katalog-image-wrapper img:hover {
    transform: scale(1.02);
}

.katalog-overlay-hint {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(12, 4, 24, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(147, 51, 234, 0.4);
    color: var(--text-main);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
}

.katalog-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.kat-cat-card {
    background: rgba(34, 13, 68, 0.6);
    border: 1px solid rgba(147, 51, 234, 0.25);
    border-radius: 14px;
    padding: 1.25rem;
    text-align: center;
    transition: var(--transition);
}

.kat-cat-card:hover {
    transform: translateY(-3px);
    background: rgba(45, 18, 84, 0.8);
    border-color: rgba(245, 158, 11, 0.4);
}

.kat-cat-card i {
    font-size: 1.75rem;
    color: var(--gold-400);
    margin-bottom: 0.5rem;
}

.kat-cat-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.35rem;
}

.kat-cat-card p {
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.45;
}

/* ==========================================================================
   PROFIT CALCULATOR SECTION
   ========================================================================== */
.calc-card {
    background: linear-gradient(135deg, rgba(34, 13, 68, 0.95) 0%, rgba(20, 7, 40, 0.98) 100%);
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(245, 158, 11, 0.15);
}

.calc-header {
    margin-bottom: 2rem;
}

.calc-header h2 {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.calc-body {
    max-width: 800px;
    margin: 0 auto;
}

.calc-input-group {
    background: rgba(12, 4, 24, 0.6);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 14px;
    padding: 1.25rem 1.75rem;
    margin-bottom: 1.75rem;
}

.calc-input-group label {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.85rem;
}

.range-slider {
    width: 100%;
    height: 8px;
    background: #2a1050;
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--gold-400);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.8);
    transition: transform 0.2s;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.calc-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.calc-res-box {
    background: rgba(12, 4, 24, 0.7);
    border: 1px solid rgba(147, 51, 234, 0.25);
    border-radius: 14px;
    padding: 1.25rem 1rem;
    text-align: center;
}

.calc-res-box.highlight {
    border-color: rgba(245, 158, 11, 0.6);
    background: rgba(245, 158, 11, 0.1);
}

.res-title {
    display: block;
    font-size: 0.82rem;
    color: var(--text-dim);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.res-value {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 900;
    color: #fff;
}

.calc-cta p {
    font-size: 0.82rem;
    color: var(--text-dim);
    margin-bottom: 1.25rem;
}

/* ==========================================================================
   PENGIRIMAN & LOGISTIK SECTION (IMAGE 5)
   ========================================================================== */
.pengiriman-wrapper {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2.5rem;
    align-items: center;
}

.pengiriman-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-card {
    background: rgba(34, 13, 68, 0.6);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 14px;
    padding: 1.15rem;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: var(--transition);
}

.step-card:hover {
    background: rgba(45, 18, 84, 0.8);
    border-color: rgba(147, 51, 234, 0.4);
    transform: translateX(4px);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--gold-400);
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.step-info p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* ==========================================================================
   MASCOT CALLOUT BANNER (IMAGE 11) & REGISTRATION FORM
   ========================================================================== */
.mascot-banner {
    background: linear-gradient(135deg, #3b0764 0%, #1e0840 100%);
    border: 1px solid rgba(147, 51, 234, 0.4);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.mascot-img-box {
    width: 220px;
    flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(147, 51, 234, 0.3);
}

.mascot-img-box img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mascot-img-box img:hover {
    transform: scale(1.05);
}

.mascot-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.mascot-content h2 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
}

.mascot-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* FORM WRAPPER */
.form-wrapper {
    background: linear-gradient(180deg, rgba(34, 13, 68, 0.95) 0%, rgba(18, 6, 36, 0.98) 100%);
    border: 1px solid rgba(147, 51, 234, 0.35);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(124, 58, 237, 0.25);
}

.form-header {
    margin-bottom: 2rem;
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: var(--gold-400);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.form-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.35rem;
}

.form-header p {
    font-size: 0.88rem;
    color: var(--text-dim);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-group label {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: var(--primary-400);
    font-size: 0.82rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(12, 4, 24, 0.75);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 10px;
    padding: 12px 14px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-400);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
    background: rgba(12, 4, 24, 0.95);
}

.form-group select option {
    background: #17092e;
    color: #fff;
}

.form-submit-wrapper {
    margin-top: 1rem;
    text-align: center;
}

.btn-submit {
    width: 100%;
    cursor: pointer;
}

.form-secure-note {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-secure-note i {
    color: var(--whatsapp-green);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.faq-item {
    background: rgba(34, 13, 68, 0.6);
    border: 1px solid rgba(147, 51, 234, 0.25);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(245, 158, 11, 0.5);
    background: rgba(45, 18, 84, 0.8);
}

.faq-question {
    width: 100%;
    padding: 1.15rem 1.25rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    gap: 1rem;
}

.faq-question i {
    color: var(--gold-400);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   LEGAL & COMPANY CARD SECTION (IMAGE 1)
   ========================================================================== */
.legal-card-wrapper {
    background: linear-gradient(135deg, rgba(34, 13, 68, 0.9) 0%, rgba(20, 7, 40, 0.95) 100%);
    border: 1px solid rgba(147, 51, 234, 0.35);
    border-radius: 20px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2.25rem;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.legal-img-box {
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(147, 51, 234, 0.3);
}

.legal-img-box img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.legal-img-box img:hover {
    transform: scale(1.03);
}

.legal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(147, 51, 234, 0.4);
    color: var(--primary-100);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.legal-info-box h3 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
}

.legal-address {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.5;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.legal-address i {
    color: var(--gold-400);
    margin-top: 3px;
    flex-shrink: 0;
}

.legal-contact-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.legal-c-item {
    background: rgba(12, 4, 24, 0.6);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-c-item i {
    font-size: 1.3rem;
    color: var(--gold-400);
}

.legal-c-item span {
    font-size: 0.72rem;
    color: var(--text-dim);
    display: block;
}

.legal-c-item strong {
    font-size: 0.86rem;
    color: #fff;
    display: block;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: #090312;
    border-top: 1px solid rgba(147, 51, 234, 0.25);
    padding: 3.5rem 0 0;
    margin-top: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.85rem;
}

.brand-col p {
    margin-top: 0.6rem;
}

.footer-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-badges span {
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(147, 51, 234, 0.3);
    color: var(--primary-100);
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
}

.links-col ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.links-col a {
    font-size: 0.82rem;
    color: var(--text-dim);
    transition: var(--transition);
}

.links-col a:hover {
    color: var(--gold-400);
    padding-left: 3px;
}

.contact-col a {
    color: var(--gold-400);
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(147, 51, 234, 0.15);
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-dim);
}

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

.disclaimer {
    color: var(--primary-400);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-wa {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.float-wa-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--whatsapp-green);
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.92rem;
    box-shadow: 0 10px 25px var(--whatsapp-glow);
    transition: var(--transition);
}

.float-wa-btn i {
    font-size: 1.4rem;
}

.float-wa-btn:hover {
    transform: scale(1.06) translateY(-2px);
    background: #20ba59;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.6);
}

.wa-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50px;
    border: 2px solid var(--whatsapp-green);
    animation: pulseBorder 2s infinite;
    pointer-events: none;
}

@keyframes pulseBorder {
    0% { transform: scale(0.95); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 0; }
}

/* ==========================================================================
   IMAGE PREVIEW MODAL
   ========================================================================== */
.image-modal {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    background: #17092e;
    border: 1px solid rgba(147, 51, 234, 0.4);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    z-index: 1;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: #ef4444;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
    padding-right: 2rem;
}

.modal-img-container {
    overflow-y: auto;
    max-height: 80vh;
    text-align: center;
    border-radius: 10px;
}

.modal-img-container img {
    margin: 0 auto;
    border-radius: 8px;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablets & Small Laptops (< 1024px) */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-badge-row,
    .hero-cta-group {
        justify-content: center;
    }

    .hero-features-grid {
        max-width: 550px;
        margin: 0 auto 2rem;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .keunggulan-wrapper,
    .pengiriman-wrapper,
    .legal-card-wrapper {
        grid-template-columns: 1fr;
    }

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

    .package-card.best-seller {
        grid-column: span 2;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

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

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

    .brand-col {
        grid-column: span 2;
    }
}

/* Mobile Devices (< 768px) */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

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

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

    .package-card.best-seller {
        grid-column: span 1;
        max-width: 100%;
    }

    .hawker-grid,
    .wedding-grid {
        grid-template-columns: 1fr;
    }

    .calc-results-grid {
        grid-template-columns: 1fr;
    }

    .mascot-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .mascot-img-box {
        width: 100%;
        max-width: 250px;
    }

    .form-wrapper {
        padding: 1.5rem 1.25rem;
    }

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

    .legal-card-wrapper {
        padding: 1.5rem;
    }

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

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

    .brand-col {
        grid-column: span 1;
    }

    .bottom-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .wa-label {
        display: none;
    }

    .float-wa-btn {
        padding: 14px;
        border-radius: 50%;
    }
}
