/* ============================================
   KITA GO - Main Stylesheet
   Warna: hijau, abu gelap, coklat (dari logo)
   ============================================ */

:root {
    --primary-color: #2d7a3e;
    --primary-dark: #1e5c2b;
    --secondary-color: #8b6914;
    --accent-brown: #8b6914;
    --text-color: #2c2c2c;
    --text-light: #6c757d;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --error-color: #dc3545;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    --box-shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    /* Landing page: institusional navy + emas */
    --navy: #0f2c4a;
    --navy-dark: #0a1f35;
    --navy-light: #1a3a5c;
    --gold: #c9a227;
    --gold-dark: #a8831f;
    --gold-light: #e6c04a;
}

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

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--primary-color); transition: var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Touch target minimum (aksesibilitas mobile) */
@media (max-width: 767px) {
    .container { padding: 0 var(--spacing-sm); }
}
@media (max-width: 480px) {
    .container { padding: 0 var(--spacing-xs); }
}

/* ========== TOP BAR ========== */
.top-bar {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: white;
    padding: var(--spacing-xs) 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    padding: 4px 0;
}
.top-bar-item:hover { color: rgba(255,255,255,0.9); }
.top-bar-icon { opacity: 0.9; }
.top-bar-login {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 6px 14px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}
.top-bar-login:hover { background: rgba(255,255,255,0.3); color: #fff; }
@media (max-width: 767px) {
    .top-bar { padding: 0.4rem 0; font-size: 0.75rem; }
    .top-bar-content { gap: 0.5rem; }
    .top-bar-left, .top-bar-right { gap: 0.5rem; }
    .top-bar-item span:last-child { display: none; }
    .top-bar-item .top-bar-icon { margin: 0; }
    .top-bar-login { padding: 6px 12px; font-size: 0.8125rem; }
}
@media (max-width: 480px) {
    .top-bar-right .social-icon { width: 32px; height: 32px; font-size: 0.875rem; }
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}
.social-icon:hover { background: rgba(255,255,255,0.3); color: white; transform: translateY(-2px); }
.social-whatsapp:hover { background: #25D366; }

/* ========== HEADER ========== */
.site-header {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(15, 44, 74, 0.1);
}

.header-content {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: var(--spacing-md) 0;
    gap: var(--spacing-lg);
    min-height: 80px;
}

.logo { flex-shrink: 0; }
.logo a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-color);
}
.logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: var(--border-radius-lg);
}
.logo-text h1 {
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0;
    line-height: 1.2;
}
.logo-text .tagline { font-size: 0.8125rem; color: var(--text-light); margin: 0; }

@media (max-width: 767px) {
    .header-content {
        padding: var(--spacing-sm) 0;
        min-height: 64px;
        gap: var(--spacing-sm);
    }
    .logo-img { width: 48px; height: 48px; }
    .logo-text h1 { font-size: 1.25rem; }
    .logo-text .tagline { font-size: 0.7rem; }
    .logo a { gap: 0.5rem; }
}
@media (max-width: 480px) {
    .logo-img { width: 42px; height: 42px; }
    .logo-text h1 { font-size: 1.1rem; }
}

.main-navigation { display: flex; justify-content: flex-end; align-items: center; }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}
.nav-item { position: relative; }
.nav-link {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--text-color);
    font-weight: 500;
    border-radius: var(--border-radius);
}
.nav-link:hover { color: var(--navy); background: var(--bg-light); }
.nav-item.active .nav-link { color: var(--navy); font-weight: 600; }
.btn-nav.nav-link { background: var(--navy); color: white !important; }
.btn-nav.nav-link:hover { background: var(--navy-dark); color: white !important; }

/* Dropdown */
.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    box-shadow: var(--box-shadow-md);
    border-radius: var(--border-radius);
    padding: var(--spacing-xs);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li { margin: 0; }
.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    border-radius: 6px;
}
.dropdown-menu a:hover { background: var(--bg-light); color: var(--navy); }
.dropdown-icon { font-size: 0.65rem; margin-left: 2px; }

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--navy);
    border-radius: 2px;
}

@media (max-width: 991px) {
    .site-header { position: relative; }
    .header-content { grid-template-columns: auto 1fr auto; }
    .main-navigation { display: none; }
    .main-navigation.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        padding: var(--spacing-md);
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
    .nav-menu { flex-direction: column; width: 100%; gap: 0; }
    .nav-item { width: 100%; }
    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        padding-left: 1rem;
        padding-top: 0.25rem;
        padding-bottom: 0.5rem;
    }
    .dropdown.open .dropdown-menu { display: block; }
    .dropdown-menu a { padding: 0.6rem 1rem; min-height: 44px; display: flex; align-items: center; }
    .mobile-menu-toggle {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }
}

