/* Global Styles */
:root {
    --primary-color: #800020;
    /* Maroon red */
    --secondary-color: #ff0404;
    --accent-color: #fdc304;
    --light-color: #f8f8f8;
    --dark-color: #333;
    --gray-color: #777;
    --light-gray: #eee;
    --green-color: #06a406;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Container umum tetap normal */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Khusus container di dalam header */
header>.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1,
h2,
h3,
h4 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 2rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.section {
    padding: 5rem 0;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
    text-align: center;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    display: flex;
    /* Tambahkan ini */
    justify-content: space-between;
    /* Tambahkan ini */
    align-items: center;
    /* Tambahkan ini */
}

header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.95);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--green-color);
}

.logo img {
    height: 50px;
    /* Sesuaikan ukuran */
    display: block;
}


.logo span {
    color: var(--accent-color);
}

nav ul {
    display: flex;
    margin-left: auto;
    /* Ini yang akan mendorong menu ke kanan */
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: var(--accent-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

#menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--accent-color);
    cursor: pointer;
}



/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/img/hero.webp') no-repeat center center/cover;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    width: 100%;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: white;
    animation: fadeInUp 1s ease;
}

.hero h2::after {
    display: none;
}

.price-highlight {
    font-size: 1.5rem;
    background-color: var(--primary-color);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

/* Video Section Styles */
.video-section {
    background-color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin: 2rem auto;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-caption {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 0 1rem;
    color: var(--gray-color);
    font-size: 1.1rem;
    line-height: 1.7;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.video-item h3 {
    margin-top: 1rem;
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .video-section {
        padding: 3rem 0;
    }

    .video-container {
        margin: 1.5rem auto;
    }

    .video-caption {
        font-size: 1rem;
    }
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text ul {
    margin: 1.5rem 0;
}

.about-text ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.about-text ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Facilities Section */
.facilities-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

/* Container utama - default untuk desktop (horizontal) */
.facilities-container {
    display: flex;
    /* Menggunakan flexbox */
    flex-wrap: wrap;
    /* Memungkinkan wrap ke baris baru */
    gap: 2rem;
    /* Jarak antar item */
    margin-top: 3rem;
}

/* Gaya untuk setiap kategori fasilitas */
.facility-category {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    flex: 1;
    /* Membagi ruang secara merata */
    min-width: 45%;
    /* Minimal lebar 45% */
}

/* Header kategori */
.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.category-header i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.category-header h3 {
    margin: 0;
    color: var(--primary-color);
}

/* Daftar fasilitas */
.facility-list {
    list-style: none;
    padding-left: 0;
}

.facility-list li {
    padding: 0.8rem 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
}

.facility-list li:last-child {
    border-bottom: none;
}

.facility-list li i {
    margin-right: 10px;
    color: var(--primary-color);
    min-width: 25px;
    font-size: 1.1rem;
}

/* Badge untuk fasilitas aktif */
.badge-active {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    margin-left: 8px;
    font-weight: bold;
}

/* Catatan tambahan */
.facility-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #e9ecef;
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
}

.facility-note p {
    margin: 0;
    color: var(--primary-color);
}

/* Efek hover */
.facility-category:hover {
    transform: translateY(-5px);
}

/* Responsive untuk mobile */
@media (max-width: 768px) {
    .facilities-container {
        flex-direction: column;
        /* Ubah ke vertikal */
    }

    .facility-category {
        min-width: 100%;
        /* Full width di mobile */
        flex: none;
        /* Reset flex */
        padding: 1.5rem;
        /* Padding lebih kecil di mobile */
    }

    .facility-section {
        padding: 3rem 0;
        /* Padding section lebih kecil */
    }

    .category-header i {
        font-size: 1.5rem;
        /* Ukuran icon lebih kecil */
    }
}


/* Location Section */
.location-section {
    background-color: var(--light-gray);
}

.location-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.location-map {
    flex: 2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.location-info {
    flex: 1;
}

.location-info ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.location-info ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
    min-width: 25px;
}

/* Pricing Section Styles */
.pricing-section {
    background-color: #f9f9f9;
    padding: 5rem 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 kolom sama lebar */
    gap: 1.5rem;
    margin: 3rem 0;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--dark-color);
    margin: 1.5rem 0;
}

.price span {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.pricing-card ul {
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.pricing-card ul li i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 1rem;
}

/* Featured Card */
.featured {
    border: 2px solid var(--accent-color);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: rgb(117, 3, 3);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
    color: white;
    border-radius: 10px;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
}

.promo-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.promo-content p {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.promo-content small {
    opacity: 0.9;
    font-size: 0.85rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        /* 2 kolom di tablet */
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        /* 1 kolom di mobile */
    }

    .promo-banner {
        flex-direction: column;
        text-align: center;
    }

    .promo-content {
        margin-bottom: 1rem;
    }
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* Footer */
.footer {
    background-color: #f8f9fa;
    /* bisa diganti sesuai tema */
    color: #333;
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.footer-about h3 span {
    color: var(--accent-color);
}

.footer-about p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links ul li a:hover {
    opacity: 1;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 50px 0 20px;
    font-size: 0.95rem;
}

.footer-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 kolom */
    gap: 40px;
}

.footer-column h3 {
    margin-bottom: 15px;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    color: var(--light-color);
    line-height: 1.5;
}

.footer-column ul li a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Copyright */
footer .copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-color);
    color: var(--gray-color);
    font-size: 0.9rem;
}

body.dark-mode .footer {
    background-color: #111;
    color: #eee;
    border-top-color: #444;
}

/* Responsive untuk HP */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        /* jadi 1 kolom di HP */
        text-align: center;
    }

    .footer-column h3 {
        margin-top: 20px;
    }
}


