:root {
    --primary: #376C2F;
    --bg: #f5f7f6;
}

* {
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body {
    background: var(--bg);
}





/* NAVBAR */
.navbar {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
    background:white;
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
}

/* NAV DESKTOP */
.nav-links {
    display:flex;
    gap:20px;
}

.nav-links a {
    text-decoration:none;
    color:#333;
}

/* HAMBURGER (default hidden) */
.hamburger {
    display:none;
    font-size:26px;
    cursor:pointer;
}

/* 📱 MODE HP */
@media(max-width:768px){

    /* munculin hamburger */
    .hamburger {
        display:block;
    }

    /* sembunyikan menu */
    .nav-links {
        display:none;
        position:absolute;
        top:70px;
        right:0;
        background:white;
        width:200px;
        flex-direction:column;
        padding:20px;
        box-shadow:0 5px 20px rgba(0,0,0,0.1);
    }

    /* kalau aktif (klik) */
    .nav-links.active {
        display:flex;
    }

    .nav-links a {
        padding:10px 0;
    }
}


/* ========================= */
/* NAVBAR RESPONSIVE FINAL */
/* ========================= */

/* default desktop */
.nav-links {
    display: flex;
    gap: 20px;
}

/* hamburger hidden di desktop */
.hamburger {
    display: none;
}

/* MODE HP */
@media (max-width: 768px){

    /* tampilkan hamburger */
    .hamburger {
        display: block;
        font-size: 26px;
        cursor: pointer;
    }

    /* sembunyikan menu awal */
    .nav-links {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        width: 220px;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }

    /* saat diklik */
    .nav-links.active {
        display: flex !important;
    }

    .nav-links a {
        padding: 10px 0;
        width: 100%;
    }
}


/* NAVBAR */
.navbar {
    position:fixed;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
    background:white; /* PUTIH */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index:1000;
    height: 70px;
}

.navbar img {
    height: 100px; /* logo lebih besar dari navbar */
    margin-top: -5px; /* naik sedikit biar pas */
}

.nav-links a {
    color:#376C2F; /* HIJAU */
    margin-left:20px;
    text-decoration:none;
    font-weight:500;
}
.nav-links a:hover {
    color:#4CAF50;
}


/* HERO */
.hero {
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('/ecorise/assets/hero.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-content {
    color:white;
    text-align:center;
}

.hero-content h1 {
    font-size:48px;
}

/* SEARCH */
.search-box {
    margin-top:20px;
    background:white;
    padding:20px;
    border-radius:12px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    justify-content:center;
}

input, select {
    padding:10px;
    border-radius:8px;
    border:1px solid #ddd;
}

/* BUTTON */
.btn {
    background: var(--primary);
    color:white;
    padding:10px 20px;
    border:none;
    border-radius:8px;
    
    text-decoration: none;

    
}
/* HERO BUTTON */
.btn-hero {
    display:inline-block;
    margin-top:20px;
    background:#376C2F;
    color:white;
    padding:14px 30px;
    border-radius:10px;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
    transition:0.3s;
}

.btn-hero:hover {
    background:#4CAF50;
    transform:translateY(-3px);
}

/* SECTION */
.section {
    padding:80px 40px;
    text-align:center;
}

.section h2 {
    margin-bottom: 25px;
}

.cards {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.card {
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    transition:0.3s;
    padding-bottom:20px;
    min-height: 450px; /* INI YANG BIKIN LEBIH PANJANG */
}

.card {
    padding:15px;
}

.card h3 {
    margin-top:10px;
}

.btn-card {
    margin-top:20px;
    width:100%;
    text-align:center;
    display:block;
    text-decoration: none;
}

.card:hover {
    transform:translateY(-8px);
}

.card img {
    width:100%;
    height:220px;
    object-fit:cover;
    transition:0.3s;
}

.card:hover img {
    transform:scale(1.05);
}

/* FOOTER */
footer {
    background: var(--primary);
    color:white;
    padding:20px;
    text-align:center;
}

/* RESPONSIVE */
.hero {
    height: 100vh;
}

@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
        height: auto;
        padding: 40px 20px;
    }
}


/* HERO ABOUT */
.hero-about {
    height:60vh;
    background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('/ecorise/assets/foto1.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* ABOUT BOX */
.about-box {
    max-width:900px;
    margin:auto;
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    text-align:left;
    line-height:1.8;
}

/* GALERI GRID */
.gallery {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:15px;
}

.gallery img {
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:12px;
    transition:0.3s;
}

.gallery img:hover {
    transform:scale(1.05);
}

/* ABOUT PREVIEW */
.about-preview {
    display:flex;
    align-items:center;
    gap:30px;
    margin-top:30px;
}

.about-text {
    flex:1;
    text-align:left;
}

.about-text p {
    line-height:1.8;
}

.about-image {
    flex:1;
}

.about-image img {
    width:100%;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.about-text .btn {
    display: inline-block;
    margin-top: 15px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .about-preview {
        flex-direction:column;
    }
}


/* WHATSAPP FLOAT */
.wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    /* background: #ffff; */
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.wa-float img {
    width: 35px;
    height: 35px;
}

.wa-float:hover {
    transform: scale(1.1);
}

.card ul {
    text-align:left;
    padding: 0 20px;
    margin-bottom: 15px;
}

.card ul li {
    margin-bottom: 5px;
    font-size: 14px;
}


/* MAP RESPONSIVE */
.map-container {
    margin-top: 30px;
    margin-bottom: 50px; /* INI JARAK KE BAWAH */
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* CONTACT PREMIUM */
.contact-container {
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.contact-card {
    background:white;
    padding:25px;
    border-radius:15px;
    width:250px;
    text-align:center;
    text-decoration:none;
    color:black;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    transition:0.3s;
}

.contact-card:hover {
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.contact-card .icon {
    font-size:40px;
    margin-bottom:10px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
}


/* RESPONSIVE */
@media(max-width:768px){
    .contact-container {
        flex-direction:column;
        align-items:center;
    }
}

/* ===== TESTIMONI ===== */

.testimoni-container {
    overflow:hidden;
    margin-top:20px;
}

.testimoni-slider {
    display:flex;
    gap:20px;
    transition:0.3s;
}

/* CARD */
.testimoni-card {
    min-width:260px;
    background:white;
    padding:20px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    flex-shrink:0;
}

/* NAMA */
.testimoni-card h3 {
    font-size:16px;
    margin-bottom:5px;
}

/* RATING */
.testimoni-card .rating {
    color:gold;
    margin-bottom:10px;
}

/* KOMENTAR */
.testimoni-card p {
    font-size:14px;
    color:#555;
    font-style:italic;
}

/* PAKET */
.testimoni-card small {
    color:#999;
    font-size:12px;
}


:root {
    --primary: #376C2F;
    --bg: #f5f7f6;
}

* {
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body {
    background: var(--bg);
}





/* NAVBAR */
.navbar {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
    background:white;
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
}

/* NAV DESKTOP */
.nav-links {
    display:flex;
    gap:20px;
}

.nav-links a {
    text-decoration:none;
    color:#333;
}

/* HAMBURGER (default hidden) */
.hamburger {
    display:none;
    font-size:26px;
    cursor:pointer;
}

/* 📱 MODE HP */
@media(max-width:768px){

    /* munculin hamburger */
    .hamburger {
        display:block;
    }

    /* sembunyikan menu */
    .nav-links {
        display:none;
        position:absolute;
        top:70px;
        right:0;
        background:white;
        width:200px;
        flex-direction:column;
        padding:20px;
        box-shadow:0 5px 20px rgba(0,0,0,0.1);
    }

    /* kalau aktif (klik) */
    .nav-links.active {
        display:flex;
    }

    .nav-links a {
        padding:10px 0;
    }
}


/* ========================= */
/* NAVBAR RESPONSIVE FINAL */
/* ========================= */

/* default desktop */
.nav-links {
    display: flex;
    gap: 20px;
}

/* hamburger hidden di desktop */
.hamburger {
    display: none;
}

/* MODE HP */
@media (max-width: 768px){

    /* tampilkan hamburger */
    .hamburger {
        display: block;
        font-size: 26px;
        cursor: pointer;
    }

    /* sembunyikan menu awal */
    .nav-links {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        width: 220px;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }

    /* saat diklik */
    .nav-links.active {
        display: flex !important;
    }

    .nav-links a {
        padding: 10px 0;
        width: 100%;
    }
}


/* NAVBAR */
.navbar {
    position:fixed;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
    background:white; /* PUTIH */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index:1000;
    height: 70px;
}

.navbar img {
    height: 100px; /* logo lebih besar dari navbar */
    margin-top: -5px; /* naik sedikit biar pas */
}

.nav-links a {
    color:#376C2F; /* HIJAU */
    margin-left:20px;
    text-decoration:none;
    font-weight:500;
}
.nav-links a:hover {
    color:#4CAF50;
}


/* HERO */
.hero {
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('/ecorise/assets/hero.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-content {
    color:white;
    text-align:center;
}

.hero-content h1 {
    font-size:48px;
}

/* SEARCH */
.search-box {
    margin-top:20px;
    background:white;
    padding:20px;
    border-radius:12px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    justify-content:center;
}

input, select {
    padding:10px;
    border-radius:8px;
    border:1px solid #ddd;
}

/* BUTTON */
.btn {
    background: var(--primary);
    color:white;
    padding:10px 20px;
    border:none;
    border-radius:8px;
    
    text-decoration: none;

    
}
/* HERO BUTTON */
.btn-hero {
    display:inline-block;
    margin-top:20px;
    background:#376C2F;
    color:white;
    padding:14px 30px;
    border-radius:10px;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
    transition:0.3s;
}

.btn-hero:hover {
    background:#4CAF50;
    transform:translateY(-3px);
}

/* SECTION */
.section {
    padding:80px 40px;
    text-align:center;
}

.section h2 {
    margin-bottom: 25px;
}

.cards {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.card {
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    transition:0.3s;
    padding-bottom:20px;
    min-height: 450px; /* INI YANG BIKIN LEBIH PANJANG */
}

.card {
    padding:15px;
}

.card h3 {
    margin-top:10px;
}

.btn-card {
    margin-top:20px;
    width:100%;
    text-align:center;
    display:block;
    text-decoration: none;
}

.card:hover {
    transform:translateY(-8px);
}

.card img {
    width:100%;
    height:220px;
    object-fit:cover;
    transition:0.3s;
}

.card:hover img {
    transform:scale(1.05);
}

/* FOOTER */
footer {
    background: var(--primary);
    color:white;
    padding:20px;
    text-align:center;
}

/* RESPONSIVE */
@media(max-width:768px){
    .hero-content h1 {
        font-size:28px;
    }
    .search-box {
        flex-direction:column;
    }
}


/* HERO ABOUT */
.hero-about {
    height:60vh;
    background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('/ecorise/assets/foto1.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* ABOUT BOX */
.about-box {
    max-width:900px;
    margin:auto;
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    text-align:left;
    line-height:1.8;
}

/* GALERI GRID */
.gallery {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:15px;
}

.gallery img {
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:12px;
    transition:0.3s;
}

.gallery img:hover {
    transform:scale(1.05);
}

/* ABOUT PREVIEW */
.about-preview {
    display:flex;
    align-items:center;
    gap:30px;
    margin-top:30px;
}

.about-text {
    flex:1;
    text-align:left;
}

.about-text p {
    line-height:1.8;
}

.about-image {
    flex:1;
}

.about-image img {
    width:100%;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.about-text .btn {
    display: inline-block;
    margin-top: 15px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .about-preview {
        flex-direction:column;
    }
}


/* WHATSAPP FLOAT */
.wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    /* background: #ffff; */
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.wa-float img {
    width: 35px;
    height: 35px;
}

.wa-float:hover {
    transform: scale(1.1);
}

.card ul {
    text-align:left;
    padding: 0 20px;
    margin-bottom: 15px;
}

.card ul li {
    margin-bottom: 5px;
    font-size: 14px;
}


/* MAP RESPONSIVE */
.map-container {
    margin-top: 30px;
    margin-bottom: 50px; /* INI JARAK KE BAWAH */
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* CONTACT PREMIUM */
.contact-container {
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.contact-card {
    background:white;
    padding:25px;
    border-radius:15px;
    width:250px;
    text-align:center;
    text-decoration:none;
    color:black;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    transition:0.3s;
}

.contact-card:hover {
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.contact-card .icon {
    font-size:40px;
    margin-bottom:10px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
}


/* RESPONSIVE */
@media(max-width:768px){
    .contact-container {
        flex-direction:column;
        align-items:center;
    }
}

/* ===== TESTIMONI ===== */

/* CONTAINER */
.testimoni-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

/* HIDE SCROLLBAR */
.testimoni-container::-webkit-scrollbar {
    display: none;
}

/* SLIDER */
.testimoni-slider {
    display: flex;
    gap: 20px;
}

/* CARD */
.testimoni-card {
    min-width: 250px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    flex-shrink: 0;
    text-align: center;
}

/* RATING */
.rating {
    color: #f1c40f;
    margin: 5px 0;
}

/* KOMENTAR */
.testimoni-card p {
    font-size:14px;
    color:#555;
    font-style:italic;
}

/* PAKET */
.testimoni-card small {
    color:#999;
    font-size:12px;
}


.eco-box {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    margin: 40px auto;
    max-width: 900px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.eco-text {
    line-height: 1.8;
    font-size: 15px;
    color: #444;
    text-align: center;
    
}



.desc {
    font-size: 13px;
    color: #666;
    margin: 10px 0;
    min-height: 50px;
}

.harga {
    font-weight: bold;
    color: #376C2F;
    margin-top: 5px;
}

.kapasitas {
    margin-top: 5px;
    font-size: 13px;
}

.slot-tersedia {
    color: #2ecc71;
    font-weight: bold;
}

.slot-habis {
    color: #e74c3c;
    font-weight: bold;
}

.btn[disabled] {
    cursor: not-allowed;
}




