:root {
    --primary: #009dd1;
    --secondary: #2ecc71; 
    --dark: #003a4d;
    --text-gray: #666;
    --bg-light: #f9f9f9;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; scroll-behavior: smooth; }
body { overflow-x: hidden; background: #fff; line-height: 1.6; }

/* --- HEADER & NAV --- */
header {
    background-color: var(--dark); height: 75px; display: flex;
    justify-content: space-between; align-items: center; padding: 0 8%;
    position: sticky; top: 0; z-index: 2000; color: white;
}
.logo { font-size: 1.3rem; font-weight: 800; text-decoration: none; color: white; display: flex; align-items: center; gap: 10px; }
nav .nav-links { display: flex; list-style: none; gap: 25px; align-items: center; }

/* HOVER UNDERLINE HEADER */
nav .nav-links li a { 
    color: white; text-decoration: none; font-size: 0.85rem; opacity: 0.8; 
    position: relative; padding: 5px 0; transition: var(--transition);
}
nav .nav-links li a::after {
    content: ''; position: absolute; width: 0; height: 2px; bottom: 0;
    left: 50%; background-color: var(--primary); transition: var(--transition); transform: translateX(-50%);
}
nav .nav-links li a:hover { opacity: 1; color: var(--primary); }
nav .nav-links li a:hover::after { width: 100%; }

/* BUTTONS HOVER EFFECT */
.btn-login, .btn-hero, .btn-detail, .btn-reg, .btn-send, .btn-map {
    transition: var(--transition) !important; cursor: pointer;
}
.btn-login:hover, .btn-hero:hover, .btn-detail:hover, .btn-reg:hover, .btn-send:hover, .btn-map:hover {
    transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); filter: brightness(1.1);
}
.btn-login { background-color: var(--primary); padding: 8px 18px !important; border-radius: 4px; font-weight: bold; opacity: 1 !important; }
.btn-login::after { display: none; }

/* --- SEARCH OVERLAY --- */
.search-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 58, 77, 0.98); display: flex; justify-content: center; align-items: center;
    z-index: 3000; opacity: 0; visibility: hidden; transition: var(--transition);
}
.search-overlay.active { opacity: 1; visibility: visible; }
.search-container input { width: 80%; max-width: 600px; background: transparent; border: none; border-bottom: 3px solid var(--primary); padding: 15px; font-size: 2rem; color: white; outline: none; text-align: center; }
.close-search { position: absolute; top: 30px; right: 5%; font-size: 2.5rem; color: white; cursor: pointer; }

/* --- HERO --- */
.hero {
    height: 600px; background: linear-gradient(rgba(0,58,77,0.6), rgba(0,58,77,0.7)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1500&q=80');
    background-size: cover; background-position: center; display: flex; flex-direction: column; justify-content: center; padding: 0 10%; color: white;
}
.hero h1 { font-size: 3rem; max-width: 800px; line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; }
.hero h1 span { color: var(--primary); }
.btn-hero { background: var(--primary); color: white; padding: 15px 25px; text-decoration: none; font-weight: bold; border-radius: 4px; display: inline-flex; align-items: center; gap: 10px; margin-top: 10px; }

/* --- FEATURES --- */
.features { padding: 70px 10%; text-align: center; background: var(--bg-light); }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.feature-item { background: white; padding: 30px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
.icon-circle { width: 60px; height: 60px; background: var(--dark); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.4rem; color: var(--primary); margin: 0 auto 20px; }

/* --- PROPERTY SECTION --- */
.section-title { text-align: center; margin-bottom: 40px; font-size: 2rem; color: var(--dark); }
.property-section { padding: 80px 10%; }
.property-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: var(--transition); }
.card:hover { transform: translateY(-10px); }
.card-img { height: 250px; background-size: cover; background-position: center; position: relative; }
.card-body { padding: 25px; }
.price-tag { color: var(--primary); font-weight: 800; font-size: 1.2rem; }
.agro-badge { position: absolute; top: 15px; left: 15px; background: var(--secondary); color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: bold; }
.btn-detail { display: inline-block; margin-top: 15px; background: var(--primary); color: white; padding: 10px 25px; text-decoration: none; border-radius: 4px; font-size: 0.9rem; font-weight: 600; }

/* --- MARKETER SECTION --- */
.marketer-section { padding: 80px 10%; background: var(--bg-light); text-align: center; }
.marketer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 30px; }
.marketer-card { background: white; padding: 30px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); transition: var(--transition); }
.marketer-card img { width: 80px; height: 80px; border-radius: 50%; margin-bottom: 15px; border: 3px solid var(--primary); object-fit: cover; }

