/* Base Styles */
:root {
    --primary-color: #02452e;
    --secondary-color: #b68706;
    --accent-color: #ecaf06;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --success-color: #28a745;
    --white: #fff;
    --black: #000;
    --font-primary: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--accent-color);
    color: var(--white);
    border: 2px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    text-align: center;
    border-color: #28a745;
}

.btn:hover {
    background-color: darken(var(--primary-color), 10%);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 30px;
}

/* Navbar Styles */
/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 90px;
    /* Sesuaikan tinggi logo */
    width: auto;
    margin-bottom: -80px;
    transition: var(--transition);
    z-index: 9;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-left: -100px;

}

.logo-sub {
    font-size: 0.8rem;
    color: var(--white);
    font-weight: 400;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

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

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

.nav-links li a {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links li a:hover {
    color: var(--secondary-color);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 600px;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: var(--border-radius);
}

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

.slide-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.slide-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
}

.slide-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--white);
    transform: scale(1.2);
}

.slide-prev,
.slide-next {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.slide-prev:hover,
.slide-next:hover {
    color: var(--secondary-color);
}

/* Main Content */
.main-content {
    padding: 80px 5%;
    text-align: center;
}



.coming-soon {
    color: var(--secondary-color);
    font-size: 2rem;
    margin: 30px 0;
}

.header-image {
    width: 100%;
    max-width: 300px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.header-image:hover {
    transform: scale(1.02);
}

.tagline {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Video Section */
.video-portrait-section {
    padding: 60px 5%;
    background-color: var(--light-color);
}

.video-portrait-container {
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

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

.video-portrait-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
}

.video-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.control-btn {
    padding: 8px 15px;
    background-color: var(--success-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.control-btn:hover {
    background-color: darken(var(--primary-color), 10%);
}

/* Advantages Section */
.advantages-section {
    padding: 80px 5%;
    background-color: var(--white);
}

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

.advantage-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

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

.advantage-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.advantage-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.special-offer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-badge {
    position: absolute;
    top: 5px;
    right: -15px;
    background-color: rgb(120, 255, 2);
    color: var(--dark-color);
    padding: 5px 15px;
    font-weight: bold;
    transform: rotate(35deg);
    border-radius: 50px;
}

.special-offer p {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 5%;
    background-color: var(--light-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

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

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

.gallery-caption {
    color: var(--white);
    font-weight: 500;
    margin-bottom: 10px;
}

.gallery-zoom {
    align-self: flex-start;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-zoom:hover {
    background-color: var(--white);
}

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.modal-content {
    display: block;
    max-width: 90%;
    max-height: 80vh;
    margin: 5% auto;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

.modal-caption {
    color: var(--white);
    text-align: center;
    padding: 10px 0;
}

/* Unit Section */
.unit-section {
    padding: 80px 5%;
    background-color: var(--white);
}

.unit-text {
    font-size: 16px;
    /* 20px mungkin masih terlalu besar */
    font-weight: normal;
    opacity: 0.8;
    /* Opsional: membuat lebih subtle */
}

.unit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.unit-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.unit-features {
    margin-bottom: 30px;
}

.unit-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.unit-features i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.unit-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    text-align: center;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
}

.highlight-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}


.unit-siteplan {
    position: relative;
}

.siteplan-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.siteplan-image {
    display: block;
    width: 100%;
    transition: var(--transition);
}

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

.siteplan-container:hover .siteplan-overlay {
    opacity: 1;
}

.siteplan-container:hover .siteplan-image {
    transform: scale(1.03);
}

.zoom-btn {
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.zoom-btn:hover {
    background-color: var(--white);
}

.siteplan-caption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--gray-color);
    text-align: center;
}

.unit-cta {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cta-form {
    display: flex;
    flex-grow: 1;
    max-width: 500px;
}

.cta-form input {
    flex-grow: 1;
    padding: 12px 20px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.cta-button {
    padding: 12px 20px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Hanjawong Banner */
.hanjawong-banner {
    background-image: url('../img/benner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 5%;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hanjawong-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hanjawong-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hanjawong-titles {
    margin-bottom: 30px;
}

.hanjawong-main-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    margin: 10px 0;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hanjawong-subtitle {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 5px;
}

.hanjawong-divider {
    width: 100px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 30px auto;
}

.hanjawong-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hanjawong-schedule-title {
    font-weight: 300;
    margin-bottom: 5px;
}

.hanjawong-schedule {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 40px;
}

.hanjawong-cta {
    padding: 15px 30px;
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.hanjawong-cta:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border-color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }

    .unit-grid {
        grid-template-columns: 1fr;
    }

    .hanjawong-main-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #052d01dc;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
        color: var(--primary-color);
    }

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

    .slide-content {
        left: 5%;
        max-width: 90%;
    }

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

    .hanjawong-main-title {
        font-size: 3rem;
    }

    .hanjawong-subtitle {
        font-size: 1.8rem;
    }

    .unit-cta {
        flex-direction: column;
        text-align: center;
    }

    .cta-form {
        width: 100%;
    }
}

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

    .slide-content {
        padding: 20px;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .hanjawong-main-title {
        font-size: 2.5rem;
    }

    .hanjawong-subtitle {
        font-size: 1.5rem;
    }

    .hanjawong-schedule {
        font-size: 1.2rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

/* PRICING ======================================== */
/* Pricing Section */
/* Pricing Section */
.pricing-section {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid var(--primary-color);
    /* Border hijau tua yang ditambahkan */
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #004d00;
    /* Warna hijau lebih gelap saat hover */
}

.pricing-header {
    padding: 30px;
    text-align: center;
    position: relative;
}

.bronze .pricing-header {
    background: linear-gradient(135deg, var(--bronze), #e6b17e);
}

.silver .pricing-header {
    background: linear-gradient(135deg, var(--silver), #e0e0e0);
}

.gold .pricing-header {
    background: linear-gradient(135deg, var(--gold), #ffea80);
}

.diamond .pricing-header {
    background: linear-gradient(135deg, var(--diamond), #ddf7ff);
}

.premium .pricing-header {
    background: linear-gradient(135deg, var(--premium), #b399ff);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-price {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--success-color);
    margin: 15px 0;
}

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

.pricing-features {
    padding: 30px;
}

.feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.feature:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.feature-name {
    font-weight: 600;
    color: #555;
}

.stars {
    color: var(--primary-color);
}

.pricing-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.pricing-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.bronze .pricing-btn {
    background: var(--primary-color);
    color: white;
}

.silver .pricing-btn {
    background: var(--primary-color);
    color: white;
}

.gold .pricing-btn {
    background: var(--primary-color);
    color: white;
}

.diamond .pricing-btn {
    background: var(--primary-color);
    color: white;
}

.premium .pricing-btn {
    background: var(--primary-color);
    color: white;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .pricing-container {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .pricing-card {
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .pricing-card {
        max-width: 100%;
    }

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

/* PRICING END========================================= */

/* POPUP PRICING======================================= */
/* Popup Container */
.promo-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    /* Ukuran maksimum popup */
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.promo-popup.active {
    display: block;
}

.popup-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    position: relative;
}

/* Header Popup */
.promo-popup .popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.promo-popup .close-btn {
    font-size: 20px;
    border: none;
    background: none;
    cursor: pointer;
}

.popup-header h3 {
    margin: 0;
}

#closePromoPopup {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

#promoForm .form-group {
    margin-bottom: 15px;
}

#promoForm input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

#promoForm .submit-btn {
    width: 100%;
    padding: 12px;
    background: green;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

/* END POPUP PRICING======================================= */
/* TESTIMONEY================================== */
.testimonial-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial-section .section-header p {
    color: #035c62;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    width: 100%;
    max-width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    font-size: 120px;
    color: rgba(67, 97, 238, 0.1);
    top: -30px;
    right: 10px;
    font-family: serif;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--gray);
    position: relative;
    z-index: 1;
}

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

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray);
}

.rating {
    margin-top: 15px;
    color: #ffc107;
    font-size: 0.9rem;
}

.rating i {
    margin-right: 3px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonial-card {
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        max-width: 100%;
    }

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

/* END TESTYMONEY============================= */


/* VIDEO TESTI========================= */
.video-testimonial-section {
    padding: 80px 20px;
    background: #f9fafc;
    max-width: 1200px;
    margin: 0 auto;
}

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

.video-testimonial-section {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.video-testimonial-section .section-header p {
    color: #016a71;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.video-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

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

.video-title {
    padding: 20px;
    text-align: center;
    color: #2c3e50;
    font-size: 1.2rem;
    margin: 0;
}

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

    .video-testimonial-section {
        padding: 60px 15px;
    }

    .video-testimonial-section .section-header h2 {
        font-size: 1.8rem;
    }
}

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

/* END VIDEO TESTI========================= */
/* FAQ======================================== */
.faq-section {
    padding: 80px 20px;
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

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

.faq-section .section-header h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.faq-section .section-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f9fafc;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background: #f9fafc;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9fafc;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

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

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 15px;
    }

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

    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
}

/* FAQ END ============================================ */

/* WA POPUP ============================================ */
/* WhatsApp Floating Button Styles */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn i {
    pointer-events: none;
}


.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
}

/* Sembunyikan popup secara default */
.whatsapp-popup {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

/* Tampilkan ketika aktif */
.whatsapp-popup.active {
    display: block !important;
    opacity: 1;
    visibility: visible;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.popup-header h3 {
    margin: 0;
    color: #2c3e50;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #7f8c8d;
}

.popup-form .form-group {
    margin-bottom: 15px;
}

.popup-form input,
.popup-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
}

.popup-form textarea {
    resize: vertical;
    min-height: 100px;
}

.popup-form .submit-btn {
    width: 100%;
    padding: 12px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-popup {
        width: calc(100% - 40px);
        right: 20px;
    }
}

/* WA POPUP END ============================================ */

/* FORM SURVEY ======================================== */
.survey-form-section {
    padding: 80px 20px;
    background: #f5f7fa;
    max-width: 800px;
    margin: 0 auto;
}

.survey-form-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.survey-form-section .section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
}

.survey-form-section .section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.survey-form-section .section-header p {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.survey-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 18px;
}

input,
textarea,
select {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
    outline: none;
}

.radio-group {
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.radio-group label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2c3e50;
}

.radio-options {
    display: flex;
    gap: 15px;
}

.radio-option {
    flex: 1;
}

.radio-option input {
    display: none;
}

.radio-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.radio-option i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.radio-option input:checked+label {
    border-color: var(--primary-color);
    background: #f0f4ff;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(18, 140, 126, 0.3);
}

.submit-btn i {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .radio-options {
        flex-direction: column;
    }

    .survey-form {
        padding: 20px;
    }
}

/* END FORM SURVEY ======================================== */

/* FOOTER=========================== */
.site-footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 0 0;
    font-size: 0.95rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column {
    margin-bottom: 30px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-column {
        text-align: left;
    }
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.company-description {
    color: #ecf0f1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-title {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
}

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

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

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

.footer-links a:hover {
    color: var(--secondary-color);
}

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

.contact-info li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #bdc3c7;
}

@media (min-width: 768px) {
    .contact-info li {
        justify-content: flex-start;
    }
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

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

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

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

.copyright {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* END FOOTER===================== */