/* ROOT TAMPLATE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

:root {
    --dark-green: #670202;
    --yellow: #F9A826;
    --light-green: #f51616;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-green: #2E8B57;
}

/* Navbar Styles ======================================================*/
.navbar {
    background-color: var(--dark-green);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--yellow);
}

.nav-logo img {
    height: 80px;
    width: auto;
    margin-right: 10px;
    margin-bottom: -20px;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--yellow);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 3px auto;
    transition: all 0.3s ease;
    background-color: var(--white);
}

/* NAVBAR END====================================================== */

/* Hero Section dengan Video ===================================*/
.hero {
    position: relative;
    height: 100vh;
    /* full screen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
}

@media (max-aspect-ratio: 16/9) {
    .hero-video {
        width: auto;
        height: 100%;
    }
}

@media (min-aspect-ratio: 16/9) {
    .hero-video {
        width: 100%;
        height: auto;
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(77, 27, 27, 0.85), rgba(77, 27, 27, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--yellow);
    color: var(--dark-green);
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* HERO END =========================================================== */
/* About Section ======================================== 3*/
.about {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-green);
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--yellow);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-video {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
}

.about-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.about-video-container {
    position: relative;
}

.about-video-container:before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid var(--yellow);
    border-radius: 15px;
    z-index: -1;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.feature-icon {
    background-color: var(--yellow);
    color: var(--dark-green);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.2rem;
    color: var(--dark-green);
    margin-bottom: 0.3rem;
}

/* STAT COUNTER =================================================== */

/* Stats Section ==================================================== 5*/
.stats {
    background-color: var(--dark-green);
    padding: 4rem 2rem;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1.2rem;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-green);
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--yellow);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* STAT END============= */
/* ABOUT END======================================================== */

/* Features Section =================================================*/
.features {
    padding: 5rem 2rem;
    background-color: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card-icon {
    font-size: 3rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-green);
}

