    :root {
        --primary: #2a9d8f;
        --secondary: #264653;
        --accent: #e9c46a;
        --light: #f8f9fa;
        --dark: #343a40;
    }

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

    body {
        font-family: 'Poppins', sans-serif;
        line-height: 1.6;
        color: var(--dark);
        overflow-x: hidden;
    }

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

    /* Header */
    header {
        background-color: rgb(1, 68, 16);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: fixed;
        width: 100%;
        z-index: 1000;
        padding: 15px 0;
        transition: all 0.3s ease;
    }

    header.scrolled {
        padding: 10px 0;
        background-color: rgba(1, 68, 40, 0.47);
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #ffffff;
        border-radius: 10px;
    }

    .logo {
        display: flex;
        align-items: center;
    }

    .logo img {
        height: 50px;
        margin-right: 10px;
    }

    .logo-text h1 {
        font-size: 1.5rem;
        color: var(--primary);
        font-weight: 700;
    }

    .logo-text p {
        font-size: 0.8rem;
        color: var(--secondary);
    }

    nav ul {
        display: flex;
        list-style: none;
    }

    nav ul li {
        margin-left: 30px;
    }

    nav ul li a {
        text-decoration: none;
        color: var(--dark);
        font-weight: 500;
        transition: color 0.3s;
        position: relative;
    }

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

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

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

    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--dark);
        cursor: pointer;
    }

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

    .hero-content {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 3rem;
        margin-bottom: 20px;
        font-weight: 700;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .cta-button {
        display: inline-block;
        background-color: var(--primary);
        color: white;
        padding: 12px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
        border: 2px solid var(--primary);
    }

    .cta-button:hover {
        background-color: transparent;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .scroll-down {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        color: white;
        font-size: 2rem;
        animation: bounce 2s infinite;
        cursor: pointer;
    }

    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0) translateX(-50%);
        }

        40% {
            transform: translateY(-20px) translateX(-50%);
        }

        60% {
            transform: translateY(-10px) translateX(-50%);
        }
    }

    /* About Section */
    /* About Section */
    .section {
        padding: 80px 0;
    }

    .section-title {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-title h2 {
        font-size: 2.5rem;
        color: var(--secondary);
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }

    .section-title h2::after {
        content: '';
        position: absolute;
        width: 50%;
        height: 3px;
        background-color: var(--primary);
        bottom: 0;
        left: 25%;
    }

    .about-content {
        display: flex;
        align-items: flex-start;
        /* Changed from center to flex-start for better alignment */
        gap: 50px;
    }

    .about-text {
        flex: 1;
    }

    .about-text h3 {
        font-size: 1.8rem;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .about-text p {
        margin-bottom: 15px;
        line-height: 1.7;
    }

    .feature-list {
        margin: 20px 0;
        padding-left: 0;
        list-style: none;
    }

    .feature-list li {
        margin-bottom: 10px;
        padding: 10px 15px;
        background-color: rgba(42, 157, 143, 0.1);
        border-radius: 5px;
        display: flex;
        align-items: center;
    }

    .feature-list i {
        color: var(--primary);
        margin-right: 10px;
        font-size: 1.2rem;
    }

    .about-image {
        flex: 1;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        align-self: center;
        /* Ensure image stays centered vertically */
    }

    .about-image img {
        width: 100%;
        height: auto;
        transition: transform 0.5s;
        display: block;
    }

    .about-image:hover img {
        transform: scale(1.05);
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .about-content {
            flex-direction: column;
        }

        .about-image {
            width: 100%;
            margin-top: 30px;
        }

        .section-title h2 {
            font-size: 2rem;
        }

        .about-text h3 {
            font-size: 1.5rem;
        }
    }

    @media (max-width: 576px) {
        .section {
            padding: 60px 0;
        }

        .section-title h2 {
            font-size: 1.8rem;
        }
    }

    /* Gallery Section */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .gallery-item {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        height: 250px;

    }

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

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

    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-overlay i {
        color: white;
        font-size: 2rem;
    }


    /* FAQ */
    /* FAQ Section Styles */
    .faq-section {
        padding: 60px 0;
        background-color: #f9f9f9;
    }

    .section-title {
        text-align: center;
        margin-bottom: 40px;
        color: #333;
    }

    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .faq-question {
        padding: 20px;
        background-color: #fff;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color 0.3s;
    }

    .faq-question:hover {
        background-color: #f0f0f0;
    }

    .faq-question h3 {
        margin: 0;
        font-size: 18px;
        color: #333;
    }

    .toggle-icon {
        font-size: 20px;
        font-weight: bold;
    }

    .faq-answer {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        background-color: #fff;
        transition: max-height 0.3s ease-out, padding 0.3s ease;
    }

    .faq-answer p {
        margin: 0;
        padding-bottom: 20px;
        color: #555;
        line-height: 1.6;
    }

    /* Active state */
    .faq-item.active .faq-answer {
        max-height: 200px;
        padding-top: 10px;
    }

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

    /* Pricing Section */
    .pricing {
        background-color: var(--light);
    }

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

    .pricing-card {
        background-color: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s;
    }

    .pricing-card:hover {
        transform: translateY(-10px);
    }

    .pricing-header {
        background-color: var(--primary);
        color: white;
        padding: 20px;
        text-align: center;
    }

    .pricing-header h3 {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }

    .price {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .price span {
        font-size: 1rem;
        font-weight: normal;
    }

    .pricing-body {
        padding: 30px;
    }

    .pricing-features {
        list-style: none;
        margin-bottom: 30px;
    }

    .pricing-features li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
    }

    .pricing-features li i {
        color: var(--primary);
        margin-right: 10px;
    }

    .pricing-button {
        display: block;
        text-align: center;
        background-color: var(--primary);
        color: white;
        padding: 12px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
    }

    .pricing-button:hover {
        background-color: var(--secondary);
    }

    /* Facilities Section */
    .facilities {
        padding: 100px 0;
        background: var(--white);
    }

    .facilities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .facility-card {
        background: #f8f9fa;
        border-radius: 10px;
        padding: 30px;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .facility-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .facility-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        overflow: hidden;
        border: 3px solid var(--primary-color);
        transition: var(--transition);
    }

    .facility-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .facility-card:hover .facility-icon {
        transform: scale(1.1);
        border-color: var(--secondary-color);
    }

    .facility-card:hover .facility-icon img {
        transform: scale(1.1);
    }

    .facility-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--primary-color);
    }

    .facility-card p {
        color: var(--text-light);
        line-height: 1.6;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .facilities {
            padding: 80px 0;
        }

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

        .facility-card {
            padding: 20px;
        }

        .facility-icon {
            width: 70px;
            height: 70px;
        }
    }

    /* Location Section */
    .location-content {
        display: flex;
        gap: 50px;
        align-items: center;
    }

    .location-map {
        flex: 1;
        height: 400px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

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

    .location-info {
        flex: 1;
    }

    .location-info h3 {
        font-size: 1.8rem;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .location-info p {
        margin-bottom: 15px;
    }

    /* Testimonials Section */
    .testimonials {
        background-color: var(--light);
    }

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

    .testimonial-card {
        background-color: white;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .testimonial-text {
        font-style: italic;
        margin-bottom: 20px;
        position: relative;
    }

    .testimonial-text::before {
        content: '"';
        font-size: 4rem;
        color: var(--primary);
        opacity: 0.2;
        position: absolute;
        top: -20px;
        left: -10px;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
    }

    .testimonial-author img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 15px;
    }

    .author-info h4 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .author-info p {
        font-size: 0.9rem;
        color: #777;
    }

    /* CTA Section */
    .cta {
        background: linear-gradient(rgba(42, 157, 143, 0.9), rgba(38, 70, 83, 0.9)), url('https://nuansahanjawongvillas.com/wp-content/uploads/2025/07/Untitled-design-768x432.webp') no-repeat center center/cover;
        color: white;
        text-align: center;
        padding: 100px 0;
    }

    .cta h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .cta p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto 30px;
    }

    /* Contact Section */
    .contact-content {
        display: flex;
        gap: 50px;
    }

    .contact-info {
        flex: 1;
    }

    .contact-info h3 {
        font-size: 1.8rem;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .contact-details {
        margin-bottom: 30px;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
    }

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

    .contact-form {
        flex: 1;
        background-color: var(--light);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

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

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-family: 'Poppins', sans-serif;
    }

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

    .submit-btn {
        background-color: var(--primary);
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 5px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
    }

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

    /* Footer */
    footer {
        background-color: var(--secondary);
        color: white;
        padding: 60px 0 20px;
    }

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

    .footer-column h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }

    .footer-column h3::after {
        content: '';
        position: absolute;
        width: 50px;
        height: 2px;
        background-color: var(--primary);
        bottom: 0;
        left: 0;
    }

    .footer-column p {
        margin-bottom: 15px;
        opacity: 0.8;
    }

    .footer-links {
        list-style: none;
    }

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

    .footer-links a {
        color: white;
        text-decoration: none;
        opacity: 0.8;
        transition: opacity 0.3s;
    }

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

    .social-links {
        display: flex;
        gap: 15px;
    }

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

    .social-links a:hover {
        background-color: var(--primary);
        transform: translateY(-3px);
    }

    .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0.8;
        font-size: 0.9rem;
    }

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

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

        .about-image,
        .location-map,
        .contact-info,
        .contact-form {
            width: 100%;
        }

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

    @media (max-width: 768px) {
        nav ul {
            position: fixed;
            top: 80px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 80px);
            background-color: white;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: left 0.3s;
        }

        nav ul.active {
            left: 0;
        }

        nav ul li {
            margin: 15px 0;
        }

        .mobile-menu-btn {
            display: block;
        }

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

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

        .section-title h2 {
            font-size: 2rem;
        }
    }

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

        .section {
            padding: 60px 0;
        }

        .section-title h2 {
            font-size: 1.8rem;
        }
    }

    .star-rating {
        display: inline-block;
        margin-left: 10px;
    }

    .star-rating i {
        color: #FFD700;
        /* Warna emas untuk bintang */
        font-size: 0.9rem;
    }

    .feature-name {
        display: inline-block;
        min-width: 120px;
        text-align: left;
    }

    .pricing-features li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px solid #eee;
    }

    /* Price Styling */
    .pricing-header .price {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .original-price {
        text-decoration: line-through;
        color: #999;
        font-size: 1rem;
        font-weight: normal;
    }



    .price-unit {
        font-size: 1rem;
        /* Smaller size for unit */
        font-weight: normal;
    }

    /* Add red ribbon for promo */
    .pricing-card {
        position: relative;
        overflow: hidden;
    }

    .pricing-card::before {
        content: "PROMO";
        position: absolute;
        top: 15px;
        right: -30px;
        background: #e63946;
        color: white;
        padding: 3px 35px;
        font-size: 0.8rem;
        font-weight: bold;
        transform: rotate(45deg);
        z-index: 1;
    }

    /* Adjust the pricing grid for 5 columns */
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    @media (max-width: 1200px) {
        .pricing-grid {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }
    }

    @media (max-width: 992px) {
        .pricing-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

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


    /* SweetAlert2 Customization */
    .swal2-popup {
        border-radius: 15px !important;
    }

    .swal2-actions-vertical {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .swal2-styled.swal2-confirm {
        margin-bottom: 10px !important;
        width: 100% !important;
    }

    .swal2-styled.swal2-deny {
        width: 100% !important;
    }

    .swal2-form .form-group {
        margin-bottom: 10px;
        width: 100%;
    }

    .swal2-input,
    .swal2-select,
    .swal2-textarea {
        width: 100% !important;
        margin: 3px 0 !important;
        padding: 10px 15px !important;
        border-radius: 8px !important;
        border: 1px solid #ddd !important;
    }

    .swal2-select {
        display: block !important;
        height: 10px !important;
    }

    .swal2-textarea {
        min-height: 100px !important;
        resize: vertical !important;
    }

    .swal2-select {
        display: none !important;
    }


    /* VIDEO */
    .video-hero {
        position: relative;
        width: 100%;
        height: 80vh;
        min-height: 500px;
        overflow: hidden;
    }

    .video-hero video {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: 1;
        object-fit: cover;
    }

    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
    }

    .video-content {
        text-align: center;
        padding: 20px;
        max-width: 800px;
    }

    .video-content h2 {
        font-size: 3rem;
        margin-bottom: 15px;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    }

    .video-content p {
        font-size: 1.5rem;
        margin-bottom: 30px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .video-cta {
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid white;
        color: white;
        padding: 12px 30px;
        border-radius: 50px;
        font-size: 1.2rem;
        cursor: pointer;
        backdrop-filter: blur(5px);
        transition: all 0.3s ease;
    }

    .video-cta:hover {
        background: var(--primary);
        transform: scale(1.05);
    }

    .video-cta i {
        margin-right: 10px;
    }

    /* Fallback for browsers that don't support video */
    .video-hero::before {
        content: "";
        background: url('assets/img/video-fallback.jpg') center/cover no-repeat;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .video-hero {
            height: 60vh;
        }

        .video-content h2 {
            font-size: 2rem;
        }

        .video-content p {
            font-size: 1.2rem;
        }
    }


    /* Video Section */
    .video-section {
        padding: 80px 0;
        background: #f8f9fa;
    }

    .video-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 40px;
    }

    .video-wrapper {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .video-container {
        position: relative;
        padding-bottom: 56.25%;
        /* 16:9 Aspect Ratio */
        height: 0;
        overflow: hidden;
    }

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

    .video-caption {
        text-align: center;
        padding: 15px;
        font-weight: 600;
        color: var(--primary-color);
        margin: 0;
    }

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

        .video-section {
            padding: 60px 0;
        }
    }

    /* Video Portrait Section */
    .portrait-video-section {
        padding: 40px 0;
        background-color: #f5f5f5;
    }

    .portrait-video-container {
        position: relative;
        width: 100%;
        max-width: 400px;
        /* Lebar maksimal untuk tampilan potret */
        margin: 0 auto;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .portrait-video {
        width: 100%;
        height: auto;
        aspect-ratio: 9/16;
        /* Rasio potret 9:16 */
        display: block;
        background: #000;
    }

    .video-fallback {
        display: none;
        position: relative;
        padding-bottom: 177.78%;
        /* 9:16 aspect ratio */
        height: 0;
        overflow: hidden;
    }

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

    /* Fallback untuk browser yang tidak support */
    .no-portrait-video .portrait-video {
        display: none;
    }

    .no-portrait-video .video-fallback {
        display: block;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .portrait-video-container {
            max-width: 320px;
        }

        .portrait-video-section {
            padding: 30px 0;
        }
    }

    /* Lightbox Gallery */
    .gallery-link {
        display: block;
        position: relative;
        overflow: hidden;
        border-radius: 8px;
    }

    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-overlay i {
        color: white;
        font-size: 2rem;
        transition: transform 0.3s ease;
    }

    .gallery-item:hover .gallery-overlay i {
        transform: scale(1.2);
    }

    /* Lightbox custom styling */
    .basicLightbox__placeholder {
        max-width: 90%;
        max-height: 90%;
    }

    .basicLightbox__placeholder img {
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    /* LIGHT BOX
     */
    .lightbox-content {
        position: relative;
        text-align: center;
    }

    .lightbox-content img {
        max-height: 80vh;
        max-width: 90vw;
        display: block;
        margin: 0 auto;
    }

    .lightbox-caption {
        color: white;
        padding: 10px 0;
        font-size: 1.2rem;
        margin-top: 10px;
    }

    /* Navigation buttons */
    .basicLightbox__placeholder button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 10;
    }

    .basicLightbox__placeholder button:nth-child(1) {
        left: 20px;
    }

    .basicLightbox__placeholder button:nth-child(2) {
        right: 20px;
    }


    /* IMAGE BONCUE */
    .image-bounce-section {
        padding: 60px 0;
        text-align: center;
        background-color: #f9f9f9;
        /* bisa disesuaikan */
    }

    .bounce-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .bounce-animation {
        max-width: 100%;
        height: auto;
        max-height: 150px;
        animation: bounce 2s infinite ease-in-out;
    }

    @keyframes bounce {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-30px);
        }
    }

    /* Klik Hubungi Kami */
    .clickable-image {
        cursor: pointer;
        transition: transform 0.3s;
    }

    .clickable-image:hover {
        transform: scale(1.05);
    }

    .popup-modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .popup-content {
        background-color: #fefefe;
        margin: 15% auto;
        padding: 25px;
        border-radius: 10px;
        width: 80%;
        max-width: 400px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
    }

    .close-popup {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
    }

    .close-popup:hover {
        color: #333;
    }

    .popup-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 25px;
    }

    .popup-btn {
        padding: 12px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        transition: all 0.3s;
    }

    .survey-btn {
        background-color: #4CAF50;
        color: white;
    }

    .survey-btn:hover {
        background-color: #45a049;
    }

    .contact-btn {
        background-color: #2196F3;
        color: white;
    }

    .contact-btn:hover {
        background-color: #0b7dda;
    }

    /* SITEPLINE */
    /* Site Plan Section */
    .site-plan-section {
        padding: 100px 0;
        background: #f8f9fa;
    }

    .site-plan-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
        margin-top: 50px;
    }

    .site-plan-image {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .site-plan-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .site-plan-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    /* Block Markers */
    .block-marker {
        position: absolute;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        cursor: pointer;
        z-index: 10;
        transition: var(--transition);
    }

    .block-marker::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

    .marker-tooltip {
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: var(--primary-color);
        color: white;
        padding: 6px 12px;
        border-radius: 4px;
        font-size: 0.8rem;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        margin-bottom: 8px;
    }

    .marker-tooltip::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-width: 6px;
        border-style: solid;
        border-color: var(--primary-color) transparent transparent transparent;
    }

    .block-marker:hover .marker-tooltip {
        opacity: 1;
        visibility: visible;
        bottom: calc(100% + 5px);
    }

    /* Block Info */
    .block-info {
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .block-info h3 {
        color: var(--primary-color);
        margin-bottom: 25px;
        text-align: center;
    }

    .block-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .block-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px;
        border-radius: 8px;
        background: #f8f9fa;
        transition: var(--transition);
    }

    .block-item:hover {
        transform: translateX(5px);
        background: #e9ecef;
    }

    .block-color {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .block-details h4 {
        margin: 0 0 5px 0;
        color: var(--primary-color);
    }

    .block-details p {
        margin: 0;
        font-size: 0.9rem;
        color: #666;
    }

    /* Block Colors */
    .bronze .block-color {
        background: rgb(122, 2, 2);
    }

    .silver .block-color {
        background: #c0c0c0;
    }

    .gold .block-color {
        background: #ffd700;
    }

    .diamond .block-color {
        background: #0292b3;
    }

    .premium .block-color {
        background: #01ab83;
    }



    /* WhatsApp Button */
    .site-plan-action {
        text-align: center;
        padding: 20px;
        background: #f8f9fa;
        border-radius: 8px;
    }

    .site-plan-action p {
        margin: 0 0 15px 0;
        color: var(--primary-color);
        font-weight: 600;
    }

    .whatsapp-button {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 25px;
        background: #25D366;
        color: white;
        border-radius: 30px;
        font-weight: 600;
        transition: var(--transition);
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    }

    .whatsapp-button:hover {
        background: #128C7E;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    }

    /* Responsive */
    @media (max-width: 992px) {
        .site-plan-content {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .site-plan-image {
            order: -1;
        }
    }

    @media (max-width: 768px) {
        .site-plan-section {
            padding: 80px 0;
        }

        .block-item {
            flex-direction: column;
            text-align: center;
            gap: 10px;
        }

        .block-color {
            width: 25px;
            height: 25px;
        }
    }

    /* === GLOBAL STYLE === */
    #surveyForm {
        max-width: 600px;
        margin: 20px auto;
        padding: 25px;
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* === FORM GROUP === */
    .form-group {
        margin-bottom: 20px;
    }

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

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        font-size: 14px;
        transition: all 0.3s;
        background-color: #f8fafc;
    }

    .form-group input:focus,
    .form-group select:focus {
        border-color: #4299e1;
        box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
        outline: none;
        background-color: #ffffff;
    }

    /* === DATE INPUT === */
    input[type="date"] {
        position: relative;
    }

    input[type="date"]::-webkit-calendar-picker-indicator {
        position: absolute;
        right: 10px;
        opacity: 0.7;
        cursor: pointer;
    }

    /* === BUTTON === */
    .btn-submit {
        width: 100%;
        padding: 14px;
        background: #029038;
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        margin-top: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .btn-submit:hover {
        background: #014d1e;
        transform: translateY(-2px);
    }

    .btn-submit:active {
        transform: translateY(0);
    }

    /* === WHATSAPP ICON (OPTIONAL) === */
    .btn-submit::before {
        content: "";
        display: inline-block;
        width: 20px;
        height: 20px;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-6.29-3.429c-.545 0-1-.488-1-1.086 0-.598.455-1.086 1-1.086.546 0 1 .488 1 1.086 0 .598-.454 1.086-1 1.086m4 0c-.545 0-1-.488-1-1.086 0-.598.455-1.086 1-1.086.546 0 1 .488 1 1.086 0 .598-.454 1.086-1 1.086"/></svg>');
        background-size: contain;
    }

    /* === RESPONSIVE === */
    @media (max-width: 768px) {
        #surveyForm {
            padding: 20px;
            margin: 15px;
        }

        .form-group input,
        .form-group select {
            padding: 10px 12px;
        }
    }

    /* === ANIMATION === */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

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

    #surveyForm {
        animation: fadeIn 0.5s ease-out;
    }