/* style.css */
:root {
    --color-navy: #0B1929;
    --color-navy-light: #132238;
    --color-cream: #F7F5F0;
    --color-accent: #2563EB;
    --color-accent-hover: #1D4ED8;
    --color-accent-light: #EFF6FF;
    --color-accent-dark: #1E40AF;
    --text-main: #1F2937;
    --text-muted: #4B5563;
    --white: #FFFFFF;
    --border: #D1D5DB;
    --border-light: #E5E7EB;
    
    --radius: 4px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --transition: all 0.25s ease;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background: var(--white);
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 90px 0;
}

.bg-cream {
    background: var(--color-cream);
}

/* Layout split: mobile and desktop render entirely different sections */
.only-mobile { display: none; }
@media (max-width: 768px) {
    .only-desktop { display: none !important; }
    .only-mobile { display: block; }
}

/* Typography */
h1, h2, h3, .logo-text {
    font-family: var(--font-heading);
    color: var(--color-navy);
    font-weight: 700;
    line-height: 1.2;
}

.mobile-desc { display: none; }

.section-title {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    background: var(--color-accent-light);
    padding: 6px 16px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.section-tag.light {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: var(--white);
}

.section-title h2 {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-primary-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--white);
    padding: 14px 28px;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}

.btn-primary-sm {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--white);
    padding: 10px 20px;
    font-size: 0.85rem;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
}

.btn-primary-sm:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
    background: var(--white);
    color: var(--color-navy);
    padding: 14px 28px;
    font-size: 0.95rem;
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    padding: 10px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

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

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

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

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn-primary-sm) {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn-primary-sm)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-primary-sm):hover {
    color: var(--color-accent);
}

.nav-links a:not(.btn-primary-sm):hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--color-navy);
    padding: 8px;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    border-left: 1px solid var(--border);
    z-index: 2000;
    transition: 0.3s ease;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}

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

.close-menu {
    align-self: flex-end;
    cursor: pointer;
    margin-bottom: 40px;
    color: var(--color-navy);
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-links a {
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-navy);
    display: block;
    padding: 14px 16px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.mobile-nav-links a:hover {
    background: var(--color-accent-light);
    border-left-color: var(--color-accent);
    color: var(--color-accent);
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--white) 100%);
}

.hero-content {
    max-width: 680px;
    text-align: center;
    margin: 0 auto;
}

.hero-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-accent);
    border: 1px solid rgba(37, 99, 235, 0.15);
    margin-bottom: 28px;
}

.hero-badge-top i {
    width: 14px;
    height: 14px;
    fill: #F59E0B;
    color: #F59E0B;
}

.desktop-title { display: block; font-size: 3.8rem; margin-bottom: 24px; letter-spacing: -1px; }
.mobile-title { display: none; }

.hero h1 span { 
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Quick Service Menu - Hidden on Desktop */
.quick-service {
    display: none;
}

/* Grid Layout */
.grid { display: grid; gap: 20px; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.features-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

/* Cards */
.card {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 52px;
    height: 52px;
    background: var(--color-accent-light);
    border: 1px solid rgba(37, 99, 235, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-accent);
    transition: var(--transition);
}

.card:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--white);
    border-color: transparent;
}

.service-card h3 { margin-bottom: 8px; font-size: 1.1rem; font-weight: 600; }
.service-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }

/* Features */
.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.feature-text h3 { margin-bottom: 6px; font-size: 1.05rem; font-weight: 600; }
.feature-text p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }

/* Coverage Area */
.coverage-content {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    color: var(--white);
    padding: 70px 60px;
    text-align: center;
    position: relative;
}

.coverage-content h2 { 
    color: var(--white); 
    margin-bottom: 16px; 
    font-size: 2.2rem;
}

.coverage-content > p {
    max-width: 550px;
    margin: 0 auto 44px;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.area-options {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.area-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 32px;
    flex: 1;
    max-width: 400px;
    text-align: left;
    transition: var(--transition);
}

.area-box:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.area-box.highlight {
    background: rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.area-box-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--white);
}

.area-box h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; font-weight: 600; }
.area-box p { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.65; }

