/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.app-theme {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f2f2f7;
    color: #1c1c1e;
    padding-bottom: 75px;
    min-height: 100vh;
}

/* ============================================
   HEADER APPS
   ============================================ */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 12px 16px;
}

.app-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 480px;
    margin: 0 auto;
}

.app-brand {
    font-size: 18px;
    font-weight: 700;
    color: #007aff;
}

.app-title {
    font-size: 16px;
    font-weight: 600;
    color: #1c1c1e;
}

.icon-btn {
    background: none;
    border: none;
    color: #1c1c1e;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn i {
    width: 22px;
    height: 22px;
    stroke: rgba(26, 26, 46, 0.5);
    stroke-width: 1.5;
    transition: stroke 0.2s;
}

.icon-btn:hover i {
    stroke: #007aff;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.app-main {
    max-width: 480px;
    margin: 70px auto 0;
    padding: 16px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   HERO BANNER
   ============================================ */
.hero-banner {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-banner-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
}

.hero-overlay h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.hero-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-bottom: 12px;
}

.btn-primary {
    background: #007aff;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.btn-primary:hover {
    background: #0055b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
}

.btn-primary:active {
    transform: scale(0.97);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ============================================
   QUICK MENU
   ============================================ */
.quick-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.quick-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.quick-item:active {
    transform: scale(0.95);
    background: #f2f2f7;
}

.quick-icon {
    width: 32px;
    height: 32px;
    stroke: #007aff;
    stroke-width: 1.5;
    display: block;
    margin: 0 auto 6px;
}

.quick-label {
    font-size: 12px;
    color: rgba(26, 26, 46, 0.6);
    display: block;
    margin-top: 4px;
    font-weight: 500;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: #1c1c1e;
}

.section-link {
    color: #007aff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

/* ============================================
   HERO SLIDER - 3 SLIDE
   ============================================ */
.hero-slider {
    border-radius: var(--radius, 16px);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow, 0 1px 3px rgba(0,0,0,0.04));
    position: relative;
}

.heroSwiper {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 6; /* 1600/600 = 2.67 */
}

/* Slide Background */
.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 100%);
    display: flex;
    align-items: center;
    padding: 24px 20px;
}

.slide-content {
    max-width: 75%;
    color: #ffffff;
}

.slide-badge {
    display: inline-block;
    background: #007aff;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slide-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.slide-content p {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 12px;
    line-height: 1.4;
}

.slide-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.slide-buttons .btn-primary {
    padding: 8px 18px;
    font-size: 13px;
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.35);
}

/* ============================================
   SWIPER PAGINATION
   ============================================ */
.swiper-pagination {
    position: absolute;
    bottom: 10px !important;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #007aff;
    width: 22px;
    border-radius: 4px;
}

/* ============================================
   SWIPER NAVIGATION
   ============================================ */
.swiper-button-next,
.swiper-button-prev {
    color: #ffffff !important;
    background: rgba(0,0,0,0.25);
    width: 36px !important;
    height: 36px !important;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0,0,0,0.5);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-button-next i,
.swiper-button-prev i {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
    stroke-width: 2.5;
}

/* ============================================
   RESPONSIVE SLIDER
   ============================================ */

/* Mobile */
@media (max-width: 480px) {
    .heroSwiper {
        height: 160px;
    }
    
    .slide-content {
        max-width: 85%;
    }
    
    .slide-content h2 {
        font-size: 17px;
    }
    
    .slide-content p {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .slide-badge {
        font-size: 9px;
        padding: 2px 10px;
        margin-bottom: 4px;
    }
    
    .slide-buttons .btn-primary {
        padding: 6px 14px;
        font-size: 11px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
    
    .swiper-pagination {
        bottom: 6px !important;
    }
    
    .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
    }
    
    .swiper-pagination-bullet-active {
        width: 16px;
    }
}

/* Tablet */
@media (min-width: 768px) {
    .heroSwiper {
        height: 280px;
    }
    
    .slide-content {
        max-width: 60%;
    }
    
    .slide-content h2 {
        font-size: 28px;
    }
    
    .slide-content p {
        font-size: 15px;
    }
    
    .slide-badge {
        font-size: 12px;
        padding: 4px 16px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .heroSwiper {
        height: 340px;
        border-radius: var(--radius-lg, 20px);
    }
    
    .slide-content h2 {
        font-size: 34px;
    }
    
    .slide-content p {
        font-size: 17px;
    }
    
    .slide-buttons .btn-primary {
        padding: 12px 28px;
        font-size: 15px;
    }
}

/* Desktop Large */
@media (min-width: 1440px) {
    .heroSwiper {
        height: 400px;
    }
}

/* ============================================
   FEED CARDS
   ============================================ */
.feed-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.2s;
}

.feed-card:active {
    transform: scale(0.98);
    background: #f8f8fc;
}

.feed-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.feed-image-placeholder {
    width: 70px;
    height: 70px;
    background: #f2f2f7;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    width: 28px;
    height: 28px;
    stroke: #c6c6c8;
    stroke-width: 1.5;
}

.feed-content {
    flex: 1;
}

.feed-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1c1c1e;
    margin-bottom: 4px;
    line-height: 1.4;
}