/* --- REGISTRATION MARKETER --- */
.reg-section { padding: 80px 10%; background: var(--dark); color: white; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.reg-box { background-color: var(--dark); color: white; padding: 50px; border-radius: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.reg-form { background: rgba(255,255,255,0.05); padding: 30px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.1); }
.reg-form input, .reg-form select, .reg-form textarea { width: 100%; margin-bottom: 15px; padding: 12px; border-radius: 6px; border: none; font-size: 0.9rem; }
.btn-reg { width: 100%; background: var(--secondary); color: white; border: none; padding: 12px; border-radius: 6px; font-weight: bold; cursor: pointer; }

/* --- MAP SECTION --- */
.map-section { padding: 80px 10%; background: #fff; text-align: center; }
.map-container { width: 100%; height: 450px; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); margin-top: 30px; }
.map-container iframe { width: 100%; height: 100%; border: none; }
.btn-map { display: inline-flex; align-items: center; gap: 10px; background: var(--dark); color: white; padding: 12px 25px; text-decoration: none; border-radius: 50px; margin-top: 20px; font-weight: 600; }

/* --- CONTACT SECTION --- */
.contact-section { padding: 100px 10%; background: var(--bg-light); }
.contact-box { background-color: var(--dark); color: white; padding: 50px; border-radius: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-box input, .contact-box textarea { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 12px; border-radius: 8px; color: white; width: 100%; margin-bottom: 15px; outline: none; }
.btn-send { background: var(--primary); color: white; border: none; padding: 15px; border-radius: 8px; font-weight: bold; width: 100%; }

/* --- FOOTER --- */
footer { background-color: #002531; color: white; padding: 60px 10% 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-links h4 { margin-bottom: 20px; color: var(--primary); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; opacity: 0.7; cursor: pointer; font-size: 0.9rem; transition: var(--transition); }
.footer-links li:hover { opacity: 1; color: var(--primary); padding-left: 5px; }

/* --- RESPONSIVE --- */
.burger { display: none; cursor: pointer; }
.burger div { width: 25px; height: 3px; background: white; margin: 5px; transition: var(--transition); }

@media screen and (max-width: 1024px) {
    .burger { display: block; z-index: 3100; }
    .nav-links { position: fixed; right: 0; top: 0; height: 100vh; width: 75%; background: var(--dark); flex-direction: column; justify-content: center; transform: translateX(100%); transition: var(--transition); z-index: 3000; }
    .nav-active { transform: translateX(0); }
    .nav-links li a::after { display: none; }
    .reg-section, .contact-box, .footer-grid { grid-template-columns: 1fr; }
    .marketer-grid { grid-template-columns: 1fr; }
    .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .toggle .line2 { opacity: 0; }
    .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
}

#map { 
    width: 100%; 
    height: 450px; 
    border-radius: 20px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    z-index: 1; /* Pastikan z-index lebih rendah dari header/dropdown */
}

/* CSS Tambahan untuk Social Media Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 157, 209, 0.4);
}

.social-link.facebook:hover { background: #3b5998; }
.social-link.instagram:hover { background: #e4405f; }
.social-link.youtube:hover { background: #cd201f; }
.social-link.whatsapp:hover { background: #25d366; }

.footer-links ul li {
    list-style: none;
    margin-bottom: 12px;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links ul li:hover {
    opacity: 1;
    padding-left: 8px;
    color: var(--primary);
}

/* BACK TO TOP STYLES */
#backToTop {
    display: none; /* Sembunyi secara default */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2500;
    border: none;
    outline: none;
    background-color: var(--primary);
    color: white;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
}

#backToTop:hover {
    background-color: var(--dark);
    transform: translateY(-5px);
}

