/* RESET */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}


/* ============================
   NAVBAR
============================ */
.navbar {
    background: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

.logo img {
    height: 60px;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: white;
    font-size: 16px;
    text-decoration: none;
}

.nav-links li a:hover,
.nav-links .active {
    color: #FFD700;
}

/* =========================
   GALERI GRID
========================= */
.gallery-page {
    padding: 60px 40px;
}

.gallery-page h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* ⬅️ INI KUNCINYA */
    gap: 20px;
}


.gallery-grid-full img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

.gallery-grid-full img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .gallery-grid-full img {
        height: 180px;
    }
}
.gallery-item-full {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 14px;
    overflow: hidden;          /* WAJIB */
    background: #000;          /* BUFFER biar sudut aman */
}

.gallery-item-full img,
.gallery-item-full iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;          /* JANGAN radius di child */
}
.play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}
.gallery-item-full * {
    box-sizing: border-box;
}


/* =========================
   LIGHTBOX
========================= */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.lb-prev,
.lb-next {
    position: absolute;
    top: 50%;
    font-size: 45px;
    color: white;
    cursor: pointer;
    padding: 20px;
    transform: translateY(-50%);
}

.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-prev:hover,
.lb-next:hover,
.lightbox-close:hover {
    color: #ccc;
}


/* ============================
   HERO SECTION
============================ */
.hero {
    height: 350px;
    background: #bdb3b3;   /* Ubah warna sesuai keinginan */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.hero-content h2 {
    font-size: 42px;
    color: #000;
}

.hero-content p {
    font-size: 28px;
    color: #000;
    margin-bottom: 20px;
}

.btn-wa {
    background: #25D366;
    padding: 22px 30px;
    color: black;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
}

.btn-wa:hover {
    background: #1ebe5d;
}


/* ============================
   WHY US SECTION
============================ */
.why-us {
    padding: 80px 40px;
    background: #f8f8f8;
    text-align: center;
}

.why-us h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
}

.why-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.why-box:hover {
    transform: translateY(-5px);
}

.why-box img {
    width: 70px;
    margin-bottom: 15px;
}

.why-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.why-box p {
    font-size: 16px;
    line-height: 1.6;
}

/* Format 3 atas, 2 bawah */
.why-box:nth-child(4) {
    grid-column: 2;
}
.why-box:nth-child(5) {
    grid-column: 3;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-box:nth-child(4),
    .why-box:nth-child(5) {
        grid-column: auto;
    }
}




/* ============================
   LIGHTBOX
============================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(3px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

.lb-prev, .lb-next {
    position: absolute;
    top: 50%;
    font-size: 40px;
    color: white;
    cursor: pointer;
    padding: 15px;
    transform: translateY(-50%);
}

.lb-prev { left: 30px; }
.lb-next { right: 30px; }

.lb-prev:hover,
.lb-next:hover,
.lightbox-close:hover {
    color: #ccc;
}



/* ============================
   FOOTER
============================ */
.footer-new {
    background: #000;
    color: #fff;
    padding: 50px 20px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-logo {
    width: 130px;
}

.social-icons img {
    width: 145px;
    margin-right: 10px;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    padding-top: 15px;
    opacity: 0.8;
}
/* ================================
   BANNER PAGE (1425 x 325)
=================================*/

.page-header {
    position: relative;
    width: 100%;
    height: 830px;          /* tinggi standar desktop */
    min-height: 830px;      /* memastikan banner tidak mengecil */
    overflow: hidden;
    background: #000;
}

/* Gambar banner */
.page-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;      /* gambar memenuhi banner */
    object-position: center;
    z-index: 1;
}

/* Overlay gelap */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.32);
    z-index: 2;
}

/* Teks banner */
.banner-text {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: rgb(0, 0, 0);
    z-index: 3;
    padding: 0 20px;
}

.banner-text h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 8px;
}

.banner-text p {
    font-size: 17px;
    opacity: 0.9;
}

/* =========================
   ABOUT SECTION
========================= */
.about-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    padding: 80px 40px;
    max-width: 1200px;
    margin: auto;
    background: #fff;
}

/* TEKS KIRI */
.about-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #111;
}

.about-left h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #000;
}

.about-left p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.about-left ul {
    padding-left: 18px;
}

.about-left ul li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #444;
}

/* LIST KEUNGGULAN */
.highlight-list li {
    position: relative;
    padding-left: 20px;
}

.highlight-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #25D366;
    font-weight: bold;
}

