/* ===================================================== */
/* WEBSITE JASA SUPIR - STYLE.CSS FINAL                 */
/* ===================================================== */

/* CSS VARIABLES (TEMA WARNA) */
:root {
    --primary: orange;
    --accent: #6cf6fe;
    --bg-main: #0f0f0f;
    --bg-card: #151515;
    --bg-dark: #111;
    --text-main: #ffffff;
    --text-muted: #cccccc;
    --font-stack: Arial, sans-serif;
}

/* ===================================================== */
/* RESET & BASE STYLES */
/* ===================================================== */
* { 
    box-sizing: border-box; 
    scroll-behavior: smooth; 
}

html { 
    font-size: 16px; 
}

body { 
    margin: 0; 
    font-family: var(--font-stack); 
    background-color: var(--bg-main); 
    color: var(--text-main); 
    overflow-x: hidden; 
}

section { 
    scroll-margin-top: 80px; 
}

#home-view { 
    scroll-margin-top: 0; 
}

a { 
    color: inherit; 
    text-decoration: none; 
}

/* ===================================================== */
/* NAVBAR */
/* ===================================================== */
.navbar {
    background: var(--bg-dark);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.navbar h1 { 
    font-size: 20px; 
    margin: 0; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    color: var(--text-main); 
}

.navbar a { 
    margin-left: 20px; 
    font-size: 14px; 
    transition: color 0.3s; 
    cursor: pointer; 
    white-space: nowrap; 
    color: var(--text-main); 
}

.navbar a:hover { 
    color: var(--primary); 
}

/* ===================================================== */
/* HERO SLIDER */
/* ===================================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 55px);
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    opacity: 0; 
    transition: opacity 1s ease-in-out;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    z-index: 1;
}

.hero-slide.active { 
    opacity: 1; 
    z-index: 2; 
}

.hero-bg {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background-size: cover; 
    background-position: center;
    filter: brightness(0.6);
    transform: scale(1.1);
    transition: transform 6s linear;
}

.hero-slide.active .hero-bg { 
    transform: scale(1); 
}

.hero-overlay {
    position: relative; 
    z-index: 3;
    padding: 0 20px; 
    max-width: 900px;
    display: flex; 
    flex-direction: column; 
    align-items: center;
}

.hero-logo {
    width: 150px; 
    height: 150px; 
    margin-bottom: 20px;
    fill: none; 
    stroke: var(--accent) !important;
    stroke-width: 1.5; 
    stroke-linecap: round; 
    stroke-linejoin: round;
    filter: drop-shadow(0 0 10px var(--accent));
}

.hero-tag {
    display: inline-block; 
    background: transparent; 
    color: var(--accent);
    padding: 5px 15px; 
    border-radius: 20px; 
    font-weight: bold; 
    font-size: 18px;
    margin-bottom: 0px; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

.hero h2 { 
    font-size: 40px; 
    margin-bottom: 10px; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8); 
    line-height: 1.2; 
    color: var(--text-main); 
}

.hero-title-large {
    font-size: 46px; 
    font-weight: bold; 
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8); 
    line-height: 1.2;
    color: var(--text-main);
}

.hero p { 
    font-size: 16px; 
    color: var(--text-muted); 
    margin-bottom: 25px; 
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8); 
    max-width: 700px; 
}

.btn {
    padding: 12px 25px; 
    background-color: var(--primary); 
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 25px; 
    font-weight: bold; 
    display: inline-block; 
    cursor: pointer;
    font-size: 14px; 
    transition: all 0.3s; 
    text-shadow: none; 
    margin-top: 10px;
}

.btn:hover {
    background-color: #ffffff; 
    color: var(--primary);
    transform: translateY(-2px);
}

.hero-dots {
    position: absolute; 
    bottom: 30px; 
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 10;
    display: flex; 
    gap: 10px;
}

.h-dot { 
    width: 12px; 
    height: 12px; 
    background: rgba(255,255,255,0.5); 
    border-radius: 50%; 
    cursor: pointer; 
    transition: 0.3s; 
}

.h-dot.active { 
    background: var(--primary); 
    transform: scale(1.3); 
}

/* ===================================================== */
/* TENTANG KAMI - DENGAN OUTER GLOW */
/* ===================================================== */
.tentang { 
    padding: 40px 20px; 
    background: var(--bg-main); 
}

.tentang-box { 
    max-width: 1300px; 
    margin: 0 auto; 
    background: var(--bg-card); 
    padding: 25px; 
    border-radius: 20px; 
    border: 2px solid rgba(255, 165, 0, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tentang-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 165, 0, 0.2);
}

.tentang h2 { 
    text-align: center; 
    color: var(--primary); 
    margin-bottom: 30px; 
    font-size: 32px;
}

.tentang-content {
    color: var(--text-main);
    line-height: 1.8;
    font-size: 16px;
}

/* ⭐ PERBAIKAN: Spacing konsisten dengan info-content */
.tentang-content p,
.tentang-content div,
.tentang-content span,
.tentang-content font {
    color: var(--text-main) !important;
    margin-bottom: 20px !important;
    text-align: center;
    line-height: 1.8;
}

/* Hapus warna orange dari HTML */
.tentang-content p[style*="color"],
.tentang-content div[style*="color"],
.tentang-content span[style*="color"],
.tentang-content font[color] {
    color: var(--text-main) !important;
}

/* Paragraf terakhir sebelum list */
.tentang-content p:last-of-type {
    margin-bottom: 25px !important;
}

/* List styling */
.tentang-content ul,
.tentang-content ol {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 25px;
    margin-top: 25px;
}

.tentang-content li {
    color: var(--text-main) !important;
    margin-bottom: 12px;
    line-height: 1.8;
    padding-left: 5px;
}

/* Hapus custom bullet */
.tentang-content li::before {
    content: none !important;
}

.tentang-content strong,
.tentang-content b {
    color: var(--primary);
    font-weight: bold;
    display: block;
    margin-top: 25px;
    margin-bottom: 20px;
}

/* ===================================================== */
/* INFO SECTION (KIRI & KANAN) - PERBAIKAN FINAL */
/* ===================================================== */
.info-section { 
    padding: 20px 20px 20px; 
    background: var(--bg-main); 
}

.info-grid { 
    max-width: 1300px;  /* ✅ SAMA DENGAN LAYANAN-CONTAINER */
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px; 
}

.info-box { 
    background: var(--bg-card); 
    padding: 20px; 
    border-radius: 20px; 
    border: 2px solid rgba(255, 165, 0, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 165, 0, 0.2);
}

.info-box h3 { 
    color: var(--primary); 
    margin-bottom: 25px; 
    font-size: 24px;
    text-align: center;
}

.info-content {
    color: var(--text-main) !important;
    line-height: 1.8;
    font-size: 15px;
}

/* ⭐ PERBAIKAN: Paksa semua teks jadi putih dengan spacing konsisten */
.info-content p,
.info-content div,
.info-content span,
.info-content font {
    color: var(--text-main) !important;
    margin-bottom: 20px !important;
    text-align: justify;
    line-height: 1.8;
}

/* Hapus warna orange yang dipaksa dari HTML */
.info-content p[style*="color"],
.info-content div[style*="color"],
.info-content span[style*="color"],
.info-content font[color] {
    color: var(--text-main) !important;
}

/* Paragraf terakhir sebelum list atau elemen lain */
.info-content p:last-of-type {
    margin-bottom: 25px !important;
}

/* List dengan bullet biasa (•) */
.info-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 25px;
    margin-top: 25px;
}

