/* ========== GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1E3A5F;
    --secondary: #3B82F6;
    --accent: #10B981;
    --bg-light: #F8FAFC;
    --text-dark: #1E293B;
    --white: #ffffff;
    --gray: #64748B;
    --danger: #EF4444;
    --warning: #F59E0B;
    --wa: #25D366;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== TYPOGRAPHY ========== */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.bg-white { background: var(--white); }
.rounded-xl { border-radius: 16px; }

/* ========== NAVBAR (DIPERBAIKI) ========== */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

.logo img {
    height: 50px;
    border-radius: 10px;
}

.logo span {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
}

/* ========== RESPONSIVE NAVBAR (DIPERBAIKI) ========== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        gap: 0;
        transition: left 0.3s ease-in-out;
        box-shadow: 2px 0 15px rgba(0,0,0,0.1);
        z-index: 999;
        padding: 20px 0;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 12px 25px;
        width: 100%;
        border-bottom: 1px solid #e2e8f0;
    }
}

/* ========== SLIDER FULL WIDTH ========== */
.hero-slider-full {
    width: 100%;
    background-color: #000;
    position: relative;
}

.slider-container-full {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.slider-wrapper-full {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slides-full {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide-full {
    flex: 0 0 100%;
    position: relative;
}

.slide-full img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.slider-btn-full {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn-full:hover {
    background: var(--secondary);
    transform: translateY(-50%) scale(1.05);
}

.btn-prev-full {
    left: 20px;
}

.btn-next-full {
    right: 20px;
}

.dots-full {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot-full {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-full.active {
    background: var(--secondary);
    width: 25px;
    border-radius: 10px;
}

/* ========== HERO CONTENT SECTION ========== */
.hero-content-section {
    background: linear-gradient(135deg, #1E3A5F 0%, #2D4A6F 100%);
    padding: 50px 20px;
    text-align: center;
}

.hero-content-section .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: white;
    margin-bottom: 15px;
}

.hero-content-section h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
}

.hero-content-section .hero-tagline {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.hero-content-section .hero-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 20px;
}

.hero-content-section .hero-features li {
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-content-section .hero-features i {
    color: var(--accent);
    font-size: 1.1rem;
}

.hero-content-section .hero-location {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.hero-content-section .btn-group-hero {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-content-section .btn-wa-hero {
    background: #25D366;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.hero-content-section .btn-wa-hero:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.hero-content-section .btn-outline-hero {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.hero-content-section .btn-outline-hero:hover {
    background: white;
    color: #1E3A5F;
}

/* ========== BUTTONS ========== */
.btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

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

/* ========== SECTION ========== */
.section { padding: 60px 0; }
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary);
}
.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
}

.bg-light { background: var(--bg-light); }

/* ========== CARDS ========== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.card:hover { transform: translateY(-5px); }
.card.text-center { text-align: center; }
.card i { font-size: 3rem; color: var(--secondary); margin-bottom: 15px; }
.card h3 { margin-bottom: 10px; }

/* ========== SERVICE CARD with IMAGE ========== */
.service-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-body {
    padding: 20px;
    text-align: center;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.service-body h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray);
    text-align: left;
    padding: 5px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.benefit-item i {
    font-size: 1rem;
    color: var(--accent);
    width: 24px;
}

/* ========== FEATURE SHOWCASE ========== */
.feature-showcase {
    background: linear-gradient(135deg, var(--primary), #2D4A6F);
    border-radius: 32px;
    padding: 40px;
    color: white;
}

.feature-showcase .section-title {
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.feature-box {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========== INFO CARD ========== */
.info-card {
    background: linear-gradient(135deg, #e8f4f8, #d4eaf0);
    border-radius: 24px;
    padding: 30px;
}

.info-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.info-header i {
    font-size: 2rem;
    color: var(--warning);
}

.info-header h3 {
    font-size: 1.4rem;
    color: var(--primary);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 15px 20px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

.info-item span {
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* ========== FORM ========== */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
}

/* ========== SERVICE CHIPS ========== */
.services-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.service-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f3f4;
    border: 2px solid #e0e0e0;
    border-radius: 48px;
    padding: 10px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.service-chip:hover {
    background: #e8f0fe;
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.service-chip.active {
    background: linear-gradient(135deg, var(--accent), #059669);
    border-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}

.service-chip.active .chip-price { color: #e0f7f5; }
.service-chip .chip-icon { font-size: 1.1rem; }
.service-chip .chip-text { font-weight: 600; }
.service-chip .chip-price {
    font-size: 0.7rem;
    padding: 2px 8px;
    background: rgba(0,0,0,0.08);
    border-radius: 20px;
}
.service-chip.active .chip-price { background: rgba(255,255,255,0.2); }

========== PORTFOLIO ==========
/* .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.portfolio-item:hover img { transform: scale(1.05); }

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s;
}

.portfolio-item:hover .portfolio-overlay { transform: translateY(0); } */

/* ========== MODAL ========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    cursor: pointer;
}
.modal img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
}

/* ========== FAQ ACCORDION ========== */
.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.faq-question:hover { background: #f8fafc; }
.faq-question i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--secondary);
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px 20px;
}

.faq-answer p { color: var(--gray); line-height: 1.7; }

/* ========== TESTIMONI ========== */
.testimoni-card { text-align: center; }
.testimoni-stars { color: #FBBF24; margin-bottom: 15px; }
.testimoni-text { font-style: italic; margin-bottom: 15px; }
.testimoni-name { font-weight: 600; color: var(--primary); }

/* ========== KALKULATOR ========== */
.kalkulator {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 30px;
    border-radius: 24px;
    margin-top: 30px;
}
.kalkulator select,
.kalkulator .result {
    background: var(--white);
    color: var(--text-dark);
    border-radius: 12px;
}
.kalkulator .result {
    padding: 15px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 15px;
}

/* ========== AREA LIST ========== */
.area-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 20px;
}
.area-item {
    background: #e2e8f0;
    padding: 8px 12px;
    border-radius: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* ========== KECAMATAN TABS ========== */
.kecamatan-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.kecamatan-tab {
    background: #f1f5f9;
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.kecamatan-tab:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

.kecamatan-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Panel Kelurahan */
.kelurahan-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.kelurahan-panel.active-panel {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header Kecamatan */
.kecamatan-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--secondary);
}

.kecamatan-header i {
    font-size: 1.8rem;
    color: var(--secondary);
}

.kecamatan-header h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin: 0;
}

/* Grid Kelurahan */
.kelurahan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 12px;
    justify-items: center;
}

.kelurahan-item {
    background: #f8fafc;
    padding: 10px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.kelurahan-item:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
    border-color: var(--secondary);
}

.kelurahan-item i {
    color: var(--accent);
    font-size: 0.9rem;
}

.kelurahan-item:hover i {
    color: white;
}

/* ========== SERVICE CARD CLICKABLE ========== */
.service-card-clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}
.service-card-clickable:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.15);
    border-bottom: 3px solid var(--accent);
}

.service-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 8px;
}

/* ========== FILTER BUTTONS ========== */
.filter-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

.filter-btn:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 2;
    width: 100%;
    justify-self: end;
}

.filter-btn:nth-child(5) {
    grid-column: 3 / 4;
    grid-row: 2;
    width: 100%;
    justify-self: start;
}

.filter-btn:nth-child(1),
.filter-btn:nth-child(2),
.filter-btn:nth-child(3) {
    grid-row: 1;
}

.filter-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--white);
    border: 3px solid #e2e8f0;
    border-radius: 32px;
    cursor: pointer;
    padding: 15px;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    background-color: white;
}

.filter-btn img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.filter-btn span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.filter-btn.active {
    border-color: var(--secondary);
    background: #e6f7ff;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(2,132,199,0.3);
}

.filter-btn.active span {
    color: var(--secondary);
}

.filter-btn:hover:not(.active) {
    border-color: var(--secondary);
    background: #f8fafc;
    transform: translateY(-3px);
}

/* ========== PRICE MODAL ========== */
.price-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.price-modal-content {
    background: var(--white);
    border-radius: 32px;
    padding: 40px 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    animation: modalPop 0.3s ease;
    position: relative;
}

@keyframes modalPop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.price-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--gray);
}
.price-modal-close:hover { color: var(--danger); }

.price-modal-icon { font-size: 4rem; margin-bottom: 15px; }
.price-modal-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}
.price-modal-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}
.price-modal-content p { color: var(--gray); }