/* WHATSAPP POPUP */
.wa-fixed {
    position: fixed;
    bottom: 20px;
    /* Jarak dari bawah */
    right: 20px;
    /* Jarak dari kanan */
    background-color: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
}

.wa-fixed:hover {
    transform: scale(1.05);
    background-color: #1ebc5a;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {

    .about-content,
    .location-content,
    .contact-content {
        flex-direction: column;
    }

    .about-image,
    .location-map,
    .contact-info {
        width: 100%;
        margin-bottom: 2rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .promo-banner {
        flex-direction: column;
        text-align: center;
    }

    .promo-content {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 2rem;
    }

    nav ul li {
        margin: 1rem 0;
    }

    #menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .price-highlight {
        font-size: 1.2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero h2 {
        font-size: 1rem;
    }

    .price-highlight {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .featured {
        transform: scale(1);
    }
}

/* Style untuk form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 1em;
}

/* Style untuk validasi */
input:invalid,
select:invalid,
textarea:invalid {
    border-color: #ff6b6b;
}

input:focus:invalid,
select:focus:invalid,
textarea:focus:invalid {
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {

    .about-content,
    .location-content,
    .contact-content {
        flex-direction: column;
    }

    .about-image,
    .location-map,
    .contact-info {
        width: 100%;
        margin-bottom: 2rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .promo-banner {
        flex-direction: column;
        text-align: center;
    }

    .promo-content {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 2rem;
    }

    nav ul li {
        margin: 1rem 0;
    }

    #menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .price-highlight {
        font-size: 1.2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero h2 {
        font-size: 1rem;
    }

    .price-highlight {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .featured {
        transform: scale(1);
    }
}

/* Style untuk form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 1em;
}

/* Style untuk validasi */
input:invalid,
select:invalid,
textarea:invalid {
    border-color: #ff6b6b;
}

input:focus:invalid,
select:focus:invalid,
textarea:focus:invalid {
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

/* Reset Slider */
.gallery-slider {
    position: relative;
    max-width: 100%;
    margin: 2rem auto;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
}

.slider-prev {
    left: 1rem;
}

.slider-next {
    right: 1rem;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4/3;
    /* Rasio gambar 4:3 */
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    padding: 1.5rem 1rem 1rem;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 kolom di laptop */
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 kolom di tablet */
    }

    .gallery-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        /* 1 kolom di mobile */
    }

    .caption {
        padding: 1rem 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
}


.carousel-container {
    padding: 40px 20px;
    text-align: center;
    background-color: #fff;
}

.carousel-title {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.carousel {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    max-height: 450px;
    object-fit: cover;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    z-index: 2;
}

.carousel-button.prev {
    left: 15px;
}

.carousel-button.next {
    right: 15px;
}

.carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* FORM KHUSUS BTN */
.btn-submit {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-color);
}

/* POP UP WHATSAPP */
.wa-popup-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.wa-floating-btn {
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 10%;
    width: 55px;
    height: 55px;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.wa-floating-btn:hover {
    transform: scale(1.1);
}

.wa-form-popup {
    background: white;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 10px;
    width: 260px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wa-form-popup input,
.wa-form-popup textarea {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.wa-form-popup button {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 10px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}

.hidden {
    display: none;
}