/* Animasi muncul */
#backToTop.show {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* WHATSAPP FLOAT STYLE */
.wa-float {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Di sebelah kiri agar tidak tabrakan dengan Back to Top */
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 2500;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

/* Efek denyut halus */
.wa-float {
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.wa-float:hover {
    background-color: #128c7e;
    transform: scale(1.05) translateY(-5px);
    color: white;
}

.wa-float i {
    font-size: 1.5rem;
}

/* Container Tombol */
.overlay-buttons {
    display: flex;
    gap: 10px; /* Jarak antar tombol */
    justify-content: center;
    margin-top: 15px;
    width: 100%;
}

/* Base Style Tombol Modern */
.btn-wa-modern, .btn-detail-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1; /* Membuat kedua tombol memiliki lebar yang sama */
    color: white !important;
    text-decoration: none !important;
    padding: 8px 12px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border: none;
    white-space: nowrap;
}

/* Tombol WhatsApp (Hijau) */
.btn-wa-modern {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

/* Tombol Detail (Biru atau Gelap) */
.btn-detail-modern {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

/* Icon Circle di dalam tombol */
.icon-circle-wa {
    background: rgba(255, 255, 255, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.icon-circle-wa i {
    font-size: 12px;
}

/* Efek Hover */
.btn-wa-modern:hover, .btn-detail-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.btn-wa-modern:hover {
    background: linear-gradient(135deg, #2ae06d 0%, #14a090 100%);
}

.btn-detail-modern:hover {
    background: linear-gradient(135deg, #4aa3df 0%, #2e8ece 100%);
}

/* Responsif: Jika layar sangat kecil, tombol jadi bertumpuk */
@media (max-width: 350px) {
    .overlay-buttons {
        flex-direction: column;
    }
}

/* Penyesuaian Back to Top (Agar tetap di kanan) */
#backToTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2500;
    background-color: var(--primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
}

#backToTop.show {
    display: block;
}

#backToTop:hover {
    background-color: var(--dark);
    transform: translateY(-5px);
}

/* Responsif Mobile: Sembunyikan teks "Chat Kami" di layar sangat kecil agar tidak sempit */
@media screen and (max-width: 480px) {
    .wa-float span { display: none; }
    .wa-float { padding: 12px; border-radius: 50%; }
}

/* ============== */
/* Hero */
/* ============== */
.hero-slideshow {
    position: relative;
    overflow: hidden;
}

.heroSwiper .swiper-slide {
    height: 500px;
    /* height: 100%; */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 0 10%;
    box-sizing: border-box;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.hero-content h1 span {
    color: var(--primary);
}
.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Custom pagination for hero */
.hero-pagination.swiper-pagination-bullets {
    bottom: 20px !important;
    text-align: center;
    left: 0;
    width: 100%;
}
.hero-pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,0.7);
    opacity: 1;
}
.hero-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
}

/* Responsif untuk teks hero */
@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}
@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
    .hero-buttons .btn-hero {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}
/* ===================== */

/* ========================= */
/* Pilihan Kavling Produktif */
/* ========================= */

.kebun-section {
    padding: 70px 10%;
    /* padding: 80px 0; */
    background-color: #fff;
}

.kebun-grid-dual {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Kolom Berdampingan */
    gap: 30px; /* Jarak antar kartu */
    margin-top: 40px;
}

.kebun-card-overlay {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10; /* Menjaga bentuk Landscape */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.kebun-card-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.kebun-card-overlay:hover img {
    transform: scale(1.1);
}

/* Layer Overlay */
.kebun-full-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.kebun-info-content h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.kebun-info-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

/* Harga & Tombol */
.price-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
}

.price-tag {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffd700;
}

.btn-detail-mini {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-detail-mini:hover {
    background: white;
    color: var(--dark);
    transform: translateY(-3px);
}

.badge-status {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #25d366; /* Warna Hijau WA agar segar */
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Responsif Mobile */
@media screen and (max-width: 900px) {
    .kebun-grid-dual {
        grid-template-columns: 1fr; /* Jadi satu baris di tablet & HP */
    }
    .kebun-card-overlay {
        aspect-ratio: 16 / 9; /* Sedikit lebih lebar di HP */
    }
}
/* ========================== */

/* ===================== */
/* Swiper */
/* ===================== */
/* Tampilan Portrait Marketer */
.marketer-portrait {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4; /* Membuat foto portrait sempurna */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.marketer-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Foto memenuhi area portrait tanpa gepeng */
    transition: transform 0.5s ease;
}

.marketer-portrait:hover img {
    transform: scale(1.1); /* Efek zoom halus saat disentuh */
}

/* Layer Keterangan di Kiri Bawah */
.marketer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8)); /* Gradasi agar teks terbaca */
    color: white;
    text-align: left; /* Rata kiri */
}

.marketer-overlay h4 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: bold;
    color: #fff;
}