/* GAMBAR KANAN */
.about-right img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        padding: 50px 20px;
    }

    .about-right {
        margin-top: 30px;
    }
}


/* ===========================
   CONTACT PAGE
=========================== */
.contact-page {
    padding: 80px 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.contact-form h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-form p {
    margin-bottom: 20px;
    color: #555;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

.contact-form button {
    background: #000;
    color: #fff;
    padding: 14px;
    border: none;
    width: 100%;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #222;
}

.contact-info iframe {
    width: 100%;
    height: 260px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: none;
}

.info-box h3 {
    margin-bottom: 15px;
}

.info-box p {
    margin-bottom: 12px;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.contact-info h4 {
    margin-bottom: 10px;
    font-size: 18px;
}
/* =========================
   RESET
========================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    background: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

.logo img {
    height: 60px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.nav-links a:hover,
.nav-links .active {
    color: #FFD700;
}

/* =========================
   HERO
========================= */
.hero {
    background: #bdb3b3;
    padding: 80px 20px;
    text-align: center;
}

.hero-content h2 {
    font-size: 42px;
}

.hero-content p {
    font-size: 22px;
}

.btn-wa {
    background: #25D366;
    padding: 14px 22px;
    color: black;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
}

/* =========================
   GALERI
========================= */
.gallery-page {
    padding: 60px 40px;
}

.gallery-page h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.gallery-grid-full img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-grid-full img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* =========================
   LIGHTBOX
========================= */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: white;
    cursor: pointer;
}

.lb-prev,
.lb-next {
    position: absolute;
    top: 50%;
    font-size: 40px;
    color: white;
    cursor: pointer;
    padding: 20px;
    transform: translateY(-50%);
}

.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* =========================
   ABOUT
========================= */
.about-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    padding: 60px 40px;
}

.about-left h2 {
    font-size: 40px;
}

.about-left p,
.about-left ul li {
    font-size: 18px;
    line-height: 1.6;
}

.about-right img {
    width: 100%;
    border-radius: 12px;
}

/* =========================
   CONTACT
========================= */
.contact-page {
    padding: 80px 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.contact-form button {
    background: #000;
    color: #fff;
    padding: 14px;
    border: none;
    width: 100%;
    border-radius: 6px;
}

/* =========================
   FOOTER
========================= */
.footer-new {
    background: #000;
    color: #fff;
    padding: 50px 20px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.social-icons img {
    width: 52px;
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    opacity: 0.8;
}

/* =========================
   RESPONSIVE
========================= */

/* =========================
   NAVBAR
========================= */
.navbar {
    background: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    position: relative;
    z-index: 1000;
}

.logo img {
    height: 55px;
}

/* MENU */
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li a {
    color: white;
    font-size: 16px;
    text-decoration: none;
}

.nav-links li a:hover,
.nav-links .active {
    color: #FFD700;
}

/* =========================
   FIX HAMBURGER CLICKABLE
========================= */
.navbar {
    position: relative;
    z-index: 9999;
}

.hamburger {
    position: relative;
    z-index: 10000;
    cursor: pointer;
}

.hamburger span {
    pointer-events: none;
}

/* Pastikan section lain tidak menimpa navbar */
.hero,
.page-header,
.banner-overlay {
    position: relative;
    z-index: 1;
}


/* ANIMASI */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #000;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 9998;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        padding: 12px 0;
    }
}


/* =========================
   SERVICES SECTION
========================= */
.services-section {
    padding: 80px 40px;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #111;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */
.service-card {
    background: #f9f9f9;
    padding: 30px 25px;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    text-align: center;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000;
}

.service-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 26px;
    }
}
.video-item {
    position: relative;
    width: 100%;
    height: 220px;
    cursor: pointer;
}

.video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

/* PLAY ICON TEPAT DI TENGAH */
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    pointer-events: none;
}

.video-item:hover img {
    filter: brightness(0.7);
}

.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper {
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
}

.video-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 42px;
    color: white;
    cursor: pointer;
}
/* RESET */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}


/* ============================
   NAVBAR
============================ */
.navbar {
    background: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

.logo img {
    height: 60px;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: white;
    font-size: 16px;
    text-decoration: none;
}

.nav-links li a:hover,
.nav-links .active {
    color: #FFD700;
}

/* =========================
   GALERI GRID
========================= */
.gallery-page {
    padding: 60px 40px;
}

.gallery-page h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* ⬅️ INI KUNCINYA */
    gap: 20px;
}


.gallery-grid-full img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