/* Location Compact */
.location-compact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.location-map {
    min-height: 340px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.location-info {
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(180deg, var(--white) 0%, var(--color-cream) 100%);
}

.location-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.location-info h3 i {
    color: var(--color-accent);
    width: 20px;
    height: 20px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.5;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.info-row:last-of-type {
    border-bottom: none;
}

.info-row i {
    color: var(--color-accent);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-note {
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.5;
    padding-left: 28px;
    margin-top: -8px;
}

.location-actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.btn-outline-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-navy);
    background: var(--white);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline-sm:hover {
    background: var(--color-navy);
    color: var(--white);
    border-color: var(--color-navy);
}

.btn-outline-sm i {
    width: 14px;
    height: 14px;
}

/* Inquiry Section */
.inquiry {
    background: var(--color-cream);
}

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

.inquiry-info h2 {
    font-size: 2.1rem;
    margin-bottom: 14px;
}

.inquiry-info > p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.inquiry-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.benefit-item:hover {
    border-color: var(--color-accent);
}

.benefit-item i {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

/* Form Styles */
.inquiry-form {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-main);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9CA3AF;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

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

.form-group-lainnya {
    animation: slideDown 0.2s ease;
}

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

/* FAQ Section */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.faq-item[open] {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-accent);
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 20px 18px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    position: relative;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 500px;
    margin-inline: auto;
}

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

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--color-accent);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.cta-buttons .btn-primary:hover {
    background: var(--color-navy);
    color: var(--white);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--color-accent);
    border-color: var(--white);
}

.btn-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

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

/* Footer */
footer {
    background: var(--color-navy);
    color: var(--white);
    padding: 60px 0 28px;
}

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

footer .logo-text { 
    color: var(--white); 
    font-size: 1.3rem; 
    margin-bottom: 12px;
}

.tagline { 
    color: rgba(255,255,255,0.7); 
    font-size: 0.9rem; 
}

.footer-links h3 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    text-align: center;
}

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

/* Mobile Bottom CTA - Hidden on Desktop */
.mobile-bottom-cta { display: none; }

/* ==============================================================
   DESKTOP: 1024px+
   ============================================================== */
@media (min-width: 1025px) {
    .mobile-desc { display: none !important; }
}

/* ==============================================================
   TABLET: 769px - 1024px
   ============================================================== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

/* ==============================================================
   MOBILE: 768px and below - OLX Style Compact Layout
   ============================================================== */