.marketer-overlay p {
    font-size: 0.9rem;
    margin: 5px 0 0;
    opacity: 0.9;
    color: var(--primary); /* Memberi aksen warna biru pada jabatan */
}

.marketerSwiper {
    padding-bottom: 50px;
}
/* ==================================== */

/* ======= */
/* Youtube */
/* ======= */
.youtube-section {
    padding: 80px 10%;
    background-color: #fff;
}

.youtubeSwiper {
    padding: 20px 0 50px;
}

.video-card {
    background: #fdfdfd;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    height: 100%;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.video-info p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Custom Navigation Colors */
.yt-next, .yt-prev {
    color: var(--primary) !important;
}

.yt-pagination .swiper-pagination-bullet-active {
    background: var(--primary) !important;
}
/* ==================================== */

/* =========== */
/* Galeri Foto */
/* =========== */
.gallery-section {
    padding: 70px 10%; 
    /* padding: 80px 0; */
    background-color: #f9f9f9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 200px; /* Tinggi dasar baris */
    grid-auto-flow: dense; /* Kunci untuk mengisi celah kosong secara otomatis */
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Variasi Ukuran Acak */
.gallery-item.tall {
    grid-row: span 2; /* Menghabiskan 2 baris ke bawah */
}

.gallery-item.wide {
    grid-column: span 2; /* Menghabiskan 2 kolom ke samping */
}

.gallery-item.big {
    grid-row: span 2;
    grid-column: span 2; /* Menghabiskan 2 baris dan 2 kolom */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Efek Hover */
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Responsif Mobile */
@media screen and (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        grid-auto-rows: 150px;
    }
    .gallery-item.wide, .gallery-item.big {
        grid-column: span 2;
    }
}
/* ===================================== */

/* Gallery =========== */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Menjaga proporsi foto tetap bagus */
    display: block;
}
/* =================== */

/* Load more =============== */
#load-more, #load-more-marketer, #load-more-plot, #load-more-doc {
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    display: block;
    margin: 40px auto; /* Membuat tombol di tengah */
}

#load-more:hover, #load-more-marketer:hover, #load-more-plot:hover, #load-more-doc:hover {
    background: #2ecc71; /* Warna hijau terang saat hover */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* ======================================= */

/* Marketer Profile */
.marketer-banner {
    background: #102B4B; /* Warna tema Anda */
    padding: 30px 20px;
    text-align: center;
    border-bottom: 4px solid var(--primary);
}

.container-profile {
    max-width: 800px;
    margin: 0 auto;
}

.profile-frame {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
    overflow: hidden;
    margin: 0 auto 15px;
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.profile-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h1 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.profile-info p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.profile-info span {
    color: #ffd700; /* Warna gold untuk tipe marketer */
    font-weight: bold;
}
/* =================== */

/* Share Link */
.share-container {
    margin-top: 20px;
    text-align: center;
}

.share-container p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.share-btn.whatsapp { background: #25d366; }
.share-btn.facebook { background: #1877f2; }
.share-btn.copy { background: #6c757d; }

.share-btn:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
    box-shadow: 0 8px 15px rgba(0,0,0,0.4);
}

/* Tooltip sukses copy */
.share-btn.copy.success {
    background: #28a745;
}
/* ======================= */

/* Document Gallery */
/* Document Section Styles */
.document-section {
    padding: 80px 6%;
    background-color: #f8fafc; /* Warna background tipis agar kontras */
}

.document-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.document-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.document-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.doc-icon-box {
    height: 120px;
    background: var(--primary); /* Menggunakan warna brand Anda */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
}

.doc-icon-box i {
    font-size: 3rem;
    color: white;
}

.doc-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    backdrop-filter: blur(5px);
}

.doc-info small {
    color: var(--secondary);
    font-weight: bold;
    letter-spacing: 1px;
}

.doc-info h3 {
    font-size: 1.1rem;
    margin: 5px 0 10px;
    color: var(--dark);
}

.doc-info p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.doc-actions {
    display: flex;
    gap: 10px;
}

.btn-doc {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}

.btn-doc.view {
    background: #eef2f7;
    color: var(--primary);
}

.btn-doc.download {
    background: var(--primary);
    color: white;
}

.btn-doc:hover {
    filter: brightness(0.9);
}

@media (max-width: 768px) {
    .document-section { padding: 50px 20px; }
}