.gallery-grid-full img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .gallery-grid-full img {
        height: 180px;
    }
}
.gallery-item-full {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 14px;
    overflow: hidden;          /* WAJIB */
    background: #000;          /* BUFFER biar sudut aman */
}

.gallery-item-full img,
.gallery-item-full iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;          /* JANGAN radius di child */
}
.play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}
.gallery-item-full * {
    box-sizing: border-box;
}


/* =========================
   LIGHTBOX
========================= */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.lb-prev,
.lb-next {
    position: absolute;
    top: 50%;
    font-size: 45px;
    color: white;
    cursor: pointer;
    padding: 20px;
    transform: translateY(-50%);
}

.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-prev:hover,
.lb-next:hover,
.lightbox-close:hover {
    color: #ccc;
}


/* ============================
   HERO SECTION
============================ */
.hero {
    height: 350px;
    background: #bdb3b3;   /* Ubah warna sesuai keinginan */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.hero-content h2 {
    font-size: 42px;
    color: #000;
}

.hero-content p {
    font-size: 28px;
    color: #000;
    margin-bottom: 20px;
}

.btn-wa {
    background: #25D366;
    padding: 22px 30px;
    color: black;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
}

.btn-wa:hover {
    background: #1ebe5d;
}


/* ============================
   WHY US SECTION
============================ */
.why-us {
    padding: 80px 40px;
    background: #f8f8f8;
    text-align: center;
}

.why-us h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
}

.why-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.why-box:hover {
    transform: translateY(-5px);
}

.why-box img {
    width: 70px;
    margin-bottom: 15px;
}

.why-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.why-box p {
    font-size: 16px;
    line-height: 1.6;
}

/* Format 3 atas, 2 bawah */
.why-box:nth-child(4) {
    grid-column: 2;
}
.why-box:nth-child(5) {
    grid-column: 3;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-box:nth-child(4),
    .why-box:nth-child(5) {
        grid-column: auto;
    }
}




/* ============================
   LIGHTBOX
============================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(3px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

.lb-prev, .lb-next {
    position: absolute;
    top: 50%;
    font-size: 40px;
    color: white;
    cursor: pointer;
    padding: 15px;
    transform: translateY(-50%);
}

.lb-prev { left: 30px; }
.lb-next { right: 30px; }

.lb-prev:hover,
.lb-next:hover,
.lightbox-close:hover {
    color: #ccc;
}



/* ============================
   FOOTER
============================ */
.footer-new {
    background: #000;
    color: #fff;
    padding: 50px 20px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-logo {
    width: 130px;
}

.social-icons img {
    width: 145px;
    margin-right: 10px;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    padding-top: 15px;
    opacity: 0.8;
}
/* ================================
   BANNER PAGE (1425 x 325)
=================================*/

.page-header {
    position: relative;
    width: 100%;
    height: 830px;          /* tinggi standar desktop */
    min-height: 830px;      /* memastikan banner tidak mengecil */
    overflow: hidden;
    background: #000;
}

/* Gambar banner */
.page-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;      /* gambar memenuhi banner */
    object-position: center;
    z-index: 1;
}

/* Overlay gelap */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.32);
    z-index: 2;
}

/* Teks banner */
.banner-text {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: rgb(0, 0, 0);
    z-index: 3;
    padding: 0 20px;
}

.banner-text h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 8px;
}

.banner-text p {
    font-size: 17px;
    opacity: 0.9;
}

/* =========================
   ABOUT SECTION
========================= */
.about-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    padding: 80px 40px;
    max-width: 1200px;
    margin: auto;
    background: #fff;
}

/* TEKS KIRI */
.about-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #111;
}

.about-left h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #000;
}

.about-left p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.about-left ul {
    padding-left: 18px;
}

.about-left ul li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #444;
}

/* LIST KEUNGGULAN */
.highlight-list li {
    position: relative;
    padding-left: 20px;
}

.highlight-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #25D366;
    font-weight: bold;
}

/* GAMBAR KANAN */
.about-right img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        padding: 50px 20px;
    }

    .about-right {
        margin-top: 30px;
    }
}


