:root {
    --primary-orange: #ff8c00;
    --bg-white: #ffffff;
    --ios-glass: rgba(255, 255, 255, 0.497);
    --ios-border: rgba(255, 255, 255, 0.3);
    --text-main: #1d1d1f;
    --text-muted: #86868b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif;
}

body {
    background-color: var(--bg-white);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.5;
}

/* --- NAVIGATION BAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1000;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    width: 100%;
    /* DEFAULT STATE (belum scroll) - Transparan + Blur */
    border-radius: 0;
    padding: 20px 80px;

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

    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* STATE SAAT SCROLL → Floating Pill + Glass */
.navbar.scrolled {
    top: 25px;
    padding: 0 10px;
}

.navbar.scrolled .nav-container {
    max-width: 920px;
    background: var(--ios-glass);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid var(--ios-border);
    border-radius: 100px;
    padding: 10px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

/* Link, logo, tombol tetap sama */
.logo {
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    color: #ffffff;
}
.navbar.scrolled .logo {
    color: #090808;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    opacity: 0.75;
    transition: 0.3s;
}
.navbar.scrolled .nav-links a {
    color: var(--text-main); /* Mengubah teks jadi putih saat di-scroll */
    opacity: 0.9; /* (Opsional) Membuat teks lebih terang saat jadi putih */
}

.nav-links a:hover {
    opacity: 1;
    color: var(--primary-orange);
}

.btn-login {
    background: var(--primary-orange);
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}

/* --- MOBILE NAVIGATION --- */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

/* Hamburger animation when active */
.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

.navbar.scrolled .hamburger,
.navbar.scrolled .hamburger::before,
.navbar.scrolled .hamburger::after {
    background: var(--text-main);
}

.navbar.scrolled .nav-toggle.active .hamburger {
    background: transparent;
}

/* Overlay for mobile menu */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        transition: right 0.4s ease;
        z-index: 1002;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 16px;
        opacity: 1;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    #navLogin {
        display: none;
    }

    .nav-links.active + #navLogin,
    .nav-links.active ~ #navLogin {
        display: none;
    }

    /* Show login inside mobile menu */
    .nav-links::after {
        content: "";
    }
}
@media (min-width: 769px) {
    .nav-links a.mobile-login {
        display: none !important;
    }
}
/* Add login link inside mobile menu via JS */
@media (max-width: 768px) {
    .nav-links a.mobile-login {
        background: var(--primary-orange);
        color: white !important;
        padding: 12px 24px;
        border-radius: 50px;
        text-align: center;
        margin-top: 10px;
        border-bottom: none;
    }
}
/* --- HERO SECTION --- */
.hero {
    max-height: 100vh;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px; /* memberi ruang untuk navbar fixed */
    /* Hapus background linear-gradient yang lama dari sini */
}

/* Container untuk slider background */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Animasi Slide Gambar */
.hero-bg-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeSlides 50s infinite; /* 50 detik total durasi putaran */
}

/* Mengatur jeda masing-masing gambar (3 gambar = 50 detik) */
.hero-bg-slider .slide:nth-child(1) {
    animation-delay: 0s;
}
.hero-bg-slider .slide:nth-child(2) {
    animation-delay: 10s;
}
.hero-bg-slider .slide:nth-child(3) {
    animation-delay: 20s;
}
.hero-bg-slider .slide:nth-child(4) {
    animation-delay: 30s;
}
.hero-bg-slider .slide:nth-child(5) {
    animation-delay: 40s;
}

/* Keyframes untuk efek crossfade & efek zoom halus */
@keyframes fadeSlides {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    4% {
        opacity: 1;
    } /* Fade-in perlahan di awal jatahnya */
    16% {
        opacity: 1;
    } /* Bertahan jelas selama beberapa detik */
    20% {
        opacity: 0;
        transform: scale(1.05);
    } /* Fade-out sambil zoom-in halus di akhir jatahnya */
    100% {
        opacity: 0;
        transform: scale(1.05);
    } /* Tetap sembunyi sampai putaran kembali ke awal */
}

/* Efek Smoke / Overlay Gelap Blur */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        /* Agak gelap di atas agar logo/navbar kelihatan */ rgba(0, 0, 0, 0.4)
            50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    backdrop-filter: blur(1px); /* Efek blur ala Apple glass */
    z-index: 1;
}

/* --- HERO CONTENT --- */
.hero-content {
    position: relative;
    z-index: 2; /* Harus lebih tinggi dari overlay agar tidak tertutup */
    max-width: 900px;
    padding: 0 20px;
    margin-bottom: 40px;
}