/* ========== MAIN CONTENT ========== */
.main-content { min-height: 50vh; }

@media (max-width: 767px) {
    .main-content input[type="text"],
    .main-content input[type="email"],
    .main-content input[type="tel"],
    .main-content input[type="password"],
    .main-content textarea,
    .main-content select {
        min-height: 44px;
        font-size: 16px; /* hindari zoom di iOS */
    }
    .main-content textarea { min-height: 120px; }
}

/* ========== FOOTER ========== */
.site-footer {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: rgba(255,255,255,0.9);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: #fff;
}

.footer-contact li, .footer-links li { margin-bottom: 0.5rem; }
.footer-contact a, .footer-links a { color: rgba(255,255,255,0.85); }
.footer-contact a:hover, .footer-links a:hover { color: #fff; }

.social-media { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.social-link {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    transition: var(--transition);
}
.social-link:hover { background: var(--navy-light); color: #fff; }

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}
.btn-primary { background: var(--primary-color); color: white; }
.btn-primary:hover { background: var(--primary-dark); color: white; transform: translateY(-1px); }
.btn-success { background: #25D366; color: white; }
.btn-success:hover { background: #1da851; color: white; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); }
.btn-outline:hover { background: var(--primary-color); color: white; }
.btn-large { padding: 0.85rem 1.75rem; font-size: 1.05rem; }

/* ========== SECTIONS ========== */
.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: var(--spacing-xs);
    display: inline-block;
}
.section-description { margin-bottom: var(--spacing-md); color: var(--text-light); }
.section-footer { text-align: center; margin-top: var(--spacing-lg); }

@media (max-width: 767px) {
    .section-title { font-size: 1.35rem; margin-bottom: var(--spacing-sm); padding-bottom: 0.25rem; }
    .section-description { font-size: 0.9375rem; margin-bottom: var(--spacing-sm); }
    .section-footer { margin-top: var(--spacing-md); }
}
@media (max-width: 480px) {
    .section-title { font-size: 1.2rem; }
}

/* ========== LANDING PAGE (Beranda) - Hero: gambar berslide full background ========== */
.homepage .lp-hero.hero-section {
    display: block;
    position: relative;
    width: 100%;
    min-width: 100%;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    color: #fff;
    box-sizing: border-box;
}
/* Slider full-bleed: isi seluruh section, di belakang overlay */
.lp-hero .hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.lp-hero .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.lp-hero .hero-slide.active {
    opacity: 1;
    z-index: 1;
}
/* Overlay full-bleed, konten di tengah */
.lp-hero .hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 31, 53, 0.7) 0%, rgba(15, 44, 74, 0.75) 50%, rgba(26, 58, 92, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
    pointer-events: none;
}
.lp-hero .hero-overlay .container { pointer-events: auto; }
.lp-hero .hero-overlay .container {
    position: relative;
    z-index: 3;
    width: 100%;
}
.lp-hero .hero-content {
    text-align: center;
}
.lp-hero .hero-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.lp-hero .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.35rem);
    opacity: 0.95;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}
.lp-hero .hero-description {
    max-width: 640px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.92;
}
.lp-hero .hero-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-sm);
}
.lp-hero .btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    background: var(--gold);
    color: #0a1f35 !important;
    border: none;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
    transition: var(--transition);
}
.lp-hero .btn-cta-primary:hover {
    background: var(--gold-light);
    color: #0a1f35 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(201, 162, 39, 0.5);
}
.lp-hero .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.9);
    transition: var(--transition);
}
.lp-hero .btn-cta-secondary:hover {
    background: rgba(255,255,255,0.15);
    color: #fff !important;
    border-color: #fff;
    transform: translateY(-3px);
}
.lp-hero .hero-wa-hint { font-size: 0.9rem; opacity: 0.85; margin-top: 0.5rem; }

