/* ================= GLOBAL STYLES ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #008080; /* Teal Medis */
    --secondary-color: #00c2c2;
    --accent-color: #ff9800; /* Warna kontras untuk CTA */
    --text-dark: #333;
    --text-light: #fff;
    --bg-light: #f4f9f9;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Header Styles --- */
.main-header {
    background: #ffffff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo span {
    color: var(--primary-color);
}

/* --- Desktop Nav --- */
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links li a {
    font-weight: 500;
    color: #444;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--primary-color);
}

/* Dropdown Desktop */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 200px;
    padding: 15px 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
}

/* CTA Button */
.cta-nav {
    background: var(--primary-color);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* --- Mobile Toggle (Hamburger) --- */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 5px;
    transition: 0.3s;
}

/* --- Mobile Drawer (Samping) --- */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%; /* Sembunyi di kanan */
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 2000;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 30px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.mobile-drawer.active {
    right: 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    display: none;
}

.mobile-overlay.active {
    display: block;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.close-btn {
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-links {
    list-style: none;
    padding: 0;
}

.mobile-links li {
    margin-bottom: 20px;
}

.mobile-links li a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.mobile-cta-btn {
    display: block;
    text-align: center;
    background: var(--primary-color);
    color: #fff !important;
    padding: 15px;
    border-radius: 10px;
    margin-top: 30px;
}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
    .desktop-nav, .header-action .cta-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

/* ================= HERO SECTION ================= */
.hero-modern {
    position: relative;
    padding: 140px 5% 100px;
    background: linear-gradient(135deg, #f0fafa 0%, #ffffff 100%);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* --- Teks Content --- */
.hero-text-content {
    flex: 1.2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 128, 128, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.hero-text-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-text-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 35px;
    max-width: 550px;
}

/* --- Buttons --- */
.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-main {
    background: var(--primary-color);
    color: #fff !important;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 128, 128, 0.2);
}

.btn-main:hover {
    transform: translateY(-3px);
    background: var(--secondary-color);
}

.btn-outline {
    border: 2px solid #ddd;
    color: var(--text-dark) !important;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
}

.btn-outline:hover {
    background: #f5f5f5;
}

/* --- Stats --- */
.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.stat-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.stat-item span {
    font-size: 0.85rem;
    color: #888;
}

/* --- Visual Kanan --- */
.hero-visual {
    flex: 0.8;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.hero-main-img {
    width: 100%;
    border-radius: 30px 100px 30px 30px; /* Bentuk unik */
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.floating-card {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text-content h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        justify-content: center;
        margin-top: 40px;
    }
}

/* ================= SECTIONS GLOBAL ================= */
section {
    padding: 80px 5%;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}


/* ================= REVISI SECTION MENGAPA MEMILIH KAMI ================= */
/* Container Utama */
.why-choose-us {
    background-color: #ffffff;
    padding: 100px 5%;
}

.container-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Kolom Teks */
.text-side {
    flex: 1.2;
}

.sub-title {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.text-side h2 {
    text-align: left; /* Berbeda dengan h2 global agar lebih dinamis */
    margin-bottom: 20px;
    font-size: 2.2rem;
    line-height: 1.3;
}

.section-desc {
    color: #666;
    margin-bottom: 40px;
}

/* Feature Item Style */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.icon-box {
    min-width: 60px;
    height: 60px;
    background: rgba(0, 128, 128, 0.1); /* Warna primary transparan */
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    border-radius: 12px;
}

.feature-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.feature-text p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

/* Kolom Gambar */
.image-side {
    flex: 0.8;
    position: relative;
}

.image-wrapper {
    position: relative;
    padding: 20px;
}

.main-img {
    width: 100%;
    max-width: 400px;
    border-radius: 30px;
    z-index: 2;
    position: relative;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

/* Aksen Dekoratif di Belakang Gambar */
.image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background: var(--primary-color);
    border-radius: 30px;
    z-index: 1;
    opacity: 0.1;
}

/* Badge Pengalaman */
.experience-badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    z-index: 3;
    text-align: center;
}

.experience-badge .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.experience-badge .txt {
    font-size: 0.8rem;
    color: #555;
}

/* Responsive */
@media (max-width: 992px) {
    .container-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .text-side h2 {
        text-align: center;
    }
    
    .feature-item {
        text-align: left;
    }
    
    .image-side {
        margin-top: 50px;
    }
}

/* Membuat kontainer menjadi dua kolom seperti About */
.why-us-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Kolom Kiri: Deskripsi & Grid Kartu */
.why-us-content-col {
    flex: 1.5; /* Memberi ruang lebih besar untuk teks */
    min-width: 300px;
}

/* Menyusun kartu keunggulan agar lebih rapi secara vertikal atau grid kecil */
.pricing-grid-revisied {
    display: grid;
    grid-template-columns: 1fr; /* List vertikal agar fokus ke teks */
    gap: 15px;
    margin-top: 20px;
}

.pricing-card-small {
    background: #fff;
    padding: 20px;
    border-left: 5px solid var(--primary-color); /* Aksen garis medis */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.pricing-card-small h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

/* Kolom Kanan: Gambar yang Diperkecil */
.why-us-image-col {
    flex: 0.8; /* Mengecilkan kolom gambar */
    display: flex;
    justify-content: center;
    align-items: center;
}

.premium-side-image {
    width: 100%;
    max-width: 350px; /* Batas maksimal lebar gambar agar tidak terlalu besar */
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Responsif: Gambar pindah ke bawah saat di HP */
@media (max-width: 768px) {
    .why-us-container {
        flex-direction: column;
    }
    
    .why-us-image-col {
        order: 2; /* Gambar di bawah teks pada mobile */
    }
}
/* ================= ABOUT ================= */
.about-modern {
    padding: 100px 5%;
    background: #fdfdfd;
    overflow: hidden;
}

.container-about {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Layout Gambar --- */
/* ================= ABOUT SECTION (FINAL STABLE VERSION) ================= */
.about-modern {
    padding: 100px 5%;
    background: #ffffff;
    overflow: hidden;
}

.container-about {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Layout Gambar Desktop --- */
.about-images {
    flex: 1;
    position: relative;
    height: 480px; /* Tinggi ini hanya untuk desktop */
}

.image-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.primary-box {
    position: absolute;
    width: 75%;
    z-index: 2;
    top: 0;
    left: 0;
}

.secondary-box {
    position: absolute;
    width: 65%;
    z-index: 1;
    bottom: 20px;
    right: 0;
    border: 6px solid #fff;
}

.img-1, .img-2 {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* --- Area Teks Desktop --- */
.about-text {
    flex: 1;
    text-align: left;
}

.badge-about {
    background: rgba(0, 128, 128, 0.1);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 25px;
    font-size: 2.4rem;
    line-height: 1.2;
    color: var(--text-dark);
}

.vision-mission-grid {
    margin: 35px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.vm-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.vm-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 30px;
}

.about-cta-group {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

/* ================= RESPONSIVE FIX (ANTI TABRAKAN) ================= */

@media (max-width: 992px) {
    .container-about {
        flex-direction: column; 
        gap: 40px;
    }

    /* MATIKAN SYSTEM ABSOLUTE DI MOBILE */
    .about-images {
        width: 100%;
        height: auto; /* Agar kontainer mengikuti tinggi gambar */
        display: flex;
        gap: 15px;
        position: static; /* Menghilangkan konteks absolute */
    }

    .primary-box, .secondary-box {
        position: relative; /* Gambar jadi berurutan, tidak menumpuk */
        width: 50%;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .secondary-box {
        border: none;
        margin-top: 20px; /* Memberi efek tangga sedikit */
    }

    .img-1, .img-2 {
        height: 250px; /* Sesuaikan tinggi gambar di mobile */
    }

    /* Deskripsi Mobile */
    .about-text {
        text-align: center;
    }

    .about-text h2 {
        text-align: center;
        font-size: 2rem;
    }

    .vm-item {
        text-align: left;
    }

    .about-cta-group {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 580px) {
    .about-images {
        flex-direction: column; /* Gambar jadi atas-bawah di HP kecil */
        align-items: center;
    }

    .primary-box, .secondary-box {
        width: 100%;
        margin-top: 0;
    }
    
    .secondary-box {
        display: none; /* Sembunyikan 1 gambar di HP kecil agar tidak kepanjangan */
    }
}
/* ================= TESTIMONI ================= */
.testimonials-modern {
    padding: 100px 5%;
    background-color: #f4f9f9; /* Biru medis pucat */
    text-align: center;
}

.testimonials-modern h2 {
    margin-bottom: 50px;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testi-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.testi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 128, 128, 0.1);
    border-color: var(--primary-color);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 15px;
}

.testi-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
    min-height: 80px;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.user-info h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--text-dark);
}

.user-info span {
    font-size: 0.8rem;
    color: #999;
}

.rating {
    margin-top: 15px;
    color: #ffc107;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .testi-grid {
        grid-template-columns: 1fr;
    }
}
/* ================= CONTACT & MAP ================= */
.contact-modern {
    padding: 100px 5%;
    background-color: #ffffff;
}

.container-contact {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

/* --- Detail Kontak (Kiri) --- */
.contact-details {
    flex: 1;
}

.contact-details h2 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.contact-desc {
    color: #666;
    margin-bottom: 40px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.info-icon {
    width: 55px;
    height: 55px;
    background: #f0f7f7;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    transition: 0.3s;
}

.info-item:hover .info-icon {
    background: var(--primary-color);
    color: #fff;
}

.info-text h4 {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-text a, .info-text p {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.social-connect {
    margin-top: 50px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-dark);
}

.social-icons a:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* --- Wrapper Map (Kanan) --- */
.contact-map-wrapper {
    flex: 1;
}

.map-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.map-overlay-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .container-contact {
        flex-direction: column;
    }
    
    .contact-map-wrapper {
        width: 100%;
    }
}
/* ================= FOOTER ================= */
.footer-main {
    background-color: #1a1a1a; /* Hitam elegan */
    color: #ffffff;
    padding-top: 80px;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 0 5%;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Branding Column */
.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    filter: none;
}

.brand-desc {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 35px;
    height: 35px;
    background: #333;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Links Columns */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #aaa;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Contact Column */
.contact-footer p {
    color: #aaa;
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.contact-footer i {
    color: var(--primary-color);
    margin-top: 4px;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid #333;
    padding: 25px 0;
    background-color: #111;
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: center; /* Membuat konten (teks) ke tengah secara horizontal */
    align-items: center;     /* Membuat konten ke tengah secara vertikal */
    text-align: center;      /* Berjaga-jaga jika teks pecah jadi 2 baris di mobile */
}

.footer-bottom p {
    color: #666;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-bottom .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
/* ================= UTILS ================= */
.wa-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1001;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    display: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .contact-map-container {
        grid-template-columns: 1fr;
    }

    .about-container {
        flex-direction: column-reverse;
    }
}

/* --- Hero Layanan --- */
.hero-layanan-modern {
    background: url('assets/hero-layanan-bg.webp') center/cover no-repeat;
    padding: 120px 5%;
    text-align: center;
    color: white;
    position: relative;
}

.hero-layanan-modern h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    z-index: 2;
    position: relative;
}

.hero-layanan-modern p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

/* --- Layanan Grid --- */
.layanan-section-modern {
    padding: 80px 5%;
    background: #f8fbfb;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.layanan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Price Card V2 --- */
/* Layout Grid Katalog */
.layanan-grid-v3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 30px 0;
}

/* Base Card Style sesuai Gambar */
.card-v3 {
    border-radius: 30px;
    padding: 45px 25px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease;
    min-height: 580px; /* Menjaga tinggi kartu seragam */
}

.card-v3:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }

/* Tema Warna (Gantian Terang-Gelap) */
.light-green { background-color: #e8f5e9; color: #008080; }
.dark-green { background-color: #008080; color: #ffffff; }

/* Tipografi Judul & Info */
.pkg-name { font-size: 1.5rem; font-weight: 800; margin-bottom: 25px; height: 50px; display: flex; align-items: center; justify-content: center; }
.pkg-info { margin-bottom: 20px; }
.pkg-info h4 { margin-bottom: 8px; font-weight: 700; }
.pkg-info p { font-size: 0.95rem; line-height: 1.4; opacity: 0.9; }

/* Bagian Harga (Pricing) */
.pkg-pricing { margin-top: auto; padding-bottom: 20px; }
.discount-row { display: flex; justify-content: center; align-items: center; gap: 8px; margin-bottom: 8px; }
.old-price-strike { text-decoration: line-through; color: #ff5252; font-weight: bold; font-size: 1rem; }
.save-badge { background: #ff0000; color: #fff; padding: 2px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 800; }
.current-price { font-size: 1.4rem; font-weight: 800; }

/* Tombol CTA Sesuai Tema */
.btn-action {
    display: block;
    padding: 14px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    border: none;
}
.btn-action.dark { background: #00332a; color: #fff; }
.btn-action.light { background: #e8f5e9; color: #00332a; }
.btn-action:hover { opacity: 0.9; transform: scale(1.02); }

/* Badge Best Seller Melayang */
.best-seller-icon {
    position: absolute;
    bottom: 125px;
    right: -5px;
    width: 80px;
    z-index: 5;
    pointer-events: none;
}
.best-seller-icon img { width: 100%; height: auto; }

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .layanan-grid-v3 { grid-template-columns: 1fr; }
    .card-v3 { min-height: auto; }
}

/* --- Responsive Mobile --- */
@media (max-width: 768px) {
    .layanan-grid {
        grid-template-columns: 1fr; /* Satu kolom di HP agar tidak sempit */
    }
    .price-card-v2.featured {
        transform: scale(1);
        margin: 20px 0;
    }
}

/* --- DESKTOP DROPDOWN --- */
.nav-links .dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

/* Muncul saat Hover di Desktop */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.dropdown-menu li a:hover {
    background: #f0f7f7;
    color: var(--primary-color);
}

/* --- MOBILE DROPDOWN (DRAWER) --- */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f9f9f9;
    padding-left: 20px;
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 500px; /* Nilai bebas yang besar */
    padding: 10px 0;
}

.mobile-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .toggle-icon {
    transform: rotate(45deg); /* Berubah jadi 'x' atau tanda silang */
}

/* Badge Best Seller Tulisan (Pengganti Gambar) */
.best-seller-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    background: linear-gradient(45deg, #ffcc00, #ff9900); /* Warna Emas Medis */
    color: #253300;
    font-size: 11px;
    font-weight: 900;
    padding: 8px 15px;
    border-radius: 5px 0 0 5px;
    box-shadow: -2px 4px 10px rgba(0,0,0,0.15);
    z-index: 10;
    letter-spacing: 1px;
}

/* Efek lipatan kecil di samping badge agar terlihat seperti pita menempel */
.best-seller-badge::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    border-top: 5px solid #a67c00;
    border-right: 5px solid transparent;
}

/* Mengunci Grid agar kartu tidak melebar liar */
.layanan-grid-v3 {
    display: grid;
    /* Ini akan membuat kartu otomatis rapi: minimal 280px, maksimal 1 bagian dari sisa layar */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 25px;
    padding: 20px;
    max-width: 1200px; /* Membatasi lebar area katalog agar tidak terlalu lebar di monitor besar */
    margin: 0 auto;    /* Mengetengahkan seluruh katalog */
    align-items: stretch; /* Memastikan semua kartu dalam 1 baris sama tingginya */
}

/* --- MENGECILKAN UKURAN KARTU --- */

.layanan-grid-v3 {
    display: grid;
    /* Menambah jumlah kolom: kartu akan punya lebar minimal 250px (lebih kecil dari sebelumnya) */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 20px;
    padding: 20px;
    /* Membatasi lebar total area katalog agar kartu tidak 'lari' terlalu lebar */
    max-width: 1100px; 
    margin: 0 auto;
}

.card-v3 {
    width: 100%;
    /* Mengunci lebar maksimal kartu agar tidak raksasa di layar lebar */
    max-width: 300px; 
    margin: 0 auto; 
    padding: 25px 20px; /* Menyesuaikan padding dalam agar tetap proporsional */
    border-radius: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Menyesuaikan ukuran font judul karena kartu mengecil */
.pkg-name {
    font-size: 1.25rem !important;
    min-height: 50px !important;
    margin-bottom: 15px !important;
}

/* Menghilangkan SEMUA garis bawah di dalam katalog */
.layanan-section-modern u {
    text-decoration: none !important;
}
.pkg-info h4 { 
    margin-bottom: 8px; 
    font-weight: 700; /* Ini akan menjaga teks tetap tegas meski tanpa garis */
}

/* --- PERBAIKAN HARGA CORET & DISKON (TARUH DI PALING BAWAH) --- */

/* --- REVISI HARGA CORET TEBAL & BADGE MERAH PUTIH --- */

.old-price-strike { 
    text-decoration: line-through; 
    /* Menebalkan garis coret */
    text-decoration-thickness: 2px; 
    /* Memberikan warna merah terang pada garis agar mencolok */
    text-decoration-color: #ff0000; 
    color: #757575; 
    font-weight: 600; 
    font-size: 1rem; 
}

/* Penyesuaian harga coret khusus di kartu Hijau Tua agar tetap kontras */
.dark-green .old-price-strike { 
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration-color: #ff5252 !important; /* Merah yang sedikit lebih terang */
}

/* --- FIX BADGE HEMAT AGAR TIDAK MELAR --- */
.save-badge { 
    background-color: #ff0000 !important; 
    color: #ffffff !important;           
    padding: 3px 10px;                   
    border-radius: 4px;                  
    font-size: 0.75rem; 
    font-weight: 800; 
    text-transform: uppercase;
    
    /* TAMBAHKAN DUA BARIS INI */
    width: fit-content;    /* Kotak mengikuti panjang tulisan */
    margin: 0 auto;        /* Tetap berada di tengah */
    display: inline-block; /* Memastikan padding berfungsi dengan benar */
}

.discount-row { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 8px; 
    margin-bottom: 8px;
    width: 100%; /* Memastikan row harga selebar kartu */
}

/* --- HERO ELEGANT STYLE --- */
.hero-elegant {
    position: relative;
    padding: 100px 0;
    background-color: #fdfdfd; /* Putih bersih */
    overflow: hidden;
}

/* Lingkaran Dekorasi Background */
.glow-bg {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 51, 42, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Content Area */
.hero-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e6f0ee;
    color: #00332a;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    width: fit-content;
}

.hero-tag .dot {
    width: 8px;
    height: 8px;
    background: #00332a;
    border-radius: 50%;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #00332a;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.text-serif {
    color: #056155;
    font-style: italic;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 500px;
}

/* Buttons */
.hero-btns { display: flex; gap: 15px; margin-bottom: 40px; }

.btn-main {
    background: #00332a;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 51, 42, 0.15);
}

.btn-outline {
    background: white;
    color: #00332a;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #e6f0ee;
    transition: 0.3s;
}

.btn-main:hover { transform: translateY(-3px); background: #056155; }
.btn-outline:hover { background: #e6f0ee; border-color: #00332a; }

/* Features */
.hero-features { display: flex; gap: 30px; }
.feat-item { display: flex; align-items: center; gap: 10px; color: #00332a; font-weight: 600; font-size: 0.9rem; }
.feat-item i { color: #056155; font-size: 1.2rem; }

/* Image Area */
.hero-image-wrapper { flex: 1; position: relative; }

.main-image-container {
    position: relative;
    padding: 15px;
    background: white;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.img-hero {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 30px;
}

/* Floating Info */
.floating-info {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .hero-flex { flex-direction: column; text-align: center; padding-top: 40px; }
    .hero-tag, .hero-btns, .hero-features { justify-content: center; margin-left: auto; margin-right: auto; }
    .hero-content h1 { font-size: 2.5rem; }
    .floating-info { left: 50%; transform: translateX(-50%); width: 80%; bottom: 10px; }
}

/* --- BLOG CARD STYLE (SESUAI GAMBAR) --- */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05); /* Shadow halus */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
    text-align: center; /* Teks rata tengah sesuai gambar */
}

.card-meta {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 15px;
    font-weight: 400;
}

.blog-card-content h2 {
    font-size: 1.4rem;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 700;
}

.blog-card-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Tombol Hijau Bulat Sesuai Gambar */
.read-more-btn {
    display: inline-block;
    background-color: #0d7a5f; /* Warna hijau emerald sesuai gambar */
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px; /* Membuat lonjong sempurna */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background-color: #0a614b;
}

/* --- HERO BLOG ELEGAN --- */
.hero-elegant-blog {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fdfdfd 0%, #f4f9f8 100%);
    overflow: hidden;
    text-align: center;
}

/* Dekorasi Cahaya di Background */
.glow-bg-blog {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(circle, rgba(5, 97, 85, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-blog-flex {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-blog-tag {
    background: #e6f0ee;
    color: #00332a;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-blog-content h1 {
    font-size: 3.2rem;
    color: #00332a;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.text-serif-blog {
    color: #056155;
    font-style: italic;
    font-weight: 400;
    font-family: 'Poppins', serif; /* Pastikan font ini mendukung style italic yang bagus */
}

.hero-blog-content p {
    font-size: 1.15rem;
    color: #555;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Statistik Blog agar lebih terpercaya */
.blog-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    border-top: 1px solid #d1e2df;
    padding-top: 30px;
    width: fit-content;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 1.5rem;
    color: #00332a;
}

.stat-item span {
    font-size: 0.85rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: #d1e2df;
}

/* Responsif Mobile */
@media (max-width: 768px) {
    .hero-blog-content h1 { font-size: 2.2rem; }
    .hero-blog-content p { font-size: 1rem; }
    .blog-stats { gap: 15px; }
}

/* --- ARTICLE PAGE STYLING --- */

.art-vitamin-wrapper {
    background-color: #fdfdfd;
    padding: 60px 0;
}

.art-vitamin-container {
    max-width: 800px; /* Lebar ideal untuk membaca artikel */
    margin: 0 auto;
    padding: 0 20px;
    background: #ffffff;
}

/* Tipografi Judul & Subjudul */
.art-vitamin-container h1 {
    font-size: 2.5rem;
    color: #00332a;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.art-sub {
    font-size: 1.6rem;
    color: #056155;
    margin: 40px 0 15px;
    font-weight: 700;
    border-left: 4px solid #00332a;
    padding-left: 15px;
}

/* Konten Paragraf */
.art-vitamin-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* Kotak Sorot (Highlight) */
.art-vitamin-highlight {
    background: #f4f9f8;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    border-left: 5px solid #056155;
}

.art-vitamin-highlight ul {
    list-style: none;
    padding: 0;
}

.art-vitamin-highlight li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
}

.art-vitamin-highlight strong {
    color: #00332a;
    display: block;
    font-size: 1.15rem;
    margin-bottom: 5px;
}

/* Kotak Catatan (Quote) */
.art-vitamin-quote {
    background: #fff8e1; /* Kuning soft */
    padding: 25px;
    border-radius: 12px;
    font-style: italic;
    color: #5d4037;
    border: 1px dashed #ffc107;
    margin: 40px 0;
}

/* Tombol Kembali ke Blog */
.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: #056155;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.back-to-blog:hover {
    transform: translateX(-5px);
}

/* Gambar Responsif */
.art-vitamin-container img {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: 0.3s;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .art-vitamin-container h1 { font-size: 1.8rem; }
    .art-sub { font-size: 1.3rem; }
}

/* --- SERVICE HERO STYLE --- */
.hero-service-premium {
    padding: 100px 0;
    background: #fdfdfd;
    position: relative;
}

.hero-service-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-tag {
    background: #e6f0ee;
    color: #00332a;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
}

.hero-check-list {
    margin: 25px 0 35px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.check-item {
    font-weight: 600;
    color: #00332a;
    font-size: 0.9rem;
}

.check-item i { color: #056155; margin-right: 5px; }

.image-frame {
    position: relative;
    padding: 10px;
    background: white;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border-radius: 30px;
}

.image-frame img {
    border-radius: 20px;
    width: 100%;
}

/* --- PRICING CARD V2 --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.price-card-v2 {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    border: 1px solid #eee;
    text-align: center;
    transition: 0.3s;
    position: relative;
}

.price-card-v2.featured {
    border: 2px solid #00332a;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 51, 42, 0.1);
}

.popular-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00332a;
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.card-head h3 { color: #00332a; font-size: 1.2rem; margin-bottom: 20px; }

.price-box { margin-bottom: 30px; }
.old-price { display: block; text-decoration: line-through; color: #999; font-size: 0.9rem; }
.curr-price { display: block; font-size: 1.8rem; font-weight: 800; color: #056155; }

.card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
    text-align: left;
}

.card-features li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #555;
}

.card-features i { color: #056155; margin-right: 10px; width: 20px; }

.btn-card {
    display: block;
    background: #00332a;
    color: white;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-card:hover { background: #056155; }

@media (max-width: 768px) {
    .hero-service-flex { flex-direction: column; text-align: center; }
    .hero-check-list { justify-content: center; }
}

/* --- CONSISTENT LAYOUT --- */

/* Hero Detail (Sama dengan Layout Layanan) */
.hero-layanan-detail {
    padding: 100px 0;
    background: #fdfdfd;
}

.hero-layanan-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-layanan-text { flex: 1; }
.hero-layanan-img { flex: 1; text-align: right; }

.hero-layanan-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Card Styling (Sama dengan Halaman Layanan Utama) */
.layanan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.layanan-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.layanan-card:hover { transform: translateY(-5px); }

.layanan-card-img { position: relative; height: 200px; }
.layanan-card-img img { width: 100%; height: 100%; object-fit: cover; }

.layanan-card-content {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
}

/* Price Styling */
.price-tag { margin-bottom: 15px; }
.old-p { text-decoration: line-through; color: #999; font-size: 0.9rem; margin-right: 10px; }
.new-p { color: #056155; font-size: 1.4rem; font-weight: 800; }

.btn-layan {
    display: inline-block;
    background: #00332a;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: auto;
}

.btn-layan.featured { background: #056155; }

/* Responsif */
@media (max-width: 768px) {
    .hero-layanan-flex { flex-direction: column; text-align: center; }
    .hero-layanan-img { order: -1; }
}

/* Container & Grid */
.layanan-section-modern { padding: 80px 0; background: #fff; }
.layanan-grid-v3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* Base Card V3 */
.card-v3 {
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

/* Warna Blok */
.light-green { background-color: #f1f8f6; color: #00332a; }
.dark-green { background-color: #00332a; color: #fff; }

/* Text Styling */
.pkg-name { font-size: 1.5rem; font-weight: 800; margin-bottom: 25px; }
.pkg-info { margin-bottom: 20px; }
.pkg-info h4 { font-size: 0.9rem; margin-bottom: 5px; opacity: 0.8; }
.pkg-info p { font-size: 1rem; line-height: 1.4; }

/* Pricing Section */
.pkg-pricing { margin-top: auto; padding: 20px 0; border-top: 1px solid rgba(0,51,42,0.1); }
.dark-green .pkg-pricing { border-top: 1px solid rgba(255,255,255,0.1); }

.old-price-strike { text-decoration: line-through; opacity: 0.6; font-size: 0.9rem; }
.save-badge { background: #ff5733; color: #fff; padding: 2px 8px; border-radius: 5px; font-size: 0.75rem; margin-left: 10px; }
.current-price { font-size: 1.4rem; font-weight: 800; margin-top: 5px; }

/* Buttons */
.btn-action {
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}
.btn-action.dark { background: #00332a; color: #fff; }
.btn-action.light { background: #fff; color: #00332a; }

/* Best Seller Badge */
.best-seller-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #056155;
    color: #fff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Sembunyikan submenu secara default */
.mobile-submenu {
    display: none;
    list-style: none;
    padding-left: 20px;
    background: #f9f9f9;
}

/* Munculkan saat parent memiliki class active */
.mobile-dropdown.active .mobile-submenu {
    display: block;
}

.mobile-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-arrow {
    padding: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}
/* Container logo agar tetap di tengah/kiri sesuai desain */
.branding {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Ubah ke 'center' jika ingin logo di tengah */
}

/* Target langsung ke class footer-logo pada HTML Anda */
.footer-logo {
    width: 100px !important;    /* Ukuran wajib sama antara lebar dan tinggi */
    height: 100px !important;   /* Wajib sama */
    border-radius: 50% !important; /* Membuat bulat */
    object-fit: cover !important;  /* Memotong gambar agar tidak gepeng */
    background-color: #fff;        /* Memberi background jika logo transparan */
    border: 2px solid #eee;        /* Garis pinggir halus */
    padding: 5px;                  /* Ruang antara logo dan border */
    display: block;
    margin-bottom: 20px;
}

/* --- 1. Container Utama --- */
.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* Memberi ruang agar panah tidak keluar layar */
}

/* --- 2. Area Kartu (Slider) --- */
.layanan-grid-v3 {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 40px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.layanan-grid-v3::-webkit-scrollbar { display: none; }

/* --- Base Card Style dengan Efek Zoom --- */
.card-v3 {
    flex: 0 0 320px;
    border-radius: 25px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    min-height: 550px;
    text-align: center;
    border: none;
    /* Transisi halus untuk efek zoom */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    cursor: pointer;
}

/* --- Efek Zoom pada Desktop (Hover) --- */
@media (min-width: 769px) {
    .card-v3:hover {
        transform: scale(1.05); /* Membesar 5% saat disentuh kursor */
        z-index: 10;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
}

/* --- Efek Zoom pada Mobile (Focus Center) --- */
@media (max-width: 768px) {
    .layanan-grid-v3 {
        padding: 50px 20px; /* Tambah padding atas-bawah agar zoom tidak terpotong */
        scroll-snap-type: x mandatory; /* Membuat geseran magnetis agar kartu berhenti di tengah */
    }

    .card-v3 {
        flex: 0 0 85%; /* Kartu utama memenuhi 85% layar */
        scroll-snap-align: center; /* Kartu akan otomatis berhenti di tengah */
        transform: scale(0.9); /* Kartu yang tidak fokus akan sedikit mengecil */
        opacity: 0.8;
        transition: transform 0.5s ease, opacity 0.5s ease;
    }

    /* Saat kartu berada di tengah layar (menggunakan bantuan JS nanti) */
    .card-v3.is-focused {
        transform: scale(1); /* Kembali ke ukuran normal (terlihat membesar dari yang lain) */
        opacity: 1;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
}

/* --- 4. Warna Zebra (Ganjil: Muda, Genap: Tua) --- */
.layanan-grid-v3 .card-v3:nth-child(odd) {
    background-color: #e8f3ee !important; 
}
.layanan-grid-v3 .card-v3:nth-child(odd) .pkg-name,
.layanan-grid-v3 .card-v3:nth-child(odd) .pkg-info p,
.layanan-grid-v3 .card-v3:nth-child(odd) .current-price {
    color: #1b4332 !important; 
}
.layanan-grid-v3 .card-v3:nth-child(odd) .btn-action {
    background-color: #1b4332;
    color: white;
}

.layanan-grid-v3 .card-v3:nth-child(even) {
    background-color: #1b4332 !important; 
}
.layanan-grid-v3 .card-v3:nth-child(even) .pkg-name,
.layanan-grid-v3 .card-v3:nth-child(even) .pkg-info p,
.layanan-grid-v3 .card-v3:nth-child(even) .current-price {
    color: #ffffff !important; 
}
.layanan-grid-v3 .card-v3:nth-child(even) .pkg-info h4 {
    color: #b7e4c7 !important; 
}
.layanan-grid-v3 .card-v3:nth-child(even) .btn-action {
    background-color: #ffffff;
    color: #1b4332;
}

/* --- 5. Teks & Deskripsi --- */
.pkg-info { margin-bottom: 15px; }
.pkg-info h4 { font-size: 1rem; font-weight: bold; margin-bottom: 5px; }
.pkg-info p { font-size: 0.9rem; line-height: 1.5; }
.pkg-pricing { margin-top: auto; padding-top: 15px; }

/* --- 6. Perbaikan Panah (Besar & Pas di Kolong) --- */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px; /* Ukuran pas (tidak kecil) */
    height: 50px;
    background: #2d6a4f !important;
    color: white !important;
    border: 3px solid white !important; /* Agar terlihat jelas di bg kartu */
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.nav-btn:hover { background: #1b4332 !important; transform: translateY(-50%) scale(1.1); }

/* Posisi Panah agar pas di samping kolong slider */
.prev-btn { left: -10px !important; } 
.next-btn { right: -10px !important; }

/* Responsif Mobile */
@media (max-width: 768px) {
    .nav-btn { display: none; }
    .slider-container { padding: 0 10px; }
}