body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f7fa;
    opacity: 1;
    transition: opacity 0.4s ease;
}

body.page-exit {
    opacity: 0;
}

html {
    scroll-behavior: smooth;
}

/* Floating WhatsApp */
.wa-float {
    position: fixed;
    left: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

/* Hover */
.wa-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.6);
}

.section-blank {
    height: 100px;   /* atur jarak */
    width: 100%;
}

/* =========================
   NAVBAR SECTION
========================= */
.navbar {
    background: #ffffff; /* NAVY */
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(58, 58, 58, 0.25);
    position: sticky;
    top: 0px;
    z-index: 1000;
}

.nav-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-container img {
    width: 80px;   /* ubah sesuai selera */
    height: auto;   /* biar proporsinya aman */
    margin-left: 5px;   /* geser kanan */
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =========================
   SIDE MENU SECTION
========================= */
.menu {
    position: static;              /* BUKAN FIXED */
    display: flex;
    flex-direction: row;           /* DESKTOP = DERET */
    gap: 32px;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    transform: none;
}

.menu a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 16px;
    transition: 0.2s ease;
    padding: 10px 15px;
    font-weight: 500;
}

.menu::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.45);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
    pointer-events: none;
}

.menu.active {
    transform: translateX(0);
}

.menu.active::before {
    opacity: 1;
}

.menu a:hover {
    color: #6dd7fd;
}

/* =========================
   HAMBURGER SECTION
========================= */
.hamburger {
    width: 28px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    display: none; /* default hidden */
}

/* GARIS HAMBURGER */
.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #000; /* ganti putih kalau navbar gelap */
    border-radius: 3px;
    transition: 0.3s ease;
}

/* HAMBURGER TO CLOSE */
.hamburger.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* EDGE SWIPE ZONE */
.edge-swipe {
    z-index: 999;
}

/* =========================
   HERO SECTION
========================= */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background: url("../assets/BG\ Hero.webp") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.25)
    );
    z-index: 1;
}

/* CONTAINER UTAMA */
.hero-middle {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* CONTENT */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Judul */
.hero-content h1 {
    font-size: 70px;
    font-weight: 750;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 20px;
}

/* Sub note */
.hero .text-note {
    font-size: 28px;
    font-weight: 650;
    margin-bottom: 20px;
    color: #fff;
}

/* Deskripsi */
.hero .text-desc {
    font-size: 20px;
    max-width: 700px;
    margin-bottom: 40px;
    color: #fff;
}

/* WHATSAPP */
.hero-wa {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 32px;
    font-weight: 600;
    color: #fff;
}

.hero-wa i {
    font-size: 38px;
    color: #25D366;
}

/* SELLING POINT DALAM HERO */
.hero-selling-point {
    position: absolute;
    bottom: 40px;              /* jarak dari bawah hero */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 80px;
    z-index: 3;
    padding: 0 20px;
    flex-wrap: wrap;
}

.hero-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.hero-selling-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}

.hero-selling-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.hero-selling-point {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;   /* INI YANG PENTING */
}

.hero-selling-point-title {
    margin-top: 5px;
    font-size: 14px;
    font-weight: 600;
}

/* =========================
   SERVICES SECTION
========================= */
.service {
    background-color: var(--light);
    padding: 80px 0;
}

.service .container {
    padding-left: 20px;
    padding-right: 20px;
}

.service-title {
    text-align: center;
    margin: 60px auto 5px;
    font-size: 40px;
    font-weight: 750;
    color: #00435c;
}

.service-subtitle {
    margin-top: 0.5px;
    text-align: center;
    font-size: 20px;
    font-weight: 350;
    margin-bottom: 50px;
    color: #4a4a4a;
}

/* Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    padding: 0 110px;
}

/* Card */
.service-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden; /* WAJIB biar bg atas rapi */
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

/* AREA ATAS YANG BERWARNA */
.service-header {
    background-color: #6dd7fd; /* WARNA DI SINI */
    padding: 30px 0;
    display: flex;
    justify-content: center;
}

/* Gambar */
.service-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

/* Konten card */
.service-content {
    padding: 22px;
    text-align: left;
}

.service-content h3 {
    font-size: 20px;        /* SEIMBANG */
    font-weight: 750;
    margin-bottom: 12px;
    color: #00435c;
}

.service-content p {
    font-size: 15px;        /* nyaman dibaca */
    line-height: 1.6;
    color: #666;
    margin-bottom: 18px;
}

.service-content a {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-content a:hover {
    background-color: #8f8f8f13;
    transform: translateY(-8px);
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background-color: #6dd7fd;
    padding: 14px 30px;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;

    transition: all 0.25s ease;

    margin: 40px auto 10px;   /* ðŸ‘ˆ CENTER */
}

.service-btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}