@media (max-width: 768px) {
    body {
        padding-bottom: 64px;
        background: var(--color-cream);
    }
    
    .container {
        padding: 0 16px;
    }
    
    .section-padding {
        padding: 32px 0;
    }
    
    /* Navbar Mobile */
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .logo-img { height: 32px; }
    .navbar { 
        padding: 8px 0;
        background: rgba(255, 255, 255, 0.98);
    }
    
    /* Hero Mobile - Compact */
    .hero { 
        padding-top: 90px; 
        padding-bottom: 24px;
        background: var(--white);
        border-bottom: 1px solid var(--border-light);
    }
    .desktop-title { display: none; }
    .desktop-desc { display: none; }
    .mobile-title { 
        display: block; 
        font-size: 1.5rem; 
        margin-bottom: 10px;
        line-height: 1.3;
    }
    .hero-badge-top { 
        margin-bottom: 12px; 
        padding: 4px 10px; 
        font-size: 0.7rem;
    }
    .hero p {
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-bottom: 20px;
        line-height: 1.5;
    }
    .mobile-desc { display: block !important; }
    .hero-buttons { 
        flex-direction: column; 
        gap: 8px; 
        width: 100%;
    }
    .hero-buttons a { 
        width: 100%; 
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Quick Service Menu - OLX Style */
    .quick-service {
        display: block;
        background: var(--white);
        padding: 16px 0;
        border-bottom: 1px solid var(--border-light);
    }
    .quick-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 8px;
    }
    .quick-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        text-decoration: none;
        padding: 10px 4px;
        border-radius: var(--radius);
        transition: var(--transition);
    }
    .quick-item:hover {
        background: var(--color-accent-light);
    }
    .quick-icon {
        width: 44px;
        height: 44px;
        background: var(--color-accent-light);
        border: 1px solid rgba(37, 99, 235, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-accent);
    }
    .quick-item span {
        font-size: 0.65rem;
        font-weight: 600;
        color: var(--text-main);
        text-align: center;
        line-height: 1.2;
    }
    
    /* Section Title Mobile */
    .section-title { margin-bottom: 20px; }
    .section-title h2 { font-size: 1.3rem; }
    .section-title p { font-size: 0.8rem; }
    .section-tag { 
        font-size: 0.6rem; 
        padding: 3px 10px;
        margin-bottom: 8px;
    }
    
    /* Services Mobile - OLX Grid */
    .services-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 8px;
    }
    .card { 
        padding: 16px 12px;
        border-radius: var(--radius);
    }
    .card:hover {
        transform: none;
        box-shadow: var(--shadow-sm);
    }
    .icon-wrapper { 
        width: 36px; 
        height: 36px; 
        margin-bottom: 10px;
    }
    .icon-wrapper i {
        width: 18px;
        height: 18px;
    }
    .service-card h3 { 
        font-size: 0.82rem; 
        margin-bottom: 4px;
        line-height: 1.3;
    }
    .service-card p { 
        font-size: 0.7rem; 
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* Features Mobile - Compact List */
    .features-grid { 
        grid-template-columns: 1fr; 
        gap: 8px;
    }
    .feature-item { 
        padding: 14px 12px;
        gap: 12px;
    }
    .feature-icon { 
        width: 36px; 
        height: 36px;
    }
    .feature-icon i {
        width: 16px;
        height: 16px;
    }
    .feature-text h3 { font-size: 0.85rem; }
    .feature-text p { 
        font-size: 0.72rem; 
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* Coverage Mobile */
    .coverage-content { 
        padding: 28px 16px; 
    }
    .coverage-content h2 { font-size: 1.3rem; }
    .coverage-content > p { font-size: 0.8rem; margin-bottom: 20px; }
    .area-options { flex-direction: column; gap: 10px; }
    .area-box { 
        padding: 16px;
        max-width: 100%;
    }
    .area-box-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 10px;
    }
    .area-box-icon i {
        width: 16px;
        height: 16px;
    }
    .area-box h3 { font-size: 0.9rem; margin-bottom: 6px; }
    .area-box p { font-size: 0.78rem; }
    
    /* Location Mobile */
    .location-compact-grid { 
        grid-template-columns: 1fr; 
        border-radius: var(--radius);
    }
    .location-map { min-height: 200px; }
    .location-info { 
        padding: 16px;
        gap: 10px;
    }
    .location-info h3 { font-size: 1rem; }
    .info-row { 
        font-size: 0.8rem; 
        padding: 6px 0;
        gap: 8px;
    }
    .info-row i { width: 14px; height: 14px; }
    .info-note { font-size: 0.68rem; padding-left: 22px; }
    .location-actions { flex-direction: column; gap: 8px; }
    .location-actions a { width: 100%; justify-content: center; padding: 10px; }
    
    /* Inquiry Mobile */
    .inquiry { padding: 32px 0; }
    .inquiry-wrapper { 
        grid-template-columns: 1fr; 
        gap: 24px;
    }
    .inquiry-info h2 { font-size: 1.3rem; }
    .inquiry-info > p { font-size: 0.8rem; margin-bottom: 16px; }
    .inquiry-benefits { gap: 8px; }
    .benefit-item { 
        padding: 10px 12px;
        font-size: 0.8rem;
        gap: 10px;
    }
    .benefit-item i { 
        width: 28px; 
        height: 28px;
    }
    .benefit-item i i {
        width: 14px;
        height: 14px;
    }
    .inquiry-form { 
        padding: 20px 16px;
    }
    .form-group { margin-bottom: 14px; }
    .form-group label { font-size: 0.78rem; margin-bottom: 4px; }
    .form-group input,
    .form-group select,
    .form-group textarea { 
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    .form-group textarea { min-height: 80px; }
    
    /* FAQ Mobile */
    .faq-item summary { padding: 14px 16px; font-size: 0.85rem; }
    .faq-item p { padding: 0 16px 14px; font-size: 0.8rem; }

    /* CTA Mobile */
    .cta-section { padding: 32px 0; }
    .cta-content h2 { font-size: 1.3rem; }
    .cta-content p { font-size: 0.8rem; margin-bottom: 20px; }
    .cta-buttons { flex-direction: column; gap: 8px; }
    .cta-buttons a { width: 100%; padding: 12px; font-size: 0.9rem; }
    
    /* Footer Mobile */
    footer { padding: 32px 0 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    footer .logo-text { font-size: 1.1rem; }
    .tagline { font-size: 0.8rem; }
    .footer-links h3 { font-size: 0.8rem; margin-bottom: 12px; }
    .footer-links a { font-size: 0.8rem; }
    .footer-bottom p { font-size: 0.7rem; }
    
    /* Mobile Sticky CTA */
    .mobile-bottom-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
        z-index: 999;
        box-shadow: 0 -2px 12px rgba(37, 99, 235, 0.3);
    }
    
    .mobile-bottom-cta a {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 14px;
        color: var(--white);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
    }

    /* ---- OLX-style mobile components ---- */
    .m-block { padding: 16px 0; background: var(--white); border-bottom: 8px solid var(--color-cream); }
    .m-section-head {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        margin-bottom: 12px;
    }
    .m-section-head h2 { font-size: 1.05rem; font-weight: 700; }
    .m-section-head a { font-size: 0.78rem; color: var(--color-accent); text-decoration: none; font-weight: 600; }

    /* Service list rows (feed) */
    .m-list { display: flex; flex-direction: column; }
    .m-row {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 12px 0;
        text-decoration: none;
        border-bottom: 1px solid var(--border-light);
    }
    .m-row:last-child { border-bottom: none; }
    .m-row:active { background: var(--color-accent-light); }
    .m-row-img {
        width: 56px;
        height: 56px;
        flex-shrink: 0;
        object-fit: cover;
        border-radius: var(--radius);
        border: 1px solid var(--border-light);
        display: block;
    }
    .m-row-body { flex: 1; min-width: 0; }
    .m-row-body h3 { font-size: 0.9rem; font-weight: 600; margin-bottom: 2px; }
    .m-row-body p {
        font-size: 0.75rem;
        color: var(--text-muted);
        line-height: 1.35;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .m-row-arrow { width: 18px; height: 18px; color: var(--text-muted); flex-shrink: 0; }

    /* Trust strip (horizontal scroll) */
    .trust-scroll {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .trust-scroll::-webkit-scrollbar { display: none; }
    .trust-chip {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
        padding: 8px 14px;
        background: var(--color-cream);
        border: 1px solid var(--border-light);
        border-radius: 999px;
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--text-main);
        white-space: nowrap;
    }
    .trust-chip i { width: 15px; height: 15px; color: var(--color-accent); }

    /* Area cards */
    .m-area-card {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 14px;
        border: 1px solid var(--border-light);
        border-radius: var(--radius);
        margin-bottom: 8px;
    }
    .m-area-card.highlight { border-color: var(--color-accent); background: var(--color-accent-light); }
    .m-area-card i { width: 22px; height: 22px; color: var(--color-accent); flex-shrink: 0; }
    .m-area-card strong { display: block; font-size: 0.85rem; color: var(--color-navy); }
    .m-area-card span { font-size: 0.75rem; color: var(--text-muted); }
}

/* ==============================================================
   SMALL MOBILE: 480px and below
   ============================================================== */
@media (max-width: 480px) {
    .quick-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .mobile-title { font-size: 1.3rem; }
    .section-title h2 { font-size: 1.2rem; }
    .coverage-content { padding: 24px 12px; }
    .inquiry-form { padding: 16px 12px; }
}

/* ==============================================================
   CATEGORY PAGES - Desktop
   ============================================================== */
.category-page {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: 60vh;
}

.breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--color-accent);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.category-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-light);
}