.info-content li {
    color: var(--text-main) !important;
    margin-bottom: 6px;   /* ✅ JARAK ANTAR BULLET DIPERKECIL */
    line-height: 1.55;    /* ✅ TINGGI BARIS DIPERKECIL */
    padding-left: 5px;
}

/* Hapus custom bullet checkmark */
.info-content li::before {
    content: none !important;
}

.info-content strong {
    color: var(--primary);
}

/* Jarak konsisten untuk strong/bold text */
.info-content strong,
.info-content b {
    display: block;
    margin-top: 25px;
    margin-bottom: 20px;
}

/* Box Catatan dengan border kiri orange tebal */
.estimasi { 
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 25px; 
    border-radius: 10px; 
    margin-top: 25px; 
    border-left: 5px solid var(--primary);
    border: 2px solid rgba(255, 165, 0, 0.15);
    border-left: 5px solid var(--primary);
}

.estimasi strong {
    color: var(--text-main) !important;
    display: block;
    margin-bottom: 15px;
    margin-top: 0 !important;
    font-size: 15px;
    font-weight: bold;
}

.catatan {
    margin-top: 0;
    line-height: 1.8;
    font-size: 14px;
    color: var(--text-main) !important;
}

/* ⭐ PERBAIKAN: Paksa semua teks di catatan jadi putih dengan spacing konsisten */
.catatan p,
.catatan div,
.catatan span,
.catatan font {
    color: var(--text-main) !important;
    margin-bottom: 15px !important;
    text-align: justify;
    line-height: 1.8;
}