/* Fallback untuk mobile */
@media (max-width: 768px) {
    .hero-video {
        display: none;
    }

    .hero {
        background-image: url('images/benner.jpg');
        background-size: cover;
        background-position: center;
    }
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .about-content {
        gap: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        gap: 0;
        flex-direction: column;
        background-color: var(--dark-green);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1.5rem 0;
    }

    .hero {
        height: 75vh;
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-video-container:before {
        display: none;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media screen and (max-width: 480px) {
    .navbar {
        padding: 0.8rem;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .nav-logo img {
        height: 35px;
    }

    .hero {
        margin-top: 70px;
        height: 70vh;
        min-height: 450px;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .about,
    .gallery,
    .features {
        padding: 3rem 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .stats {
        padding: 3rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }

    .filter-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* FIUTER END ================================================== */


/* SITEPLINE ======================================================= 4*/
.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: var(--dark-green);
    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;
    }
}

/* MINTA UPDATE SITPLINE POPUP */
.btn {
    background: var(--dark-green);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
}

.popup-content {
    background: #fff;
    width: 90%;
    max-width: 400px;
    margin: 10% auto;
    padding: 20px;
    border-radius: 12px;
    position: relative;
}

.popup-content h2 {
    margin-top: 0;
    font-size: 20px;
    text-align: center;
}

.popup-content label {
    display: block;
    margin: 10px 0 5px;
}

.popup-content input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.popup-content button {
    width: 100%;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

/* SITE END ========================================================= */

/*  */
/* ====== GALLERY GRID ====== */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.gallery-item {
    cursor: pointer;
    position: relative;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    display: block;
}

.gallery-title,
.gallery-desc {
    display: none;
    /* hanya untuk data, dipakai di lightbox */
}

/* ====== LIGHTBOX ====== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox.show {
    display: flex;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    text-align: center;
    color: #fff;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
}

#lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: #ff4444;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}

/* Facilities Section ==============================================*/
.facilities {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #f9f9f9, var(--light-gray));
}

.facilities-container {
    max-width: 1200px;
    margin: 0 auto;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.facility-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.facility-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--dark-green), var(--yellow));
}

.facility-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--yellow);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.facility-card:hover .facility-image {
    transform: scale(1.1);
    border-color: var(--dark-green);
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.facility-content h3 {
    font-size: 1.4rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.facility-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.facility-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--dark-green);
    color: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* Responsive Styles untuk Facilities */
@media screen and (max-width: 1024px) {
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .facility-card {
        max-width: 400px;
        margin: 0 auto;
        padding: 2rem 1.5rem;
    }

    .facility-image {
        width: 100px;
        height: 100px;
    }

    .facility-content h3 {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 480px) {
    .facilities {
        padding: 3rem 1rem;
    }

    .facility-card {
        padding: 1.5rem 1rem;
    }

    .facility-content h3 {
        font-size: 1.2rem;
    }

    .facility-content p {
        font-size: 0.9rem;
    }
}

/* FASILITAS END ============================================ */

/* Pricing Section =========================================================*/
.pricing {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, var(--light-gray), #f9f9f9);
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    padding: 2rem 1.5rem;
    text-align: center;
    color: var(--white);
}

.pricing-card.bronze .pricing-header {
    background: linear-gradient(to right, #bd1502, #bd1502);
}

.pricing-card.silver .pricing-header {
    background: linear-gradient(to right, #c0c0c0, #a8a8a8);
}

.pricing-card.diamond .pricing-header {
    background: linear-gradient(to right, #0356e5, #0356e5);
}

.pricing-card.premium .pricing-header {
    background: linear-gradient(to right, #03f997, #03f997);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-period {
    font-size: 0.9rem;
    opacity: 0.9;
}

.pricing-features {
    padding: 2rem 1.5rem;
    flex: 1;
}

.pricing-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.pricing-feature-name {
    font-size: 0.9rem;
    color: #555;
    flex: 1;
}

.pricing-stars {
    display: flex;
    gap: 3px;
}

.pricing-star {
    color: var(--yellow);
    font-size: 0.9rem;
}

.pricing-footer {
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid #eee;
}

.booking-fee {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.booking-fee span {
    color: var(--dark-green);
    font-weight: 700;
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--yellow);
    color: var(--dark-green);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: var(--dark-green);
    color: white;
    border-radius: 10px;
    font-size: 0.9rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-button {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}


/* Responsive Styles untuk Pricing */
@media screen and (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 3rem auto;
    }

    .pricing-card {
        margin-bottom: 1.5rem;
    }

    .pricing-price {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .pricing {
        padding: 3rem 1rem;
    }

    .pricing-title {
        font-size: 1.3rem;
    }

    .pricing-price {
        font-size: 1.8rem;
    }

    .pricing-note {
        font-size: 0.8rem;
    }
}

/* Promo Section */
.promo {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #880303 0%, #4f0101 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.promo:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(-15deg);
}

.promo-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.promo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.promo-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.promo-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.promo-highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.promo-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.promo-highlight h3 i {
    margin-right: 10px;
    color: var(--yellow);
}

.discount-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 1rem 0;
}

.promo-features {
    list-style: none;
    margin-bottom: 2rem;
}

.promo-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.promo-features li i {
    color: var(--yellow);
    margin-right: 10px;
    font-size: 1.2rem;
}

.promo-button {
    display: inline-block;
    background: white;
    color: #ff5500;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.promo-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
}

.promo-button i {
    margin-left: 8px;
}

.promo-image {
    position: relative;
    text-align: center;
}

.promo-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.promo-card h3 {
    color: #ff5500;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-comparison {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.old-price,
.new-price {
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    flex: 1;
    margin: 0 0.5rem;
}

.old-price {
    background: #f5f5f5;
}

.new-price {
    background: linear-gradient(135deg, #ff7f00 0%, #ff5500 100%);
    color: white;
}

.price-label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
}

.old-price .price-amount {
    text-decoration: line-through;
    color: #888;
}

.savings {
    text-align: center;
    font-weight: 700;
    color: #ff5500;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.countdown {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
}

.countdown h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.countdown-unit {
    background: white;
    color: #ff5500;
    padding: 0.5rem;
    border-radius: 8px;
    min-width: 60px;
}

.countdown-value {
    font-size: 1.8rem;
    font-weight: 700;
}

.countdown-label {
    font-size: 0.8rem;
}

/* Responsive Styles untuk Promo */
@media screen and (max-width: 968px) {
    .promo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .promo-text h2 {
        font-size: 2.2rem;
    }

    .promo-image {
        order: -1;
    }
}

@media screen and (max-width: 768px) {
    .promo {
        padding: 3rem 1.5rem;
    }

    .promo-text h2 {
        font-size: 2rem;
    }

    .discount-amount {
        font-size: 2rem;
    }

    .price-comparison {
        flex-direction: column;
        gap: 1rem;
    }

    .old-price,
    .new-price {
        margin: 0;
    }
}

@media screen and (max-width: 480px) {
    .promo {
        padding: 2rem 1rem;
    }

    .promo-text h2 {
        font-size: 1.8rem;
    }

    .promo-text p {
        font-size: 1rem;
    }

    .promo-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .countdown-timer {
        gap: 0.5rem;
    }

    .countdown-unit {
        min-width: 50px;
        padding: 0.4rem;
    }

    .countdown-value {
        font-size: 1.5rem;
    }
}

/* promo popup---------- */
/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: translateY(-50px) scale(0.9);
    transition: transform 0.5s;
}

.popup-overlay.active .popup-content {
    transform: translateY(0) scale(1);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #777;
    background: none;
    border: none;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.close-btn:hover {
    color: #ff6b00;
    background: #f9f3f3;
}

.popup-content h2 {
    color: #ff6b00;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

input,
textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border 0.3s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #ff6b00;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

textarea {
    min-height: 100px;
    resize: vertical;
}

.promo-code {
    background: #fff5e6;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
    border: 2px dashed #ff6b00;
}

.promo-code p {
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.code-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b00;
    letter-spacing: 3px;
}

.btn-kirim {
    background-color: #ff6b00;
    color: white;
    border: none;
    padding: 16px 20px;
    width: 100%;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.btn-kirim:hover {
    background-color: #e05a00;
}

.info-text {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .promo-content {
        flex-direction: column;
    }

    .promo-text,
    .promo-image {
        width: 100%;
    }

    .countdown-timer {
        flex-wrap: wrap;
        gap: 10px;
    }

    .countdown-unit {
        flex: 1;
        min-width: 60px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #f9f9f9, #f0f0f0);
    position: relative;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.testimonials-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--yellow);
    border-radius: 2px;
}

.testimonials-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--dark-green), var(--yellow));
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.testimonial-text:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--yellow);
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 3px solid var(--yellow);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--dark-green);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.author-info p {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
}

.rating-star {
    color: var(--yellow);
    font-size: 0.9rem;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.testimonial-date {
    font-size: 0.85rem;
    color: #888;
}

.testimonial-source {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #888;
}

.testimonial-source i {
    margin-right: 5px;
    color: var(--dark-green);
}

/* Testimonial Slider Navigation */
.testimonials-nav {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    gap: 1rem;
}

.testimonial-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--dark-green);
    color: var(--dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
    background: var(--dark-green);
    color: white;
}



/* Responsive Styles untuk Testimonials */
@media screen and (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .testimonials {
        padding: 3rem 1.5rem;
    }

    .testimonials-header h2 {
        font-size: 2.2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-stats {
        gap: 2rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .testimonials {
        padding: 2rem 1rem;
    }

    .testimonials-header h2 {
        font-size: 2rem;
    }

    .testimonials-header p {
        font-size: 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
        padding-left: 1.5rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .author-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .testimonial-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: fadeIn 0.6s ease forwards;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
}

.testimonial-card:nth-child(4) {
    animation-delay: 0.4s;
}

/*  */
/* FAQ Section */
.faq {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #f9f9f9, #f0f0f0);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.faq-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--yellow);
    border-radius: 2px;
}

.faq-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.faq-accordion {
    margin-top: 2rem;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark-green);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--yellow);
}

.faq-question span {
    font-size: 1.1rem;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.faq-icon:before,
.faq-icon:after {
    content: '';
    position: absolute;
    background-color: var(--dark-green);
    transition: all 0.3s ease;
}

.faq-icon:before {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 2px;
}

.faq-icon:after {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 16px;
}

.faq-item.active .faq-icon:after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9f9f9;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: #555;
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--dark-green) 0%, #2a6b5b 100%);
    border-radius: 15px;
    color: white;
}

.faq-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--yellow);
    color: var(--dark-green);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.cta-button:hover {
    background-color: #ffb347;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.cta-button i {
    margin-left: 8px;
}

/* Responsive Styles untuk FAQ */
@media screen and (max-width: 768px) {
    .faq {
        padding: 3rem 1.5rem;
    }

    .faq-header h2 {
        font-size: 2.2rem;
    }

    .faq-question {
        padding: 1.2rem;
    }

    .faq-question span {
        font-size: 1rem;
        padding-right: 1.5rem;
    }

    .faq-cta {
        padding: 1.5rem;
    }

    .faq-cta h3 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .faq {
        padding: 2rem 1rem;
    }

    .faq-header h2 {
        font-size: 2rem;
    }

    .faq-header p {
        font-size: 1rem;
    }

    .faq-question span {
        font-size: 0.95rem;
    }

    .faq-cta h3 {
        font-size: 1.3rem;
    }

    .faq-cta p {
        font-size: 0.9rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeIn 0.5s ease forwards;
}

.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.5s;
}

.faq-item:nth-child(6) {
    animation-delay: 0.6s;
}

/* FORMSURVEY */
.form-container {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

input,
select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 15px;
    outline: none;
    transition: border 0.3s;
}

input:focus,
select:focus {
    border-color: #2a9d8f;
}

button {
    width: 100%;
    padding: 14px;
    background: var(--dark-green);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #20ba57;
}

.promo-code {
    background: #f0f0f0;
    font-weight: bold;
    color: #d6336c;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #f9f9f9, #f0f0f0);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
    grid-column: 1 / -1;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.contact-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--yellow);
    border-radius: 2px;
}

.contact-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Survey Form */
.survey-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.survey-form h3 {
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.survey-form h3 i {
    margin-right: 10px;
    color: var(--yellow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--dark-green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(27, 77, 62, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    background: var(--dark-green);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form-submit:hover {
    background: #144235;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Info */
.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-info h3 {
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.contact-info h3 i {
    margin-right: 10px;
    color: var(--yellow);
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--yellow);
    color: var(--dark-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-text {
    flex: 1;
}

.contact-text h4 {
    color: var(--dark-green);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-text p {
    color: #666;
    line-height: 1.5;
}

.contact-text a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--dark-green);
}

.business-hours {
    margin-top: 2rem;
}

.business-hours h4 {
    color: var(--dark-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    color: #555;
}

.time {
    color: var(--dark-green);
    font-weight: 500;
}

/* Social Media */
.social-media {
    margin-top: 2rem;
}

.social-media h4 {
    color: var(--dark-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #f5f5f5;
    color: var(--dark-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    background: var(--dark-green);
    color: white;
    transform: translateY(-3px);
}

/* Map */
.map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 200px;
    border: none;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .contact-content {
        gap: 2rem;
    }

    .survey-form,
    .contact-info {
        padding: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .contact {
        padding: 3rem 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-header h2 {
        font-size: 2.2rem;
    }

    .survey-form,
    .contact-info {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .contact {
        padding: 2rem 1rem;
    }

    .contact-header h2 {
        font-size: 2rem;
    }

    .contact-header p {
        font-size: 1rem;
    }

    .survey-form h3,
    .contact-info h3 {
        font-size: 1.3rem;
    }

    .form-control {
        padding: 0.7rem 1rem;
    }

    .contact-item {
        flex-direction: column;
    }

    .contact-icon {
        margin-bottom: 0.5rem;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.survey-form,
.contact-info {
    animation: fadeInUp 0.6s ease forwards;
}

.survey-form {
    animation-delay: 0.2s;
}

.contact-info {
    animation-delay: 0.4s;
}

.footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    font-size: 0.9rem;
}

.footer p {
    margin: 5px 0;
}