.category-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
}

.category-icon-large i {
    width: 40px;
    height: 40px;
}

.category-header h1 {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.category-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.category-content {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
}

.category-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.category-info-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 28px;
}

.category-info-card h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--color-navy);
}

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

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.service-list li i {
    color: var(--color-accent);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.category-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-sidebar {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 24px;
}

.cta-sidebar h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--color-navy);
}

.cta-sidebar p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.related-services {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.related-services a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.related-services a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.related-services a i {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

/* ==============================================================
   FULL PAGE POPUP - Mobile Only
   ============================================================== */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    overflow-y: auto;
}

.popup-overlay.active {
    display: block;
}

.popup-page {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 3001;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.popup-page.active {
    display: block;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.popup-header {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.popup-close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--color-navy);
}

.popup-close:hover {
    background: var(--color-accent-light);
    border-radius: var(--radius);
}

.popup-header h2 {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.popup-header h2 i {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
}

.popup-content {
    padding: 20px 16px;
}

.popup-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.popup-content h3 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--color-navy);
}

.popup-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.popup-content ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.popup-content ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    flex-shrink: 0;
}

.popup-content .btn-secondary {
    margin-bottom: 10px;
}

/* Desktop: hide mobile popup elements */
@media (min-width: 769px) {
    .mobile-link-popup { display: none !important; }
    .popup-overlay { display: none !important; }
}

/* Mobile: hide desktop link elements */
@media (max-width: 768px) {
    .desktop-link { display: none !important; }
    
    .category-page {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    .category-header {
        padding: 24px 0;
        margin-bottom: 24px;
    }
    .category-icon-large {
        width: 60px;
        height: 60px;
    }
    .category-icon-large i {
        width: 28px;
        height: 28px;
    }
    .category-header h1 { font-size: 1.5rem; }
    .category-header p { font-size: 0.85rem; }
    .category-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .category-info-card { padding: 20px 16px; }
    .category-info-card h2 { font-size: 1.1rem; }
    .service-list li { font-size: 0.85rem; }
    .cta-sidebar { padding: 20px 16px; }
}