/* Hapus warna orange yang dipaksa dari HTML di catatan */
.catatan p[style*="color"],
.catatan div[style*="color"],
.catatan span[style*="color"],
.catatan font[color] {
    color: var(--text-main) !important;
}

.catatan ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 15px;
    margin-bottom: 0;
}

.catatan li {
    color: var(--text-main) !important;
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Hapus custom bullet di catatan */
.catatan li::before {
    content: none !important;
}

.info-content strong {
    color: var(--primary);
}

/* ⭐ PERBAIKAN PENTING: Box Catatan dengan border kiri orange tebal */
.estimasi { 
    background: rgba(80, 43, 9, 0.3);
    padding: 20px 25px; 
    border-radius: 10px; 
    margin-top: 25px; 
    border-left: 5px solid var(--primary);
    border: 2px solid rgba(255, 165, 0, 0.15);
    border-left: 5px solid var(--primary);
}

.estimasi strong {
    color: var(--text-main);
    display: block;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: bold;
}

.catatan {
    margin-top: 0;
    line-height: 1.7;
    font-size: 14px;
    color: var(--text-main);
}

.catatan p {
    color: var(--text-main) !important;
    margin-bottom: 10px;
    text-align: justify;
}

.catatan ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.catatan li {
    color: var(--text-main) !important;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Hapus custom bullet di catatan */
.catatan li::before {
    content: none !important;
}

/* ===================================================== */
/* LAYANAN SECTION */
/* ===================================================== */
.layanan-section { 
    padding: 20px 20px 5px;  /* ✅ ATAS 20px, BAWAH 60px */
    background: var(--bg-main); 
}

.layanan-section h2 { 
    text-align: center; 
    color: var(--primary); 
    margin-bottom: 15px; 
    font-size: 32px; 
}

.layanan-section .subtitle { 
    text-align: center; 
    color: var(--text-muted); 
    margin-bottom: 50px; 
    font-size: 16px; 
}

.layanan-container { 
    max-width: 1300px; 
    margin: auto; 
}

/* ===================================================== */
/* SLIDER SCROLL WRAPPER */
/* ===================================================== */
.slider-scroll-container { 
    position: relative; 
    overflow: hidden; 
    margin-bottom: 30px; 
}

.slider-scroll-wrapper {
    display: flex; 
    gap: 15px; 
    overflow-x: auto; 
    scroll-behavior: smooth;
    scrollbar-width: none; 
    -ms-overflow-style: none; 
    padding: 10px 0;
}

.slider-scroll-wrapper::-webkit-scrollbar { 
    display: none; 
}

.slider-scroll-btn {
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%);
    background: var(--primary); 
    border: 2px solid var(--primary); 
    color: #000;
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    cursor: pointer; 
    font-size: 20px;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: all 0.3s; 
    z-index: 10;
}

.slider-scroll-btn:hover { 
    background: #000; 
    border-color: var(--primary); 
    color: var(--primary); 
    transform: translateY(-50%) scale(1.1); 
}

.slider-scroll-btn.left { 
    left: 5%; 
}

.slider-scroll-btn.right { 
    right: 5%; 
}

/* ===================================================== */
/* PAKET LAYANAN CARDS */
/* ===================================================== */
.paket-card { 
    min-width: 280px; 
    max-width: 300px; 
    margin-right: 15px; 
    background: linear-gradient(135deg, var(--bg-card) 0%, #252525 100%); 
    border-radius: 20px; 
    padding: 25px; 
    border: 2px solid rgba(255, 165, 0, 0.2); 
    transition: all 0.3s ease; 
    cursor: pointer; 
    flex-shrink: 0; 
    display: flex; 
    flex-direction: column; 
    min-height: 380px; 
}

.paket-card:last-child { 
    margin-right: 0; 
}

.paket-card:hover { 
    transform: translateY(-5px); 
    border-color: var(--primary); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); 
}

.paket-header { 
    text-align: center; 
    margin-bottom: 20px; 
    padding-bottom: 20px; 
    border-bottom: 2px solid rgba(255, 165, 0, 0.3); 
}

.paket-name { 
    font-size: 24px; 
    font-weight: bold; 
    color: var(--primary); 
    margin-bottom: 10px; 
}

.paket-title { 
    font-size: 14px; 
    color: var(--text-muted); 
    margin-bottom: 15px; 
    min-height: 40px; 
}

.paket-price { 
    font-size: 28px; 
    font-weight: bold; 
    color: var(--primary); 
}

.paket-price small { 
    font-size: 14px; 
    color: var(--text-muted); 
}

.paket-desc { 
    color: var(--text-main); 
    font-size: 14px; 
    line-height: 1.6; 
    margin-bottom: 20px; 
    min-height: 60px; 
}

.detail-btn { 
    margin-top: auto; 
    width: 100%; 
    padding: 12px; 
    background: var(--primary); 
    color: #000; 
    border: none; 
    border-radius: 25px; 
    font-weight: bold; 
    cursor: pointer; 
    transition: all 0.3s; 
}

.detail-btn:hover { 
    filter: brightness(0.9); 
    transform: scale(1.05); 
}

/* ===================================================== */
/* GALLERY SECTION */
/* ===================================================== */
.gallery-section { 
    padding: 20px 20px 20px;  /* ✅ BAWAH 20px (lebih dekat) */
    background: var(--bg-main); 
}

.gallery-section h2 { 
    text-align: center; 
    color: var(--primary); 
    margin-bottom: 15px; 
    font-size: 32px; 
}

.gallery-section .subtitle { 
    text-align: center; 
    color: var(--text-muted); 
    margin-bottom: 50px; 
    font-size: 16px; 
}

.gallery-container { 
    max-width: 1300px; 
    margin: auto; 
}

.photo-item { 
    min-width: 200px; 
    height: 200px; 
    position: relative; 
    overflow: hidden; 
    border-radius: 15px; 
    cursor: pointer; 
    background: #1a1a1a; 
    flex-shrink: 0; 
}

.photo-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s ease; 
}