.service-btn:hover {
    background-color: #00435c;
    transform: translateY(-3px);
}

/* =========================
   KEUNGGULAN SECTION
========================= */

.advantages {
    padding: 90px 20px;
    background: #ffffff;
}

.advantages-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.advantages-title {
    font-size: 38px;
    font-weight: 750;
    color: #00435c;
    margin-bottom: 10px;
}

.advantages-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.adv-card {
    background: #f9fbff;
    padding: 35px 25px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid #6dd7fd;
}

.adv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.adv-icon {
    font-size: 40px;
    color: #6dd7fd;
    margin-bottom: 20px;
}

.adv-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0e1a33;
}

.adv-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* =========================
   ABOUT SECTION
========================= */
.about {
    background-color: #ffffff;
    padding: 90px 0;
}

.about .container {
    max-width: 1200px;   /* BATAS LEBAR */
    margin: 0 auto;      /* BIKIN TENGAH */
    padding-left: 20px;
    padding-right: 20px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: center;
}

/* TEXT */
.about-text {
    flex: 1;
    max-width: 560px; /* biar teks nggak terlalu lebar */
}

.about-text h2 {
    font-size: 40px;
    font-weight: 700;
    color: #00435c;
    margin-bottom: 18px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #555;
}

/* BUTTON */
.about-text .btn {
    margin-top: 10px;
}

/* IMAGE */
.about-image {
    flex: 1;
    max-width: 520px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #6dd7fd;
    padding: 14px 30px;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.about-btn:hover {
    background-color: #00435c;
    transform: translateY(-3px);
}

/* =========================
   UNIT SECTION
========================= */
.unit {
    width: 100%;
    padding: 80px 0;
    background: #9999992f;
}

.unit-title {
    text-align: center;
    margin: 60px auto 5px;
    font-size: 40px;
    font-weight: 750;
    color: #00435c;
}

.unit-subtitle {
    margin-top: 0.5px;
    text-align: center;
    font-size: 20px;
    font-weight: 350;
    margin-bottom: 50px;
    color: #4a4a4a;
}

.unit-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    width: 90%;
    margin: auto;
}

.unit-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
    transition: 0.25s ease;
    border: 5px solid #6dd7fd;
    border-radius: 12px;
    padding: 13px;
}

.unit-card img {
    width: 100%;
    aspect-ratio: 9 / 16;     /* Rasio Vertikal */
    object-fit: cover;        /* Biar tidak gepeng */
    border-radius: 10px;
    margin-bottom: 12px;
    display: block;
}

.unit-info {
    padding: 10px 5px 5px;
    display: flex;
    flex-direction: column;   /* ⬅ INI YANG PENTING */
    gap: 6px;
}

.unit-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #0e1a33;
    line-height: 1.3;
}

.unit-desc {
    font-size: 14px;
    margin: 0;
    color: #555;
    line-height: 1.4;
}

.arrow {
    font-size: 20px;
    color: #0e1a33;
}

.btn-container {
    text-align: center;
    margin: 40px 0;
}

#lihatBtn {
    padding: 12px 28px;
    background: #0e1a33;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

#lihatBtn:hover {
    background: #142756;
}

/* =========================
   FAQ SECTION
========================= */
.faq {
    max-width: 900px;
    margin: 80px auto;
    padding: 60px 20px;     /* tambahin padding biar lega */

}

.faq-title {
    text-align: center;
    font-size: 40px;
    font-weight: 750;
    margin-bottom: 40px;
    color: #00435c;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 18px;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question .icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: #555;
    line-height: 1.6;
    transition: max-height 0.2s ease, padding 0.3s ease;
}

/* AKTIF */
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-item.active .icon {
    transform: rotate(180deg);
}

/* =============================================================
   gallery.html dan bagian GALLERY di style.css ditambahkan
============================================================= */
/* =========================
   GALLERY SECTION
========================= */
.gallery {
    padding: 80px 0;
    background: #f5f7fa;
}

.service .container {
    padding-left: 20px;
    padding-right: 20px;
}

.gallery-title {
    text-align: center;
    margin: 60px auto 5px;
    font-size: 40px;
    font-weight: 750;
    color: #00435c;
}

.gallery-subtitle {
    margin-top: 0.5px;
    text-align: center;
    font-size: 20px;
    font-weight: 350;
    margin-bottom: 50px;
    color: #4a4a4a;
    padding: 5px 150px;
}

/* Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    padding: 0 110px;
}

/* Card */
.gallery-card {
    display: block;
    text-decoration: none;
    color: inherit;

    border-radius: 14px;
    overflow: hidden;
    background: #fff;

    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* efek nyala / penunjuk */
.gallery-card.highlight {
    box-shadow: 0 0 0 4px rgba(255, 153, 0, 0.9),
                0 20px 40px rgba(0, 0, 0, 0.35);
    transform: scale(1.03) translateY(-6px);
    outline: 5px solid red !important;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.15);
}

/* AREA ATAS YANG BERWARNA */
.gallery-header {
    background-color: #6dd7fd; /* WARNA DI SINI */
    padding: 30px 0;
    display: flex;
    justify-content: center;
    overflow: hidden;
    border-radius: 14px 14px 1px 1px;
}

/* Gambar */
.gallery-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

/* Konten card */
.gallery-content {
    padding: 22px;
    text-align: left;
}

.gallery-content h3 {
    font-size: 20px;        /* SEIMBANG */
    font-weight: 750;
    margin-bottom: 12px;
    color: #00435c;
}

.gallery-content p {
    font-size: 15px;        /* nyaman dibaca */
    line-height: 1.6;
    color: #666;
    margin-bottom: 18px;
}

.gallery-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #6dd7fd;
    color: #00435c;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.gallery-card:hover .gallery-btn {
    background: #4ec6f3;
}

/* =============================================================
   contact.html dan bagian CONTACT di style.css ditambahkan
============================================================= */
/* =========================
   CONTACT SECTION
========================= */

.contact {
    background: #f8f9fb;
    padding: 80px 0;
}

.contact .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Title */
.contact .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.contact .section-title h2 {
    text-align: center;
    margin: 60px auto 5px;
    font-size: 40px;
    font-weight: 750;
    color: #00435c;
}

.contact .section-title p {
    margin-top: 0.5px;
    text-align: center;
    font-size: 20px;
    font-weight: 350;
    margin-bottom: 50px;
    color: #4a4a4a;
    padding: 5px 150px;
}

/* Layout */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* =========================
   CONTACT INFO
========================= */

.contact-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.contact-info p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-details {
    list-style: none;
    padding: 0;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px;
    margin-bottom: 15px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.contact-details li:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.1);
}

.contact-details i {
    font-size: 22px;
    color: #6dd7fd;
    margin-top: 4px;
}

.contact-details strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.contact-details p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* =========================
   CONTACT FORM
========================= */

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #6dd7fd;
    box-shadow: 0 0 0 3px rgba(255,153,0,0.15);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Button */
.contact-form .btn {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    background: #6dd7fd;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    background: #6dd7fd;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(126, 126, 126, 0.35);
}