@media (max-width: 767px) {
    .homepage .lp-hero.hero-section {
        height: 70vh;
        min-height: 500px;
        padding: var(--spacing-lg) 0;
        align-items: center;
    }
    .lp-hero .hero-title { font-size: 1.6rem; margin-bottom: 0.5rem; }
    .lp-hero .hero-subtitle { font-size: 0.95rem; margin-bottom: var(--spacing-sm); }
    .lp-hero .hero-description {
        font-size: 0.9375rem;
        margin-bottom: var(--spacing-md);
        padding: 0 0.5rem;
    }
    .lp-hero .hero-actions {
        flex-direction: column;
        gap: var(--spacing-sm);
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: var(--spacing-sm);
    }
    .lp-hero .btn-cta-primary,
    .lp-hero .btn-cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
        min-height: 48px;
    }
    .lp-hero .hero-wa-hint { font-size: 0.8rem; padding: 0 0.5rem; text-align: center; }
}
@media (max-width: 480px) {
    .homepage .lp-hero.hero-section { height: 65vh; min-height: 450px; padding: var(--spacing-md) 0; }
    .lp-hero .hero-title { font-size: 1.35rem; }
    .lp-hero .hero-subtitle { font-size: 0.875rem; }
    .lp-hero .hero-description { font-size: 0.875rem; }
    .lp-hero .hero-actions { max-width: 100%; }
}

/* Section keunggulan */
.homepage .lp-keunggulan {
    padding: var(--spacing-xl) 0;
    background: #fff;
}
.homepage .lp-keunggulan .section-title { color: var(--navy); border-bottom-color: var(--gold); }
.homepage .lp-keunggulan .section-description { color: var(--text-light); max-width: 600px; margin-left: auto; margin-right: auto; }
.lp-keunggulan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}
.lp-keunggulan-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.lp-keunggulan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(15, 44, 74, 0.12);
    border-color: var(--navy-light);
}
.lp-keunggulan-card .card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-sm);
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.75rem;
}
.lp-keunggulan-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.5rem; font-weight: 700; }
.lp-keunggulan-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.5; }

@media (max-width: 767px) {
    .homepage .lp-keunggulan { padding: var(--spacing-lg) 0; }
    .lp-keunggulan-grid { margin-top: var(--spacing-md); gap: var(--spacing-sm); }
    .lp-keunggulan-card { padding: var(--spacing-md); }
    .lp-keunggulan-card .card-icon { width: 52px; height: 52px; font-size: 1.35rem; }
    .lp-keunggulan-card h3 { font-size: 1.05rem; }
    .lp-keunggulan-card p { font-size: 0.875rem; }
}
@media (max-width: 480px) {
    .lp-keunggulan-card { padding: var(--spacing-sm); }
}

/* Section statistik */
.lp-stats {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: #fff;
}
.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    text-align: center;
}
.lp-stat-item .stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}
.lp-stat-item .stat-label { font-size: 1rem; opacity: 0.9; font-weight: 500; }

@media (max-width: 767px) {
    .lp-stats { padding: var(--spacing-lg) 0; }
    .lp-stats-grid { gap: var(--spacing-md); }
    .lp-stat-item .stat-number { font-size: 2rem; }
    .lp-stat-item .stat-label { font-size: 0.875rem; }
}
@media (max-width: 480px) {
    .lp-stats { padding: var(--spacing-md) 0; }
    .lp-stats-grid { gap: var(--spacing-sm); }
    .lp-stat-item .stat-number { font-size: 1.75rem; }
    .lp-stat-item .stat-label { font-size: 0.8125rem; }
}

/* Section testimoni */
.homepage .lp-testimoni {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}
.homepage .lp-testimoni .section-title { color: var(--navy); border-bottom-color: var(--gold); }
.lp-testimoni-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}
.lp-testimoni-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--gold);
    transition: var(--transition);
}
.lp-testimoni-card:hover { box-shadow: var(--box-shadow-md); }
.lp-testimoni-card .quote { font-style: italic; color: var(--text-light); margin-bottom: 1rem; line-height: 1.6; }
.lp-testimoni-card .author { font-weight: 700; color: var(--navy); }
.lp-testimoni-card .role { font-size: 0.875rem; color: var(--text-light); }