.photo-item:hover img { 
    transform: scale(1.1); 
}

.photo-item::after { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7)); 
    opacity: 0; 
    transition: opacity 0.3s; 
}

.photo-item:hover::after { 
    opacity: 1; 
}

.video-section-title { 
    text-align: center; 
    color: var(--primary); 
    margin-bottom: 30px; 
    margin-top: 60px; 
    font-size: 24px; 
}

.video-item {
    flex: 0 0 auto;
    width: 340px;
    height: 190px;
    border-radius: 15px;
    overflow: hidden;
    background: #1a1a1a;
    border: 2px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s;
    flex-shrink: 0;
}

.video-item:hover { 
    border-color: var(--primary); 
    transform: translateY(-5px); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); 
}

.video-item iframe,
.video-item video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    object-fit: cover;
}

/* ===================================================== */
/* TESTIMONI SECTION */
/* ===================================================== */
.testimoni-section { 
    padding: 20px 20px 40px;  /* ✅ ATAS 20px, BAWAH 60px */
    background: var(--bg-main); 
}

.testimoni-section h2 { 
    text-align: center; 
    color: var(--primary); 
    margin-bottom: 15px; 
    font-size: 32px; 
}

.testimoni-section .subtitle { 
    text-align: center; 
    color: var(--text-muted); 
    margin-bottom: 50px; 
    font-size: 16px; 
}