/* ===========================
   CONTACT PAGE
=========================== */
.contact-page {
    padding: 80px 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.contact-form h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-form p {
    margin-bottom: 20px;
    color: #555;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

.contact-form button {
    background: #000;
    color: #fff;
    padding: 14px;
    border: none;
    width: 100%;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #222;
}

.contact-info iframe {
    width: 100%;
    height: 260px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: none;
}

.info-box h3 {
    margin-bottom: 15px;
}

.info-box p {
    margin-bottom: 12px;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.contact-info h4 {
    margin-bottom: 10px;
    font-size: 18px;
}
/* =========================
   RESET
========================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    background: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

.logo img {
    height: 60px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.nav-links a:hover,
.nav-links .active {
    color: #FFD700;
}

/* =========================
   HERO
========================= */
.hero {
    background: #bdb3b3;
    padding: 80px 20px;
    text-align: center;
}

.hero-content h2 {
    font-size: 42px;
}

.hero-content p {
    font-size: 22px;
}

.btn-wa {
    background: #25D366;
    padding: 14px 22px;
    color: black;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
}

/* =========================
   GALERI
========================= */
.gallery-page {
    padding: 60px 40px;
}

.gallery-page h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.gallery-grid-full img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-grid-full img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* =========================
   LIGHTBOX
========================= */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: white;
    cursor: pointer;
}

.lb-prev,
.lb-next {
    position: absolute;
    top: 50%;
    font-size: 40px;
    color: white;
    cursor: pointer;
    padding: 20px;
    transform: translateY(-50%);
}

.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* =========================
   ABOUT
========================= */
.about-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    padding: 60px 40px;
}

.about-left h2 {
    font-size: 40px;
}

.about-left p,
.about-left ul li {
    font-size: 18px;
    line-height: 1.6;
}

.about-right img {
    width: 100%;
    border-radius: 12px;
}

/* =========================
   CONTACT
========================= */
.contact-page {
    padding: 80px 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.contact-form button {
    background: #000;
    color: #fff;
    padding: 14px;
    border: none;
    width: 100%;
    border-radius: 6px;
}

/* =========================
   FOOTER
========================= */
.footer-new {
    background: #000;
    color: #fff;
    padding: 50px 20px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.social-icons img {
    width: 52px;
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    opacity: 0.8;
}

/* =========================
   RESPONSIVE
========================= */

/* =========================
   NAVBAR
========================= */
.navbar {
    background: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    position: relative;
    z-index: 1000;
}

.logo img {
    height: 55px;
}

/* MENU */
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li a {
    color: white;
    font-size: 16px;
    text-decoration: none;
}

.nav-links li a:hover,
.nav-links .active {
    color: #FFD700;
}

/* =========================
   HAMBURGER
========================= */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 26px;
    background: white;
    margin: 4px 0;
    transition: 0.3s ease;
    border-radius: 3px;
}

/* ANIMASI */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* MOBILE */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #000;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
    }

    .nav-links.show {
        display: flex;
    }
}

/* =========================
   SERVICES SECTION
========================= */
.services-section {
    padding: 80px 40px;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #111;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */
.service-card {
    background: #f9f9f9;
    padding: 30px 25px;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    text-align: center;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000;
}

.service-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 26px;
    }
}
.video-item {
    position: relative;
    width: 100%;
    height: 220px;
    cursor: pointer;
}

.video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

/* PLAY ICON TEPAT DI TENGAH */
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    pointer-events: none;
}

.video-item:hover img {
    filter: brightness(0.7);
}

.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper {
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
}

.video-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 42px;
    color: white;
    cursor: pointer;
}
/* =========================
   MOBILE ONLY FIX
   (DESKTOP TIDAK BERUBAH)
========================= */
@media (max-width: 768px) {

    /* NAVBAR */
    .navbar {
        padding: 12px 16px;
    }

    .logo img {
        height: 45px;
    }

    /* HERO */
    .hero {
        padding: 32px 16px;
        height: auto;
    }

    .hero-content h2 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .btn-wa {
        font-size: 14px;
        padding: 12px 18px;
        margin-top: 8px;
    }

    /* GALERI */
    .gallery-page {
        padding: 40px 16px;
    }

    .gallery-grid-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .gallery-item-full,
    .video-item {
        height: 160px;
    }

    /* ABOUT */
    .about-wrapper {
        padding: 40px 16px;
    }

    .about-left h2 {
        font-size: 24px;
    }

    .about-left h3 {
        font-size: 18px;
    }

    .about-left p,
    .about-left ul li {
        font-size: 14px;
    }

    /* CONTACT */
    .contact-page {
        padding: 40px 16px;
    }

    /* FOOTER */
    .footer-container {
        text-align: center;
        gap: 24px;
    }

    .footer-logo {
        width: 90px;
        margin: auto;
    }

    .social-icons {
        justify-content: center;
        margin-top: 10px;
    }

    .social-icons img {
        width: 38px;
    }

    .footer-bottom {
        font-size: 13px;
    }
}