/* ========== FOOTER ========== */
.footer {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
}
.footer a {
    color: var(--white);
    margin: 0 8px;
    font-size: 1.2rem;
}

/* ========== RESPONSIVE UMUM ========== */
html { scroll-behavior: smooth; }

@media (max-width: 768px) {
    .slide-full img { height: 200px; }
    
    .slider-btn-full {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    .btn-prev-full { left: 10px; }
    .btn-next-full { right: 10px; }
    .dots-full { bottom: 12px; gap: 8px; }
    .dot-full.active { width: 20px; }
    
    .hero-content-section {
        padding: 35px 15px;
    }
    .hero-content-section h1 {
        font-size: 1.8rem;
    }
    .hero-content-section .hero-tagline {
        font-size: 1rem;
    }
    .hero-content-section .hero-features {
        gap: 12px;
        font-size: 0.8rem;
    }
    .hero-content-section .btn-wa-hero,
    .hero-content-section .btn-outline-hero {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .section-title { font-size: 1.5rem; }
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .logo { font-size: 1.5rem; }
    .logo img { height: 40px; }
    
    .kecamatan-tabs { gap: 8px; justify-content: center; }
    .kecamatan-tab { padding: 8px 16px; font-size: 0.75rem; }
    .kelurahan-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px; }
    .kelurahan-item { padding: 8px 10px; font-size: 0.8rem; }
    .kecamatan-header { justify-content: center; }
    .kecamatan-header h4 { font-size: 1rem; }
    .kecamatan-header i { font-size: 1.4rem; }
    
    .filter-btn {
        padding: 10px 14px;
        min-width: 85px;
    }
    .filter-btn img {
        width: 50px;
        height: 50px;
    }
    .filter-btn span {
        font-size: 0.75rem;
    }
    .filter-buttons {
        gap: 12px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-showcase {
        padding: 25px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .service-img-wrapper {
        height: 180px;
    }
}

@media (max-width: 600px) {
    .service-chip { padding: 8px 14px; font-size: 0.75rem; }
    .service-chip .chip-price { font-size: 0.65rem; padding: 2px 6px; }
}

@media (max-width: 550px) {
    .filter-buttons {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .filter-btn:nth-child(1),
    .filter-btn:nth-child(2),
    .filter-btn:nth-child(3),
    .filter-btn:nth-child(4),
    .filter-btn:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        justify-self: auto;
    }
    
    .filter-btn {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-radius: 28px;
    }
    
    .filter-btn img {
        width: 100% !important;
        max-width: 100%;
        height: auto !important;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: 20px;
    }
    
    .filter-btn span {
        font-size: 1.1rem;
        font-weight: 600;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .slide-full img { height: 160px; }
    .price-modal-content { padding: 30px 20px; }
    .price-modal-price { font-size: 1.5rem; }
    .price-modal-icon { font-size: 3rem; }
    .kelurahan-grid { grid-template-columns: 1fr 1fr; }
    .kecamatan-tab { padding: 6px 12px; font-size: 0.7rem; }
    
    .filter-btn {
        padding: 8px 12px;
        min-width: 70px;
    }
    .filter-btn img {
        width: 40px;
        height: 40px;
    }
    .filter-btn span {
        font-size: 0.65rem;
    }
    .filter-buttons {
        gap: 8px;
    }
    
    .benefit-item {
        font-size: 0.75rem;
    }
    
    .service-body h3 {
        font-size: 1.1rem;
    }
}