.testimoni-container { 
    max-width: 1300px; 
    margin: auto; 
}

.testimoni-item { 
    min-width: 310px; 
    max-width: 310px; 
    background: var(--bg-card); 
    padding: 20px; 
    border-radius: 15px; 
    border: 2px solid rgba(255, 165, 0, 0.25);  /* ✅ border lebih tegas */
    flex-shrink: 0; 
    display: flex; 
    flex-direction: column; 
    height: 200px; 
    overflow: hidden; 

    /* ✅ OUTER GLOW */
    box-shadow: 0 0 18px rgba(255, 165, 0, 0.12);
    transition: 0.3s ease;
}


.testimoni-item .stars { 
    color: var(--primary); 
    font-size: 16px; 
    margin-bottom: 8px; 
    flex-shrink: 0; 
}

.testimoni-item p { 
    font-style: italic; 
    color: var(--text-muted); 
    margin-bottom: 12px; 
    flex-grow: 1; 
    line-height: 1.4; 
    font-size: 13px; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    display: -webkit-box; 
    -webkit-line-clamp: 4; 
    -webkit-box-orient: vertical; 
    max-height: 75px; 
}

.testimoni-item .testimoni-author { 
    font-weight: bold; 
    color: var(--primary); 
    text-align: right; 
    font-size: 13px; 
    flex-shrink: 0; 
    margin-top: auto; 
}

.form-testimoni-btn { 
    text-align: center; 
    margin-top: 30px; 
}

.form-testimoni-btn button { 
    padding: 12px 30px; 
    background: transparent; 
    border: 2px solid var(--primary); 
    color: var(--primary); 
    border-radius: 25px; 
    font-weight: bold; 
    cursor: pointer; 
    transition: all 0.3s; 
    font-size: 14px; 
}

.form-testimoni-btn button:hover { 
    background: var(--primary); 
    color: #000; 
}

/* ===================================================== */
/* LIGHTBOX */
/* ===================================================== */
.lightbox { 
    display: none; 
    position: fixed; 
    z-index: 10001; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.95); 
    align-items: center; 
    justify-content: center; 
}

.lightbox.active { 
    display: flex; 
}

.lightbox img { 
    max-width: 90%; 
    max-height: 90%; 
    border-radius: 10px; 
    box-shadow: 0 0 50px rgba(0,0,0,0.5); 
    border: 2px solid var(--primary); 
}

.lightbox-close { 
    position: absolute; 
    top: 30px; 
    right: 40px; 
    font-size: 40px; 
    color: var(--primary); 
    cursor: pointer; 
    background: none; 
    border: none; 
    transition: all 0.3s; 
}

.lightbox-close:hover { 
    transform: rotate(90deg); 
    color: #fff; 
}

.lightbox-nav { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background: rgba(255,255,255, 0.2); 
    border: 2px solid var(--primary); 
    color: var(--primary); 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    cursor: pointer; 
    font-size: 24px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: all 0.3s; 
}

.lightbox-nav:hover { 
    background: var(--primary); 
    color: #000; 
}

.lightbox-prev { 
    left: 30px; 
}

.lightbox-next { 
    right: 30px; 
}

/* ===================================================== */
/* MODAL */
/* ===================================================== */
.modal { 
    display: none; 
    position: fixed; 
    z-index: 10000; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.9); 
    overflow-y: auto; 
}

.modal.active { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 20px; 
}