/* =============================================================
   css 5 page di dalem gallery
============================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.page-header {
    background: #0b3c5d;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.page-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.page-content p {
    margin-bottom: 20px;
}

.page-content ul {
    margin-left: 20px;
    margin-bottom: 30px;
}

.page-content ul li {
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    background: #f39c12;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #d68910;
}

/* =========================
   FOOTER SECTION
========================= */
footer {
    background: linear-gradient(135deg, #003647, #005a7c);
    color: #ffffff;
    padding: 70px 50px 35px; /* kiri kanan dilebarin */
    font-family: 'Poppins', sans-serif;
}

/* Logo */
.footer-column img {
    width: 80px;   /* ubah sesuai selera */
    height: auto;   /* biar proporsinya aman */
    margin-bottom: 12px;
    margin-left: -8px;   /* geser kanan */
}

/* GRID */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

/* JUDUL */
.footer-column h3 {
    font-size: 1.35rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.footer-column:nth-child(3) {
    padding-left: 90px; /* GESER KE KANAN */
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 45px;
    height: 3px;
    background-color: #ffce54;
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

/* PARAGRAF */
.footer-column p {
    color: #e3e3e3;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* LIST */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    color: #d9d9d9;
    font-size: 0.95rem;
}

.footer-links li:last-child {
    margin-bottom: 0;      /* ðŸ”¥ item terakhir rapih */
}

.footer-links a {
    color: #d9d9d9;
    text-decoration: none;
    transition: 0.3s ease;
    white-space: nowrap; /* 1 baris */
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* LAYANAN */
.footer-links p {
    margin: 5px;
    white-space: nowrap; /* 1 baris */
}

/* SOSMED */
.social-media {
    display: flex;
    justify-content: flex-start; /* ke tengah */
    gap: 18px;
    margin-top: 1px;
}

.social-media a {
    margin-top: 10px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f2f2f2;
    color: #333;
    font-size: 18px;
    transition: all 0.25s ease;
    text-decoration: none;   /* HILANGKAN GARIS */
}

.social-media a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-4px);
    text-decoration: none;
}

/* FOOTER BOTTOM */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: #cfcfcf;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

footer .container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px; /* tambahan biar makin longgar */
}

/* =========================
   RESPONSIVE SECTION
========================= */
/* TABLET */
@media (max-width: 1024px) {

    /* NAVBAR */
    .hamburger {
        display: flex;
    }

    .menu {
        position: fixed;
        top: 81px; /* tinggi navbar */
        left: 0;
        width: 100%;
        padding: 18px 25px;
        height: auto;
        background: #fff;

        display: flex;
        flex-direction: column;

        transform: translateX(-120%);
        transition: none;

        z-index: 999;
        align-items: flex-start;
        box-shadow: 0 4px 8px -4px rgba(0,0,0,0.2);

    }

    .menu-header {
        height: 60px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 0 20px;
        border-bottom: 1px solid #eee;
    }

    .menu a {
        display: inline-block;
        width: fit-content;
        padding: 8px 0px;
        color: #000;
        text-decoration: none;
    }

    .menu a:hover {
        color: #6dd7fd; /* hover sama */
    }

    .menu a:last-child {
        border-bottom: none;
    }

    .menu.active {
        transform: translateY(0);
    }

    .close-btn {
        font-size: 32px;
        cursor: pointer;
        color: #000;
    }
    
    .nav-container {
        width: 95%;
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        z-index: 999;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* HERO */
    .hero {
        height: 90vh; /* biar gak terlalu tinggi di tablet */
    }

    .hero-content h1 {
        font-size: 44px;
        line-height: 1.2;
        white-space: normal;
        margin-bottom: 16px;
    }

    .hero .text-note {
        font-size: 20px;
        white-space: normal;
        margin-bottom: 18px;
    }

    .hero .text-desc {
        font-size: 17px;
        max-width: 600px;
        margin-bottom: 30px;
    }

    .hero-wa {
        font-size: 26px;
    }

    .hero-wa i {
        font-size: 30px;
    }

    .hero-selling-point {
        gap: 40px; /* lebih rapat dari desktop */
        bottom: 35px;
    }

    .hero-selling-item img {
        width: 42px;
        height: 42px;
    }

    .hero-selling-point-title {
        font-size: 13px;
    }

    /* SERVICES */
    .service-grid {
        padding: 0 40px;
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        max-width: 100%;
    }

    .service-content h3 {
        font-size: 18px;
    }

    .service-content p {
        font-size: 14px;
    }

    /* ABOUT */
    .about-content {
        gap: 40px;
    }

    .about-text h2 {
        font-size: 34px;
    }

}

/* ANDROID */
@media (max-width: 768px) {
    
    /* FLOATING WA */
        .hero-wa {
        font-size: 25px;
    }

    .hero-wa i {
        font-size: 24px;
    }

    /* NAVBAR */
        .nav-container {
        width: 90%;
    }

    .menu {
        top: 81px; /* tinggi navbar */
    }

    .menu a {
        width: 100%;           /* ðŸ”¥ WAJIB */
        padding: 1px 0px;    /* ðŸ”´ UBAH ANGKA INI */
        font-size: 15px;
        color: #000;
    }

    .menu {
        top: 81px; /* tinggi navbar */
    }

    .menu a {
        width: 100%;           /* ðŸ”¥ WAJIB */
        padding: 1px 0px;    /* ðŸ”´ UBAH ANGKA INI */
        font-size: 15px;
        color: #000;
    }

    /*   HERO   */
    .hero {
        height: auto;
        padding: 140px 0 200px;
    }

    .hero-content h1 {
        font-size: 45px;
        margin-bottom: 10px;
    }

    .hero .text-note {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .hero .text-desc {
        font-size: 13px;
        max-width: 640px;
        margin: 0 auto 35px;
        text-align: center;
        color: #fff;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .hero-selling-point {
        position: absolute;
        bottom: 10px;          /* TURUN KE BAWAH HERO */
        left: 50%;
        transform: translateX(-50%);
        gap: 25px;
        padding: 15px;
        z-index: 3;
    }

    .hero-selling-item img {
        width: 35px;          /* ukuran icon */
        height: 35px;
    }

    .hero-selling-point-title {
        font-size: 12px;      /* ukuran teks */
    }

    /*   SERVICES   */
    .service {
        padding: 50px 0;
    }

    /* Judul */
    .service-title {
        font-size: 30px;
        margin: 40px auto 10px;
    }

    .service-subtitle {
        font-size: 15px;
        margin-bottom: 35px;
        padding: 0 20px;
        line-height: 1.6;
    }

    /* Grid */
    .service-grid {
        padding: 0 20px;
        gap: 16px;
        grid-template-columns: repeat(2, 1fr);
    }

    /* Card */
    .service-card {
        border-radius: 12px;
    }

    /* Header warna */
    .service-header {
        padding: 22px 0;
    }

    /* Icon */
    .service-icon img {
        width: 85px;
        height: 85px;
    }

    /* Konten */
    .service-content {
        padding: 16px;
    }

    .service-content h3 {
        font-size: 16px;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .service {
        padding: 50px 0;
    }

    /* Judul */
    .service-title {
        font-size: 26px;
        margin: 40px auto 10px;
    }

    .service-subtitle {
        font-size: 15px;
        margin-bottom: 35px;
        padding: 0 20px;
        line-height: 1.6;
    }

    /* Grid */
    .service-grid {
        padding: 0 20px;
        gap: 16px;
        grid-template-columns: repeat(2, 1fr);
    }

    /* Card */
    .service-card {
        border-radius: 12px;
    }

    /* Header warna */
    .service-header {
        padding: 22px 0;
    }

    /* Icon */
    .service-icon img {
        width: 85px;
        height: 85px;
    }

    /* Konten */
    .service-content {
        padding: 16px;
    }

    .service-content h3 {
        font-size: 16px;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .service-content p {
        display: none; /* biar card ringkas */
    }

    /* Button */
    .service-btn {
        font-size: 14px;
        padding: 12px 24px;
        margin: 30px auto 10px;
    }

    .service-btn-wrap {
        margin-top: 30px;
    }

    /* Button */
    .service-btn {
        font-size: 14px;
        padding: 12px 24px;
        margin: 30px auto 10px;
    }

    .service-btn-wrap {
        margin-top: 30px;
    }

    /*   ABOUT   */
    .about {
        padding: 60px 0;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-text h2 {
        font-size: 30px;
        text-align: center;
    }

    .about-text p {
        text-align: center;
    }

    .about-image {
        max-width: 100%;
    }

    .about-text {
    text-align: center;
    }

    /* Section */
    .gallery {
        padding: 50px 0;
    }

    /* Judul */
    .gallery-title {
        font-size: 30px;
        margin: 40px auto 10px;
    }

    .gallery-subtitle {
        font-size: 17px;
        padding: 0 20px;
        margin-bottom: 35px;
        line-height: 1.6;
    }

    /* Grid */
    .gallery-grid {
        padding: 0 20px;
        gap: 16px;
        grid-template-columns: repeat(2, 1fr);
    }

    /* Card */
    .gallery-card {
        border-radius: 12px;
    }

    /* Header warna atas */
    .gallery-header {
        padding: 22px 0;
        border-radius: 12px 12px 0 0;
    }

    /* Icon */
    .gallery-icon img {
        width: 85px;
        height: 85px;
    }

    /* Konten */
    .gallery-content {
        padding: 16px;
    }

    .gallery-content h3 {
        font-size: 16px;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .gallery-hint {
        font-size: 13px;
    }

    /*    UNIT    */
    .unit-container {
        grid-template-columns: 1fr;
    }

    .unit-title {
        font-size: 30px;
    }

    .unit-subtitle {
        font-size: 16px;
    }

    /*   FAQ   */
    .faq-title {
        font-size: 30px;
    }

    .faq-question {
        font-size: 16px;
    }

    /*   CONTACT   */
    /* Section spacing */
    .contact {
        padding: 50px 0;
    }

    /* Title */
    .contact .section-title h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .contact .section-title p {
        font-size: 17px;
        padding: 0 20px;
        margin-bottom: 35px;
        line-height: 1.6;
    }

    /* Layout jadi 1 kolom */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    /* Contact info */
    .contact-info h3 {
        font-size: 22px;
    }

    .contact-info p {
        font-size: 14px;
    }

    /* Info card */
    .contact-details li {
        padding: 16px;
        gap: 14px;
    }

    .contact-details i {
        font-size: 20px;
    }

    /* Form */
    .contact-form {
        padding: 25px;
        border-radius: 16px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-control {
        font-size: 14px;
        padding: 12px 14px;
    }

    textarea.form-control {
        min-height: 100px;
    }

    /* Button */
    .contact-form .btn {
        padding: 13px;
        font-size: 15px;
        border-radius: 12px;
    }

    /* FOOTER */
    footer {
        padding: 50px 20px 30px;
    }

    .footer-column:nth-child(3) {
        padding-left: 0;
    }

    .footer-content {
        gap: 35px;
    }

    .social-media {
        justify-content: left;
    }

}