/* Karena background gelap, teks h1 dan p harus terang */
.hero-content h1 {
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
    color: #ffffff; /* Ubah ke putih */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Kasih bayangan biar makin nyala */
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.85); /* Putih agak transparan */
    line-height: 1.4;
    margin-bottom: 40px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    font-size: 1.15rem;
    padding: 16px 36px;
    border-radius: 60px;
}

/* Update Tombol Secondary agar cocok di background gelap */
.btn-secondary {
    background: rgba(255, 255, 255, 0.05); /* Sedikit kaca */
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5); /* Border putih transparan */
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #111; /* Teks jadi gelap pas disorot */
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* =======================================
   ABOUT SECTION (Max 100vh)
======================================= */
#about {
    padding: 80px 10% 40px; /* Padding dikurangi agar muat di layar */
    min-height: 100vh; /* Gunakan min-height agar tidak memotong konten */
    background: #ffffff;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; /* Jarak dirapatkan */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    justify-content: center;
    padding-top: 100px;
}

.badge {
    background: rgba(255, 140, 0, 0.1);
    color: var(--primary-orange);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.about-content h2 {
    text-align: left;
    font-size: 2.6rem; /* Ukuran font disesuaikan agar hemat tempat */
    line-height: 1.2;
    margin-bottom: 15px;
}

.about-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.highlight {
    color: var(--text-main);
    font-weight: 700;
}

.about-features-minimal {
    display: grid;
    gap: 12px; /* Jarak list dirapatkan */
}

.feature-small {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

.icon-mini {
    width: 22px;
    height: 22px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

/* --- MASCOT STYLING --- */
.about-mascot-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: end;
}

.mascot-img {
    width: 100%;
    max-width: 250px; /* Ukuran maskot disesuaikan agar tidak nabrak layar */
    border-radius: 20px; /* Opsional: karena file Anda JPG (punya background), border-radius akan memperhalus sudutnya */
    z-index: 2;
    animation: floatMascot 4s ease-in-out infinite;
}

.mascot-circle-bg {
    position: absolute;
    height: 100px;
    background: radial-gradient(
        circle,
        rgba(255, 140, 0, 0.15) 0%,
        transparent 70%
    );
    border-radius: 50%;
    z-index: 1;
}

.mascot-shadow {
    position: absolute;
    bottom: -30px;
    width: 150px;
    height: 15px;
    background: rgba(0, 0, 0, 0.1);
    filter: blur(8px);
    border-radius: 50%;
    animation: shadowResize 4s ease-in-out infinite;
}

/* --- ANIMASI --- */
@keyframes floatMascot {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes shadowResize {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 992px) {
    #about {
        height: auto; /* Cabut aturan 100vh di HP agar konten yang numpuk tidak terpotong */
        max-height: none;
        padding: 100px 10%;
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

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

    .feature-small {
        justify-content: center;
    }
}

/* --- TEAM SECTION --- */
.team-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* Warna background abu-abu sangat muda */
}

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

/* Header Section */
.team-header {
    text-align: center;
    margin-bottom: 20px;
}

.team-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1d1d1f;
    margin-bottom: 10px;
}

.team-header .text-orange {
    color: #ff8c00;
}

.team-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
}