.modal-content { 
    background: linear-gradient(135deg, var(--bg-card) 0%, #252525 100%); 
    border-radius: 20px; 
    padding: 40px; 
    max-width: 600px; 
    width: 100%; 
    border: 2px solid var(--primary); 
    position: relative; 
    animation: slideDown 0.3s ease; 
    max-height: 90vh; 
    overflow-y: auto; 
}

@keyframes slideDown { 
    from { 
        transform: translateY(-50px); 
        opacity: 0; 
    } 
    to { 
        transform: translateY(0); 
        opacity: 1; 
    } 
}

.modal-close { 
    position: absolute; 
    top: 15px; 
    right: 20px; 
    font-size: 30px; 
    color: var(--primary); 
    cursor: pointer; 
    background: none; 
    border: none; 
    transition: all 0.3s; 
}

.modal-close:hover { 
    transform: rotate(90deg); 
    color: #fff; 
}

.modal-header { 
    text-align: center; 
    margin-bottom: 25px; 
    padding-bottom: 20px; 
    border-bottom: 2px solid rgba(255, 165, 0, 0.3); 
}

.modal-header h3 { 
    color: var(--primary); 
    font-size: 28px; 
    margin-bottom: 10px; 
}

.modal-body { 
    color: var(--text-main); 
    word-wrap: break-word; 
}

.modal-body ul { 
    list-style: none; 
    padding-left: 0; 
}

.modal-body ul li { 
    margin-bottom: 10px; 
    padding-left: 25px; 
    position: relative; 
    line-height:1.6; 
}

.modal-body ul li::before { 
    content: "✓"; 
    position: absolute; 
    left: 0; 
    color: var(--primary); 
    font-weight: bold; 
}

.modal-wa-btn { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 100%; 
    padding: 15px; 
    background: #25D366; 
    color: #fff; 
    text-align: center; 
    text-decoration: none; 
    border-radius: 50px; 
    font-weight: bold; 
    font-size: 16px; 
    transition: all 0.3s; 
    margin-top: 25px; 
    gap: 10px; 
}

.modal-wa-btn:hover { 
    background: #128C7E; 
    transform: scale(1.02); 
    color: #fff; 
}

/* ===================================================== */
/* FORM STYLES */
/* ===================================================== */
.form-group { 
    margin-bottom: 20px; 
}

.form-group label { 
    display: block; 
    margin-bottom: 8px; 
    color: var(--text-muted); 
}

.form-group input, 
.form-group textarea { 
    width: 100%; 
    padding: 12px; 
    background: #111; 
    border: 1px solid #333; 
    border-radius: 8px; 
    color: #fff; 
    font-family: inherit; 
}

.rating-input { 
    display: flex; 
    gap:5px; 
    font-size: 24px; 
    color: #555; 
    cursor: pointer; 
}

.rating-input span.active { 
    color: var(--primary); 
}

.submit-testimoni { 
    width: 100%; 
    padding: 12px; 
    background: var(--primary); 
    color: #000; 
    border: none; 
    border-radius: 25px; 
    font-weight: bold; 
    cursor: pointer; 
    transition: all 0.3s; 
}

.submit-testimoni:hover { 
    filter: brightness(0.9); 
}

/* ===================================================== */
/* KONTAK & ARTIKEL VIEW */
/* ===================================================== */
#kontak-view, 
#artikel-view { 
    display: none; 
    padding: 40px 20px 100px; 
    min-height: 100vh; 
    background: var(--bg-main); 
    animation: fadeIn 0.5s ease; 
}

@keyframes fadeIn { 
    from { 
        opacity: 0; 
    } 
    to { 
        opacity: 1; 
    } 
}

.contact-container { 
    max-width: 800px; 
    margin: auto; 
    background: var(--bg-card); 
    padding: 40px; 
    border-radius: 20px; 
    border: 2px solid rgba(255, 165, 0, 0.3); 
    text-align: center; 
}

.contact-container h2 { 
    color: var(--primary); 
    font-size: 32px; 
    margin-bottom: 20px; 
    border-bottom:1px solid #333; 
    padding-bottom: 20px; 
}