/* Section CTA triple */
.lp-cta-strip {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
    color: #fff;
    text-align: center;
}
.lp-cta-strip .cta-strip-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: #fff;
}
.lp-cta-strip .cta-strip-desc { margin-bottom: var(--spacing-lg); opacity: 0.95; max-width: 560px; margin-left: auto; margin-right: auto; }
.lp-cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}
.lp-cta-buttons .btn-cta-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    font-weight: 700;
    border-radius: 50px;
    background: var(--gold);
    color: var(--navy-dark) !important;
    border: none;
    transition: var(--transition);
}
.lp-cta-buttons .btn-cta-gold:hover {
    background: var(--gold-light);
    color: var(--navy-dark) !important;
    transform: translateY(-2px);
}
.lp-cta-buttons .btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    font-weight: 700;
    border-radius: 50px;
    background: #25D366;
    color: #fff !important;
    border: none;
    transition: var(--transition);
}
.lp-cta-buttons .btn-wa:hover { background: #1da851; color: #fff !important; transform: translateY(-2px); }

@media (max-width: 767px) {
    .lp-cta-strip { padding: var(--spacing-lg) 0; }
    .lp-cta-strip .cta-strip-title { font-size: 1.35rem; margin-bottom: var(--spacing-sm); }
    .lp-cta-strip .cta-strip-desc { font-size: 0.9375rem; margin-bottom: var(--spacing-md); }
    .lp-cta-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .lp-cta-buttons .btn-cta-gold,
    .lp-cta-buttons .btn-wa {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
        min-height: 48px;
    }
}
@media (max-width: 480px) {
    .lp-cta-strip .cta-strip-title { font-size: 1.2rem; }
    .lp-cta-buttons { max-width: 100%; }
}

/* Layanan grid di landing - kartu dengan nuansa navy */
.homepage .lp-layanan { padding: var(--spacing-xl) 0; background: #fff; }
.homepage .lp-layanan .section-title { color: var(--navy); border-bottom-color: var(--gold); }
.lp-layanan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}
.lp-layanan-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: block;
    color: var(--text-color);
    text-align: center;
}
.lp-layanan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 44, 74, 0.1);
    border-color: var(--navy-light);
}
.lp-layanan-card .layanan-img-wrap {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    background: var(--bg-light);
    border-radius: var(--border-radius);
}
.lp-layanan-card .layanan-img-wrap img { max-height: 80px; width: auto; object-fit: contain; }
.lp-layanan-card .layanan-img-wrap.no-img { background: var(--navy-light); opacity: 0.2; }
.lp-layanan-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; font-weight: 700; }
.lp-layanan-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.5; margin-bottom: 0.5rem; }
.lp-layanan-card .link-text { font-size: 0.9rem; font-weight: 600; color: var(--gold); }

@media (max-width: 767px) {
    .homepage .lp-layanan { padding: var(--spacing-lg) 0; }
    .lp-layanan-grid { margin-top: var(--spacing-md); gap: var(--spacing-sm); }
    .lp-layanan-card { padding: var(--spacing-sm); }
    .lp-layanan-card .layanan-img-wrap { height: 80px; margin-bottom: 0.5rem; }
    .lp-layanan-card .layanan-img-wrap img { max-height: 60px; }
    .lp-layanan-card h3 { font-size: 1rem; }
    .lp-layanan-card p { font-size: 0.8125rem; }
}
@media (max-width: 480px) {
    .lp-layanan-card .layanan-img-wrap { height: 70px; }
}

/* Testimoni mobile */
@media (max-width: 767px) {
    .homepage .lp-testimoni { padding: var(--spacing-lg) 0; }
    .lp-testimoni-grid { margin-top: var(--spacing-md); gap: var(--spacing-sm); }
    .lp-testimoni-card { padding: var(--spacing-md); }
    .lp-testimoni-card .quote { font-size: 0.9375rem; }
}

@media (max-width: 992px) {
    .lp-keunggulan-grid, .lp-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-testimoni-grid { grid-template-columns: 1fr; }
    .lp-layanan-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .lp-keunggulan-grid, .lp-stats-grid, .lp-layanan-grid { grid-template-columns: 1fr; }
}

/* Buttons: tap target & spacing di mobile */
@media (max-width: 767px) {
    .btn, .btn-primary, .btn-success, .btn-outline {
        min-height: 44px;
        padding: 0.65rem 1rem;
        font-size: 0.9375rem;
    }
    .btn-large { padding: 0.75rem 1.5rem; font-size: 1rem; }
    .section-footer .btn { display: inline-block; margin: 0.25rem; }
}

/* Footer mobile */
@media (max-width: 767px) {
    .site-footer {
        padding: var(--spacing-lg) 0 var(--spacing-md);
        margin-top: var(--spacing-lg);
    }
    .footer-content {
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-md);
    }
    .footer-title { font-size: 1rem; margin-bottom: 0.5rem; }
    .footer-contact li, .footer-links li { font-size: 0.9rem; margin-bottom: 0.4rem; }
    .footer-bottom { font-size: 0.8125rem; padding-top: var(--spacing-sm); }
}
@media (max-width: 480px) {
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .social-media { justify-content: center; }
}
