/* =========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================= */
:root {
    --primary: #0f3b8c;       /* Premium Blue from the CENA logo */
    --primary-light: #1e5fcb;
    --primary-dark: #072254;
    --accent: #fcd116;        /* Bright Yellow from the CENA banner */
    --accent-hover: #e0b80f;
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.08);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================================================
   BASE RESET
   ========================================================================= */
* {
    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-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* =========================================================================
   NAVIGATION HEADER
   ========================================================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--accent-hover);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

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

/* =========================================================================
   BUTTON TEMPLATES
   ========================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1.05rem;
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero {
    position: relative;
    min-height: 85vh;
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(252, 209, 22, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    background-color: rgba(252, 209, 22, 0.2);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.hero-info-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.info-icon {
    background-color: rgba(252, 209, 22, 0.25);
    color: var(--accent);
    padding: 0.6rem;
    border-radius: var(--radius-sm);
    font-size: 1.5rem;
}

.info-item h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.info-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* =========================================================================
   COMMON SECTION STYLING
   ========================================================================= */
section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* =========================================================================
   FEATURES SECTION
   ========================================================================= */
.features {
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 95, 203, 0.3);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background-color: rgba(15, 59, 140, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.feature-icon-wrapper span {
    font-size: 2rem;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

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

/* =========================================================================
   CATEGORIES SECTION
   ========================================================================= */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.category-card {
    background-color: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(15, 59, 140, 0.2);
}

.category-image-placeholder {
    height: 180px;
    background: linear-gradient(135deg, rgba(15, 59, 140, 0.05) 0%, rgba(30, 95, 203, 0.1) 100%);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image-placeholder span {
    font-size: 3.5rem;
}

.category-info {
    padding: 1.5rem;
}

.category-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.category-info p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* =========================================================================
   ABOUT SECTION
   ========================================================================= */
.about {
    background-color: white;
    border-top: 1px solid var(--border-color);
}

.about-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

.about-graphics {
    display: flex;
    justify-content: center;
}

.graphics-card {
    width: 320px;
    height: 320px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.graphics-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    transform: scale(0.93);
}

.graphics-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.graphics-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.graphics-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* =========================================================================
   CONTACT SECTION
   ========================================================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: stretch;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    position: relative;
    padding-left: 5.5rem;
}

.contact-card-icon {
    position: absolute;
    left: 2rem;
    top: 2rem;
    width: 48px;
    height: 48px;
    background-color: rgba(15, 59, 140, 0.08);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

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

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    min-height: 350px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
    background-image: radial-gradient(#cbd5e1 15%, transparent 16%), radial-gradient(#cbd5e1 15%, transparent 16%);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

.map-icon {
    font-size: 3rem;
    color: var(--text-muted);
}

.map-placeholder p {
    font-weight: 600;
    color: var(--text-main);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

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

/* =========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================= */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle span {
    font-size: 2rem;
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 998;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid var(--border-color);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    padding: 2rem;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.mobile-nav-link:hover {
    color: var(--primary-light);
}

.carousel-hint {
    display: none;
}

/* Floating WA button styling */
.floating-wa-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: var(--transition);
}

.floating-wa-btn:hover {
    transform: scale(1.1);
}

.wa-svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-card-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-graphics {
        order: -1;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        height: 70px;
    }
    
    .nav, .header-wa-btn {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Carousel Horizontal Scroll for Categories on Mobile */
    .categories-carousel-wrapper {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 1rem 0;
        margin: 0 -2rem;
        padding-left: 2rem;
        padding-right: 2rem;
        scrollbar-width: none; /* Hide standard Firefox scrollbars */
    }
    
    .categories-carousel-wrapper::-webkit-scrollbar {
        display: none; /* Hide Chrome/Safari scrollbars */
    }
    
    .categories-grid {
        display: flex;
        flex-direction: row;
        grid-template-columns: none;
        gap: 1.5rem;
        width: max-content;
    }
    
    .category-card {
        width: 280px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
    
    .carousel-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        color: var(--text-muted);
        font-size: 0.875rem;
        margin-top: 1rem;
        font-weight: 500;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* =========================================================================
   HEADER — SCROLLED STATE
   ========================================================================= */
.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.97);
}
.logo { text-decoration: none; }

/* =========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.reveal-delay  { transition-delay: 0.15s; }
.reveal.reveal-delay-2 { transition-delay: 0.3s; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* =========================================================================
   HERO — SCROLL INDICATOR
   ========================================================================= */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255,255,255,0.6);
    animation: bounce 2s infinite;
    display: flex;
    align-items: center;
}
.scroll-indicator span { font-size: 2.5rem; }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* =========================================================================
   CATEGORY PLACEHOLDER COLORS
   ========================================================================= */
.cat-sembako  { background: linear-gradient(135deg, rgba(251,191,36,.15) 0%, rgba(245,158,11,.2) 100%); color: #b45309; }
.cat-food     { background: linear-gradient(135deg, rgba(52,211,153,.15) 0%, rgba(16,185,129,.2) 100%); color: #047857; }
.cat-rumah    { background: linear-gradient(135deg, rgba(99,102,241,.15) 0%, rgba(79,70,229,.2) 100%);  color: #4338ca; }
.cat-personal { background: linear-gradient(135deg, rgba(236,72,153,.15) 0%, rgba(219,39,119,.2) 100%); color: #be185d; }

/* =========================================================================
   ABOUT — GRAPHICS BADGE
   ========================================================================= */
.graphics-badge {
    margin-top: 1rem;
    background: rgba(252,209,22,0.2);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* =========================================================================
   CONTACT LINKS & MAP BUTTON
   ========================================================================= */
.contact-link {
    color: var(--primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition);
}
.contact-link:hover { color: var(--primary-light); text-decoration: underline; }

.map-container { position: relative; }
.map-open-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

/* =========================================================================
   BACK TO TOP BUTTON
   ========================================================================= */
.back-to-top {
    position: fixed;
    bottom: 96px;
    right: 24px;
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 998;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover   { background-color: var(--primary-light); transform: translateY(-3px); }

/* =========================================================================
   FLOATING WA — EXPANDED WITH LABEL ON DESKTOP
   ========================================================================= */
.floating-wa-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    padding: 0 1.2rem 0 0.8rem;
    width: auto;
    border-radius: 50px;
    transition: var(--transition), opacity 0.3s ease;
}
.floating-wa-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}
.floating-wa-btn.hidden-by-header { opacity: 0; pointer-events: none; }

/* =========================================================================
   FOOTER — IMPROVED 3-COLUMN LAYOUT
   ========================================================================= */
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 2rem;
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
}
.footer-logo .logo-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; }
.footer-info h4, .footer-nav h4 {
    color: white;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.footer-info p  { color: rgba(255,255,255,0.65); margin-bottom: 0.5rem; font-size: 0.875rem; }
.footer-info a, .footer-nav a { color: rgba(255,255,255,0.65); font-size: 0.875rem; transition: var(--transition); }
.footer-info a:hover, .footer-nav a:hover { color: var(--accent); }
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem 0;
    text-align: center;
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
}

/* =========================================================================
   RESPONSIVE UPDATES FOR NEW ELEMENTS
   ========================================================================= */
@media (max-width: 768px) {
    .footer-content { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 2rem; }
    .floating-wa-label { display: none; }
    .floating-wa-btn { width: 60px; height: 60px; padding: 0; border-radius: 50%; justify-content: center; }
    .back-to-top { bottom: 96px; right: 16px; }
    .scroll-indicator { display: none; }
    .map-open-btn { position: static; margin-top: 0.75rem; width: 100%; }
}