.contact-info-block { 
    text-align: left; 
    margin-top: 30px; 
    line-height: 1.8; 
    color: var(--text-main); 
}

.contact-info-block h3 { 
    color: var(--primary); 
    font-size: 18px; 
    margin-top: 25px; 
    margin-bottom: 10px; 
}

.contact-note { 
    background: #222; 
    padding: 20px; 
    border-radius: 10px; 
    border-left: 4px solid var(--primary); 
    margin: 30px 0; 
    font-size: 14px; 
    color: var(--text-muted); 
    text-align: left; 
    font-style: italic; 
}

.contact-map-btn { 
    display: inline-block; 
    margin-top: 30px; 
    padding: 15px 30px; 
    background: var(--primary); 
    color: #000; 
    border-radius: 30px; 
    font-weight: bold; 
    text-decoration: none; 
    transition: 0.3s; 
}

.contact-map-btn:hover { 
    filter: brightness(0.9); 
    transform: scale(1.05); 
}

.back-home-btn { 
    margin-top: 40px; 
    background: transparent; 
    border: 2px solid #555; 
    color: var(--text-muted); 
    padding: 10px 20px; 
    border-radius: 20px; 
    cursor: pointer; 
    transition: 0.3s; 
}

.back-home-btn:hover { 
    border-color: var(--primary); 
    color: var(--primary); 
}

/* ===================================================== */
/* ARTIKEL */
/* ===================================================== */
.artikel-container { 
    max-width: 1400px; 
    margin: auto; 
    background: var(--bg-card); 
    padding: 40px; 
    border-radius: 20px; 
    border: 2px solid rgba(255, 165, 0, 0.3); 
}

.artikel-container h2 { 
    color: var(--primary); 
    font-size: 32px; 
    margin-bottom: 30px; 
    border-bottom: 1px solid #333; 
    padding-bottom: 20px; 
    text-align: center; 
}

.artikel-split { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
    margin-bottom: 60px; 
}

.artikel-content { 
    padding: 20px; 
    overflow-y: auto; 
    max-height: 500px; 
}

.artikel-content::-webkit-scrollbar { 
    width: 8px; 
}

.artikel-content::-webkit-scrollbar-track { 
    background: #222; 
    border-radius: 10px; 
}

.artikel-content::-webkit-scrollbar-thumb { 
    background: var(--primary); 
    border-radius: 10px; 
}

.artikel-content::-webkit-scrollbar-thumb:hover { 
    filter: brightness(0.9); 
}

.artikel-image { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    overflow: hidden; 
    border-radius: 15px; 
}

.artikel-image img { 
    width: 100%; 
    height: auto; 
    max-height: 500px; 
    object-fit: cover; 
    border-radius: 15px; 
    border: 2px solid rgba(255, 165, 0, 0.2); 
    transition: transform 0.3s ease; 
}

.artikel-image img:hover { 
    transform: scale(1.03); 
}

.artikel-title { 
    color: var(--primary); 
    font-size: 24px; 
    margin-bottom: 20px; 
    padding-bottom: 10px; 
    border-bottom: 2px solid rgba(255, 165, 0, 0.3); 
}

.artikel-text { 
    color: var(--text-main); 
    line-height: 1.8; 
    font-size: 16px; 
    margin-bottom: 20px; 
}

.artikel-text ul { 
    padding-left: 20px; 
    margin-bottom: 20px; 
}

.artikel-text ul li { 
    margin-bottom: 10px; 
    color: var(--text-main); 
    line-height: 1.6; 
}

.artikel-separator { 
    height: 2px; 
    background: linear-gradient(90deg, transparent, var(--primary), transparent); 
    margin: 40px 0; 
}

.artikel-nav { 
    display: flex; 
    justify-content: space-between; 
    margin-top: 40px; 
    padding-top: 20px; 
    border-top: 1px solid #333; 
}