.feed-content p {
    font-size: 12px;
    color: rgba(26, 26, 46, 0.5);
    margin-bottom: 6px;
    line-height: 1.4;
}

.feed-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #8e8e93;
}

.feed-meta .dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #c6c6c8;
}

.feed-link {
    color: #007aff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.inline-icon {
    width: 13px;
    height: 13px;
    display: inline-block;
    vertical-align: middle;
    stroke: currentColor;
    stroke-width: 2.5;
}

/* ============================================
   BOTTOM NAVIGATION
   ============================================ */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 8px 0 env(safe-area-inset-bottom);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

.bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    max-width: 480px;
    margin: 0 auto;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: rgba(26, 26, 46, 0.4);
    padding: 4px 12px;
    transition: all 0.2s;
    position: relative;
    min-width: 56px;
    cursor: pointer;
}

.bottom-nav-item .nav-icon {
    width: 24px;
    height: 24px;
    stroke: rgba(26, 26, 46, 0.4);
    stroke-width: 2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bottom-nav-item .nav-label {
    font-size: 10px;
    margin-top: 2px;
    font-weight: 500;
    transition: all 0.2s;
}

.bottom-nav-item.active {
    color: #007aff;
}

.bottom-nav-item.active .nav-icon {
    stroke: #007aff;
    transform: translateY(-2px);
}

.bottom-nav-item.active .nav-label {
    color: #007aff;
}

.bottom-nav-item .nav-icon.fab {
    font-size: 24px;
    line-height: 1;
}

/* ============================================
   FONT AWESOME DI BOTTOM NAV
   ============================================ */
.bottom-nav-item .nav-icon.fab,
.bottom-nav-item .nav-icon.fas,
.bottom-nav-item .nav-icon.far {
    font-size: 24px;
    line-height: 1;
    width: auto;
    height: auto;
    stroke: none;
}

/* Warna WhatsApp */
.bottom-nav-item .nav-icon.fa-whatsapp {
    color: #25D366;
}

/* Saat tidak aktif - opacity */
.bottom-nav-item:not(.active) .nav-icon.fa-whatsapp {
    opacity: 0.4;
}

/* Saat aktif - full color */
.bottom-nav-item.active .nav-icon.fa-whatsapp {
    opacity: 1;
    transform: translateY(-2px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   BOTTOM NAV - HUBUNGI (WA) DI TENGAH
   ============================================ */

/* Container khusus untuk menu WA di tengah */
.bottom-nav-item.nav-wa-center {
    position: relative;
    margin-top: -12px; /* Naik ke atas sedikit */
}

/* Icon WA - Lebih besar */
.bottom-nav-item .nav-icon-wa {
    font-size: 36px !important;
    width: 56px !important;
    height: 56px !important;
    line-height: 56px !important;
    text-align: center;
    background: #25D366;
    color: #ffffff !important;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
}

/* Saat tidak aktif - tetap hijau dengan shadow */
.bottom-nav-item:not(.active) .nav-icon-wa {
    opacity: 1 !important;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

/* Saat aktif - efek bounce/scale */
.bottom-nav-item.active .nav-icon-wa {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* Hover efek untuk desktop */
@media (min-width: 1024px) {
    .bottom-nav-item.nav-wa-center:hover .nav-icon-wa {
        transform: scale(1.15) translateY(-4px);
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
    }
}

/* Sembunyikan label WA */
.bottom-nav-item.nav-wa-center .nav-label {
    display: none;
}

/* ============================================
   RESPONSIVE - Ukuran WA Icon
   ============================================ */

/* Mobile */
@media (max-width: 480px) {
    .bottom-nav-item .nav-icon-wa {
        font-size: 30px !important;
        width: 48px !important;
        height: 48px !important;
        line-height: 48px !important;
    }
    
    .bottom-nav-item.nav-wa-center {
        margin-top: -8px;
    }
}

/* Tablet */
@media (min-width: 768px) {
    .bottom-nav-item .nav-icon-wa {
        font-size: 40px !important;
        width: 64px !important;
        height: 64px !important;
        line-height: 64px !important;
    }
    
    .bottom-nav-item.nav-wa-center {
        margin-top: -16px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .bottom-nav-item .nav-icon-wa {
        font-size: 44px !important;
        width: 72px !important;
        height: 72px !important;
        line-height: 72px !important;
    }
    
    .bottom-nav-item.nav-wa-center {
        margin-top: -20px;
    }
}

/* ============================================
   HALAMAN HUBUNGI / CONTACT
   ============================================ */

/* Header */
.contact-header {
    margin-bottom: 24px;
}

.contact-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary, #1c1c1e);
    margin-bottom: 4px;
}

.contact-subtitle {
    font-size: 14px;
    color: var(--text-secondary, #8e8e93);
}

/* Contact Cards */
.contact-card {
    background: var(--bg-card, #ffffff);
    border-radius: var(--radius, 16px);
    padding: 20px;
    margin-bottom: 14px;
    display: flex;
    gap: 16px;
    align-items: center;
    box-shadow: var(--shadow, 0 1px 3px rgba(0,0,0,0.04));
    border: 0.5px solid var(--border-light, rgba(0,0,0,0.04));
    transition: all var(--transition, 0.15s);
}

.contact-card:active {
    transform: scale(0.98);
}

/* Icon Container */
.contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Icon WhatsApp */
.contact-card-icon .contact-icon-wa {
    font-size: 32px;
    color: #25D366;
}

.contact-card-icon .contact-icon-wa {
    background: #e8f5e9;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

/* Icon Lokasi */
.contact-icon-location {
    width: 32px;
    height: 32px;
    stroke: #ef4444;
    stroke-width: 1.8;
}

.contact-card-icon .contact-icon-location {
    background: #fef2f2;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

/* Icon Telepon */
.contact-icon-phone {
    width: 32px;
    height: 32px;
    stroke: #3b82f6;
    stroke-width: 1.8;
}

.contact-card-icon .contact-icon-phone {
    background: #eff6ff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

/* Content */
.contact-card-content {
    flex: 1;
}

.contact-card-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary, #1c1c1e);
    margin-bottom: 2px;
}

.contact-card-content p {
    font-size: 13px;
    color: var(--text-secondary, #8e8e93);
    margin-bottom: 8px;
}

.contact-card-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn-wa {
    background: #25D366;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.btn-wa:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-wa:active {
    transform: scale(0.96);
}

.btn-wa i {
    font-size: 16px;
}

.btn-location {
    background: #ef4444;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.btn-location:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-location:active {
    transform: scale(0.96);
}

.btn-location i {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.btn-phone {
    background: #3b82f6;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.btn-phone:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-phone:active {
    transform: scale(0.96);
}

.btn-phone i {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* Contact Info Text */
.contact-phone,
.contact-address {
    font-size: 12px;
    color: var(--text-secondary, #8e8e93);
}

/* ============================================
   JAM OPERASIONAL
   ============================================ */
.contact-hours {
    background: var(--bg-card, #ffffff);
    border-radius: var(--radius, 16px);
    padding: 20px;
    margin-top: 8px;
    box-shadow: var(--shadow, 0 1px 3px rgba(0,0,0,0.04));
    border: 0.5px solid var(--border-light, rgba(0,0,0,0.04));
}

.contact-hours h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary, #1c1c1e);
    margin-bottom: 12px;
}

.hours-grid {
    display: grid;
    gap: 8px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 0.5px solid var(--border-light, rgba(0,0,0,0.04));
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    font-size: 14px;
    color: var(--text-primary, #1c1c1e);
}

.hours-time {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary, #1c1c1e);
}

/* ============================================
   RESPONSIVE - HALAMAN HUBUNGI
   ============================================ */
@media (max-width: 480px) {
    .contact-card {
        padding: 16px;
        gap: 12px;
    }
    
    .contact-card-icon {
        width: 48px;
        height: 48px;
    }
    
    .contact-card-icon .contact-icon-wa {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
    
    .contact-card-icon .contact-icon-location,
    .contact-card-icon .contact-icon-phone {
        width: 48px;
        height: 48px;
        padding: 10px;
    }
    
    .contact-title {
        font-size: 20px;
    }
    
    .btn-wa,
    .btn-location,
    .btn-phone {
        font-size: 12px;
        padding: 6px 14px;
    }
}

@media (min-width: 768px) {
    .contact-card {
        padding: 24px;
        gap: 20px;
        border-radius: var(--radius-lg, 18px);
    }
    
    .contact-card-icon {
        width: 64px;
        height: 64px;
    }
    
    .contact-card-icon .contact-icon-wa {
        width: 64px;
        height: 64px;
        font-size: 36px;
    }
    
    .contact-card-icon .contact-icon-location,
    .contact-card-icon .contact-icon-phone {
        width: 64px;
        height: 64px;
        padding: 14px;
    }
}


/* ============================================
   FORM
   ============================================ */
.ios-form {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 0.5px solid rgba(0, 0, 0, 0.04);
}

.ios-form .form-group {
    padding: 14px 16px;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.04);
}

.ios-form .form-group:last-child {
    border-bottom: none;
}

.ios-form label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #8e8e93;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.ios-form input,
.ios-form select,
.ios-form textarea {
    width: 100%;
    padding: 6px 0;
    background: transparent;
    border: none;
    color: #1c1c1e;
    font-size: 16px;
    font-family: inherit;
    outline: none;
}

.ios-form input::placeholder,
.ios-form textarea::placeholder {
    color: #c6c6c8;
}

.ios-form textarea {
    resize: vertical;
    min-height: 60px;
    padding: 6px 0;
}

/* ============================================
   SERVICE LIST
   ============================================ */
.service-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 0.5px solid rgba(0, 0, 0, 0.04);
    transition: all 0.15s;
}

.service-item:active {
    transform: scale(0.98);
    background: #f8f8fc;
}

.service-icon {
    width: 40px;
    height: 40px;
    stroke: #007aff;
    stroke-width: 1.8;
    flex-shrink: 0;
    background: #f2f2f7;
    padding: 8px;
    border-radius: 10px;
}

.service-info {
    flex: 1;
}

.service-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1c1c1e;
}

.service-info p {
    font-size: 12px;
    color: #8e8e93;
}

.service-price {
    font-size: 15px;
    font-weight: 600;
    color: #007aff;
}

/* ============================================
   LOADING & ERROR
   ============================================ */
.loading-spinner {
    text-align: center;
    padding: 40px 20px;
    color: rgba(26, 26, 46, 0.5);
}

.spinner-icon {
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    stroke: #007aff;
    display: block;
    margin: 0 auto 12px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.error-container {
    text-align: center;
    padding: 40px 20px;
}

.error-icon {
    width: 48px;
    height: 48px;
    stroke: #ff3b30;
    display: block;
    margin: 0 auto 12px;
}

.error-container h3 {
    color: #1c1c1e;
    margin-bottom: 8px;
}

.error-container p {
    color: #8e8e93;
    margin-bottom: 16px;
}

/* ============================================
   RESPONSIVE - TAMBAHAN RAPI
   ============================================ */
@media (max-width: 480px) {
    .app-header {
        padding: 10px 12px;
    }
    
    .app-main {
        padding: 12px;
    }
    
    .hero-banner-image {
        height: 160px;
    }
    
    .quick-menu-grid {
        gap: 8px;
    }
    
    .quick-item {
        padding: 12px 4px;
    }
    
    .feed-card {
        padding: 10px 12px;
    }
    
    .feed-image {
        width: 60px;
        height: 60px;
    }
}

/* Tablet */
@media (min-width: 768px) {
    .app-main {
        max-width: 640px;
        padding: 20px;
    }
    
    .app-header-inner {
        max-width: 640px;
    }
    
    .bottom-nav-inner {
        max-width: 640px;
    }
    
    .hero-banner-image {
        height: 280px;
    }
    
    .quick-menu-grid {
        gap: 16px;
    }
    
    .quick-item {
        padding: 20px 12px;
    }
    
    .quick-icon {
        width: 36px;
        height: 36px;
    }
    
    .quick-label {
        font-size: 13px;
    }
    
    .feed-image {
        width: 90px;
        height: 90px;
    }
    
    .feed-content h4 {
        font-size: 16px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .app-main {
        max-width: 960px;
        padding: 24px;
        margin-top: 80px;
    }
    
    .app-header-inner {
        max-width: 960px;
    }
    
    .bottom-nav-inner {
        max-width: 960px;
    }
    
    .bottom-nav {
        max-width: 600px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 20px;
        bottom: 20px;
        border: 1px solid rgba(0, 0, 0, 0.06);
        background: rgba(255, 255, 255, 0.95);
    }
    
    .hero-banner-image {
        height: 360px;
        border-radius: 20px;
    }
    
    .hero-overlay h2 {
        font-size: 32px;
    }
    
    .hero-overlay p {
        font-size: 16px;
    }
    
    .quick-menu-grid {
        gap: 20px;
    }
    
    .quick-item {
        padding: 24px 16px;
        border-radius: 18px;
    }
    
    .quick-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }
    
    .quick-icon {
        width: 40px;
        height: 40px;
    }
    
    .quick-label {
        font-size: 14px;
    }
    
    .feed-card {
        padding: 16px 18px;
        gap: 16px;
        border-radius: 18px;
    }
    
    .feed-card:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        transform: translateY(-2px);
    }
    
    .feed-image {
        width: 100px;
        height: 100px;
    }
    
    .feed-content h4 {
        font-size: 16px;
    }
    
    .feed-content p {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 22px;
    }
}

/* Desktop Large */
@media (min-width: 1440px) {
    .app-main {
        max-width: 1200px;
        padding: 32px;
    }
    
    .app-header-inner {
        max-width: 1200px;
    }
    
    .bottom-nav-inner {
        max-width: 1200px;
    }
    
    .hero-banner-image {
        height: 420px;
    }
    
    .hero-overlay h2 {
        font-size: 38px;
    }
    
    .hero-overlay p {
        font-size: 18px;
    }
}

/* ============================================
   SAFE AREA
   ============================================ */
@supports (padding: max(0px)) {
    .bottom-nav {
        padding-bottom: max(8px, env(safe-area-inset-bottom));
    }
}

/* ============================================
   HERO SLIDER - SWIPER
   ============================================ */
.hero-slider {
    border-radius: var(--radius, 16px);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow, 0 1px 3px rgba(0,0,0,0.04));
    position: relative;
    min-height: 160px;
}

.heroSwiper {
    width: 100%;
    height: 200px;
    border-radius: var(--radius, 16px);
    overflow: hidden;
}

.swiper-slide {
    height: 100% !important;
}

.swiper-slide-active {
    opacity: 1 !important;
    visibility: visible !important;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 100%);
    display: flex;
    align-items: center;
    padding: 24px 20px;
}

.slide-content {
    max-width: 75%;
    color: #ffffff;
}

.slide-badge {
    display: inline-block;
    background: #007aff;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slide-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.slide-content p {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 12px;
    line-height: 1.4;
}

.slide-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.slide-buttons .btn-primary {
    padding: 8px 18px;
    font-size: 13px;
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.35);
}

/* Swiper Pagination */
.swiper-pagination {
    position: absolute;
    bottom: 10px !important;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #007aff;
    width: 22px;
    border-radius: 4px;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #ffffff !important;
    background: rgba(0,0,0,0.25);
    width: 36px !important;
    height: 36px !important;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0,0,0,0.5);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-button-next i,
.swiper-button-prev i {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
    stroke-width: 2.5;
}

/* ============================================
   RESPONSIVE SLIDER
   ============================================ */
@media (max-width: 480px) {
    .heroSwiper {
        height: 160px;
    }
    
    .slide-content {
        max-width: 85%;
    }
    
    .slide-content h2 {
        font-size: 17px;
    }
    
    .slide-content p {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .slide-badge {
        font-size: 9px;
        padding: 2px 10px;
        margin-bottom: 4px;
    }
    
    .slide-buttons .btn-primary {
        padding: 6px 14px;
        font-size: 11px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
    
    .swiper-pagination {
        bottom: 6px !important;
    }
    
    .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
    }
    
    .swiper-pagination-bullet-active {
        width: 16px;
    }
}

@media (min-width: 768px) {
    .heroSwiper {
        height: 280px;
    }
    
    .slide-content {
        max-width: 60%;
    }
    
    .slide-content h2 {
        font-size: 28px;
    }
    
    .slide-content p {
        font-size: 15px;
    }
    
    .slide-badge {
        font-size: 12px;
        padding: 4px 16px;
    }
}

@media (min-width: 1024px) {
    .heroSwiper {
        height: 340px;
        border-radius: var(--radius-lg, 20px);
    }
    
    .slide-content h2 {
        font-size: 34px;
    }
    
    .slide-content p {
        font-size: 17px;
    }
    
    .slide-buttons .btn-primary {
        padding: 12px 28px;
        font-size: 15px;
    }
}

@media (min-width: 1440px) {
    .heroSwiper {
        height: 400px;
    }
}

/* ============================================
   FIX: Slider re-init
   ============================================ */
.hero-slider {
    position: relative;
    min-height: 160px;
    opacity: 1 !important;
    visibility: visible !important;
}

.heroSwiper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
}

.swiper-slide {
    height: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.swiper-wrapper {
    height: 100% !important;
}

/* Pastikan slide aktif terlihat */
.swiper-slide-active {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Force Swiper container */
.swiper-container,
.swiper {
    opacity: 1 !important;
    visibility: visible !important;
}