.divider-orange {
    width: 60px;
    height: 4px;
    background-color: #ff8c00;
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Grid Layout */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Team Card */
.team-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 20px 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

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

/* Image Wrapper & Hover Effect */
.team-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 3.5;
    border-radius: 15px;
    overflow: hidden; /* Penting: Menyembunyikan sosmed sebelum di-hover */
    margin-bottom: 10px;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img {
    transform: scale(1.1); /* Efek zoom in pada gambar */
}

/* Social Media Overlay */
.team-social {
    position: absolute;
    bottom: -70px; /* Posisi awal di luar layar bawah wrapper */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 15px 0 25px 0;
    background: rgba(255, 140, 0, 0.9); /* Latar oranye transparan */
    backdrop-filter: blur(5px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-social {
    bottom: -10px; /* Meluncur ke atas menempel dasar gambar */
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #ffffff;
    color: #ff8c00;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #1d1d1f;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Typography Info */
.team-info {
    padding: 0 10px;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 5px;
}

.team-role {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff8c00;
    margin-bottom: 15px;
}

.team-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

/* =========================================
   OUR STORY SECTION (SLIDER & GLASS CARD)
   ========================================= */
.our-story-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background Slider Area */
.story-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.story-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0; /* Sembunyikan semua gambar awalnya */
    transition: opacity 1.5s ease-in-out; /* Efek memudar/fade yang halus */
}

.story-slide.active {
    opacity: 1; /* Tampilkan gambar yang aktif */
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(
        0,
        0,
        0,
        0.4
    ); /* Overlay gelap agar kotak terlihat jelas */
    z-index: 2;
}

/* Container & Card */
.story-container {
    position: relative;
    z-index: 3; /* Pastikan konten ada di atas overlay */
    width: 100%;
    padding: 0 5%;
}

.story-card {
    background: rgba(30, 30, 30, 0.85); /* Warna kotak gelap transparan */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 600px; /* Lebar maksimal kotak */
    color: #ffffff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Text Slider Area */
.story-text-slider {
    position: relative;
}

.text-slide {
    display: none; /* Sembunyikan semua teks */
    animation: fadeText 1s ease forwards;
}

.text-slide.active {
    display: block; /* Tampilkan teks yang aktif */
}

@keyframes fadeText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typography di dalam Kotak */
.story-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-orange, #ff8c00);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.story-card h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.story-card p {
    font-size: 1rem;
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 25px;
}

.story-quote {
    display: block;
    font-style: italic;
    font-size: 0.95rem;
    color: #9ca3af;
    margin-bottom: 40px;
}

/* Tombol Oranye bergaris luar */
.btn-story {
    display: inline-block;
    background-color: var(--primary-orange, #ff8c00);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-story:hover {
    background-color: #e67e00;
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Slide Indicators (Titik-titik bawah) */
.slide-indicators {
    display: flex;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transition: 0.3s;
}

.dot.active {
    background: var(--primary-orange, #ff8c00);
}

/* Responsive */
@media (max-width: 768px) {
    .story-card {
        padding: 30px 20px;
    }
    .story-card h2 {
        font-size: 2rem;
    }
}

/* --- FOOTER --- */
/* =========================================
   FOOTER SECTION
   ========================================= */
.site-footer {
    background-color: #f8f9fa; /* Abu-abu sangat muda */
    padding: 60px 0 20px 0;
    color: #6b7280;
    font-size: 0.9rem;
    border-top: 4px solid #ff8c00; /* Garis oranye di atas footer */
    font-family: "Plus Jakarta Sans", sans-serif;
}

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

/* Pengaturan Kolom */
.footer-grid {
    display: grid;
    /* Kolom pertama sedikit lebih lebar */
    grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.text-orange {
    color: #ff8c00;
}

/* Tipografi Judul (h2 & h3) */
.footer-brand h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 15px;
}

.footer-grid h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 25px;
    position: relative;
}

/* Garis bawah oranye pendek pada judul */
.footer-grid h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 35px;
    height: 3px;
    background-color: #ff8c00;
    border-radius: 2px;
}

/* Deskripsi & Alamat Kolom 1 */
.footer-brand p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-address {
    display: flex;
    gap: 12px;
    line-height: 1.5;
}

.footer-address i {
    color: #ff8c00;
    margin-top: 4px; /* Menyelaraskan ikon dengan baris pertama teks */
}

/* Ikon Sosial Media Lingkaran */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: #ff8c00;
    color: #ffffff;
    border-color: #ff8c00;
    transform: translateY(-3px);
}

/* Tautan Akses Cepat */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ff8c00;
    padding-left: 5px; /* Efek geser kanan saat di-hover */
}

/* Pusat Bantuan (Ikon Kotak Oranye) */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item .icon {
    width: 40px;
    height: 40px;
    background-color: #ffe8cc; /* Latar oranye sangat pudar */
    color: #ff8c00;
    border-radius: 8px; /* Kotak sudut melengkung */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-item .text {
    display: flex;
    flex-direction: column;
}

.contact-item .text span {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 2px;
}

.contact-item .text strong {
    font-size: 0.95rem;
    color: #1f2937;
    font-weight: 600;
}

/* Form Tetap Terhubung */
.footer-newsletter p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form {
    position: relative;
    width: 100%;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 50px 12px 15px; /* Ruang kanan untuk tombol */
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    border-color: #ff8c00;
}

.newsletter-form button {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%); /* Menengahkan tombol secara vertikal */
    background-color: #ff8c00;
    color: #ffffff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #e67e00;
}

/* Bottom Bar (Hak Cipta) */
.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9ca3af;
}

.footer-bottom strong {
    color: #1f2937;
    font-weight: 600;
}

/* =========================================
   RESPONSIVE DESIGN (Biar aman di HP & Tablet)
   ========================================= */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr); /* Berubah jadi 2 kolom */
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Berubah jadi 1 kolom bertumpuk di HP */
    }
}