.artikel-nav-btn { 
    padding: 10px 25px; 
    background: transparent; 
    border: 2px solid var(--primary); 
    color: var(--primary); 
    border-radius: 25px; 
    cursor: pointer; 
    transition: all 0.3s; 
    font-weight: bold; 
}

.artikel-nav-btn:hover { 
    background: var(--primary); 
    color: #000; 
}

/* ===================================================== */
/* FOOTER */
/* ===================================================== */
.footer { 
    background: #271701;  /* ✅ Orange */
    padding: 20px 20px; 
    border-top: 1px solid #20050e;  /* Border lebih gelap dari orange */
    color: #000000;  /* ✅ Text hitam agar kontras dengan background orange */
    text-align: center;
}

.footer-logo { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    font-size: 20px; 
    color: var(--text-main); 
    margin-bottom: 10px; 
}

.footer-logo svg { 
    width: 28px; 
    height: 28px; 
    fill: none; 
    stroke: var(--text-main); 
    stroke-width: 2; 
    stroke-linecap: round; 
    stroke-linejoin: round; 
}

.footer-tagline { 
    color: var(--text-muted); 
    margin-bottom: 10px; 
    font-size: 13px; 
}

.footer-copyright { 
    color: var(--text-muted); 
    font-size: 12px; 
}

.footer-copyright a { 
    color: var(--primary); 
}

/* ===================================================== */
/* FLOATING WHATSAPP BUTTONS */
/* ===================================================== */
.wa-left, 
.wa-right { 
    position: fixed; 
    bottom: 25px; 
    z-index: 9999; 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35); 
    transition: transform .3s; 
    font-weight: bold; 
    border: none; 
    cursor: pointer; 
    text-decoration: none; 
}

.wa-left:hover, 
.wa-right:hover { 
    transform: scale(1.05); 
}

.wa-left { 
    left: 25px; 
    padding: 14px 24px; 
    border-radius: 50px; 
    display: flex; 
    align-items: center; 
    font-size: 15px; 
    background: #03f896; 
    color: #000000; 
}

.wa-right { 
    right: 25px; 
    padding: 14px 24px; 
    border-radius: 50px; 
    display: flex; 
    align-items: center; 
    font-size: 15px; 
    background: #ad1b18; 
    color: #fff; 
}

/* ===================================================== */
/* RESPONSIVE DESIGN */
/* ===================================================== */
@media (max-width: 980px){
    .home-sections .home-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .artikel-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .navbar a {
        margin-left: 15px;
        font-size: 13px;
    }
    
    .hero-title-large {
        font-size: 32px;
    }
    
    .video-item {
        width: 280px;
        height: 158px;
    }
    
    .slider-scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .tentang-box {
        padding: 30px;
    }
    
    .info-box {
        padding: 30px;
    }
}

/* ===================================================== */
/* FIX: Highlight untuk kalimat "Komitmen ..." (No.2) */
/* ===================================================== */
.info-content .info-highlight{
    color: var(--primary) !important;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 15px;
}

/* ===================================================== */
/* FIX: Modal Paket Layanan (Lebih Detail)
   - scrollbar disembunyikan
   - tetap bisa scroll pakai mouse & sentuh (Android)
===================================================== */
#modal .modal-content{
    overflow-y: auto;                 /* tetap bisa scroll */
    -webkit-overflow-scrolling: touch; /* scroll halus di HP */
    scrollbar-width: none;            /* Firefox */
    -ms-overflow-style: none;         /* IE / Edge lama */
}

#modal .modal-content::-webkit-scrollbar{
    width: 0;
    height: 0;
    display: none;                    /* Chrome / Safari */
}

/* ===================================================== */
/* FIX: Tombol HERO "Pesan Sekarang" jadi HIJAU saja */
/* ===================================================== */
.hero-overlay .btn {
    background-color: #ffd42a !important;  /* hijau */
    border-color: #ffffff !important;
    color: #000000 !important;
}

.hero-overlay .btn:hover {
    background-color: #ffffff !important;
    color: #ffd42a !important;
}
