    :root {
        --primary-color: #f3f5ec;
        --primary-dark: #e05a00;
        --text-dark: #1a1a1a;
        --text-light: #6c757d;
        --border-light: #e9ecef;
        --shadow-light: rgba(0, 0, 0, 0.08);
        --shadow-medium: rgba(0, 0, 0, 0.12);
        --gradient-bg: linear-gradient(135deg, #e8f7b4 0%, #ddf5c3 100%);
    }

    * {
        font-family: 'Inter', sans-serif;
    }

    body {
        line-height: 1.6;
        color: var(--text-dark);
        background-color: #e6f9e3;
    }

    .form-control {
        border: 2px solid var(--border-light);
        border-radius: 12px;
        padding: 12px 16px;
        transition: all 0.3s ease;
        font-size: 14px;
    }

    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
    }

    .form-floating>label {
        font-weight: 500;
        color: var(--text-light);
    }

    .card-modern {
        background: white;
        border-radius: 24px;
        border: none;
        box-shadow: 0 20px 60px var(--shadow-light);
        transition: all 0.3s ease;
    }

    .card-modern:hover {
        transform: translateY(-5px);
        box-shadow: 0 30px 80px var(--shadow-medium);
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        background: var(--gradient-bg);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 16px;
    }

    .feature-card {
        padding: 25px;
        background: white;
        border-radius: 20px;
        border: none;
        box-shadow: 0 10px 40px var(--shadow-light);
        transition: all 0.3s ease;
        height: 100%;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px var(--shadow-medium);
    }

    .section-title {
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 3px;
    }

    .section-subtitle {
        color: var(--text-light);
        font-size: 18px;
    }

    .navbar {
        backdrop-filter: blur(10px);
        background: #daffda !important;
    }

    .nav-link {
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .nav-link:hover {
        color: #929588 !important;
    }

    .testimonial-card {
        background: white;
        border-radius: 20px;
        padding: 32px;
        border: none;
        box-shadow: 7px 6px #eeeeeeb5;
        margin: 16px;
    }

    .advantage-item {
        padding: 24px;
        background: white;
        border-radius: 16px;
        box-shadow: 0 8px 30px var(--shadow-light);
        margin-bottom: 24px;
        transition: all 0.3s ease;
    }

    .advantage-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 45px var(--shadow-medium);
    }

    .contact-card {
        background: white;
        border-radius: 20px;
        padding: 32px;
        box-shadow: 0 15px 50px var(--shadow-light);
        height: 100%;
    }

    .stats-number {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary-color);
        display: block;
    }

    .stats-label {
        color: var(--text-light);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 14px;
    }

    .f-banner {
        background: #e6f9e3;
        position: relative;
        overflow: hidden;
    }

    .wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        z-index: 1;
    }

    .ripple {
        position: absolute;
        top: -17%;
        right: 30%;

        z-index: 1;
    }

    .social-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 100%;
        border: solid 1px #f3f5ec;
        color: #e8f7d0;
    }

    .social-btn:hover {
        background-color: #e8f7d0;
        border: solid 1px #e8f7d0;
        color: #fff;
    }

    .hero-section {
        background: #2e7d32 url(../images/bg_banner.svg) 50% 0% no-repeat;
        color: white;
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }

    .hero-content {
        max-width: 600px;
        z-index: 2;
        position: relative;
    }

    .hero-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

    .hero-btn {
        background: #ff9800;
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .hero-btn:hover {
        background: #f57c00;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .about-section {
        background: linear-gradient(120deg, #f8fff9 0%, #ffffff 100%);
    }

    .section-title {
        font-size: 2.2rem;
        letter-spacing: 0.4px;
    }

    .feature-card {
        transition: all 0.3s ease-in-out;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .feature-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }

    .feature-icon {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background-color: rgba(25, 135, 84, 0.08);
    }

    .btn-success {
        background: #198754;
        border: none;
        transition: all 0.3s ease;
    }

    .btn-success:hover {
        background: #157347;
        box-shadow: 0 0 15px rgba(21, 115, 71, 0.3);
    }

    .about-content {
        border-left: 5px solid #198754;
    }

    @media (max-width: 991px) {
        .about-content {
            border-left: none;
            text-align: center;
        }
    }

    /* Power Section */
    .power-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #cbe8cc 0%, #4caf50 100%);
    }


    .section-title span {
        color: #198754;
    }

    .power-card {
        transition: all 0.3s ease-in-out;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

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

    .power-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
    }

    .bg-gradient-success {
        background: linear-gradient(135deg, #28a745, #5cd75c);
    }

    .bg-gradient-info {
        background: linear-gradient(135deg, #0dcaf0, #3ac0e0);
    }

    .bg-gradient-warning {
        background: linear-gradient(135deg, #ffc107, #ffdd57);
        color: #333;
    }

    .bg-gradient-danger {
        background: linear-gradient(135deg, #dc3545, #f75c6c);
    }

    .hotel-images-carousel .item {
        opacity: 0.6;
        transform: scale(0.85);
        transition: all 0.4s ease-in-out;
    }

    .hotel-images-carousel .center .item {
        transform: scale(1.2);
        opacity: 1;
        z-index: 3;
    }

    .gallery-img {
        height: 460px;
        object-fit: cover;
        border-radius: 20px;
    }

    .custom-prev,
    .custom-next {
        z-index: 5;
        border-radius: 50%;
        width: 45px;
        height: 45px;
        background-color: #198754;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .custom-prev:hover,
    .custom-next:hover {
        background-color: #198754cc;
    }


    .breadcrumb-section {
        background-color: #f8f9fa;
        padding: 12px 0;
        border-bottom: 1px solid #eaeaea;
    }

    .breadcrumb {
        background: transparent;
        margin-bottom: 0;
        font-size: 15px;
    }

    .breadcrumb a {
        color: #198754;
        text-decoration: none;
        font-weight: 500;
    }

    .breadcrumb-item.active {
        color: #6c757d;
        font-weight: 500;
    }

    .benefit-card {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        padding: 25px 20px;
        transition: all 0.3s ease;
        height: 100%;
    }

    .benefit-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .benefit-card h5 {
        font-weight: 600;
        color: #198754;
        margin-bottom: 10px;
    }

    .benefit-card p {
        color: #6c757d;
        font-size: 15px;
    }

    .benefit-icon i {
        background: #e6f4ea;
        border-radius: 50%;
        padding: 15px;
        font-size: 28px;
        color: #198754;
    }

    .benefit-center img {
        width: 380px;
        height: 380px;
        object-fit: cover;
        border: 8px solid #fff;
        transition: transform 0.4s ease;
    }

    .benefit-center img:hover {
        transform: scale(1.05);
    }

    .image-caption {
        text-align: center;
    }

    @media (max-width: 767px) {
        .benefit-center img {
            width: 220px;
            height: 220px;
        }
    }

    .contact-card {
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        padding: 40px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .contact-title {
        font-size: 2rem;
        font-weight: 700;
        color: #198754;
    }

    .contact-subtitle {
        font-size: 1rem;
        color: #666;
        margin-bottom: 30px;
    }

    .form-control {
        border-radius: 12px;
        border: 1px solid #ced4da;
        padding: 12px 15px;
        transition: all 0.3s ease;
    }

    .form-control:focus {
        border-color: #198754;
        box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
    }

    .btn-submit {
        background-color: #198754;
        border: none;
        color: #fff;
        border-radius: 12px;
        padding: 12px 20px;
        transition: all 0.3s ease;
    }

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

    .contact-info {
        background: #198754;
        color: #fff;
        border-radius: 15px;
        padding: 40px;
    }

    .contact-info h4 {
        font-weight: 700;
        margin-bottom: 20px;
    }

    .contact-info .info-item {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .contact-info .info-item i {
        font-size: 1.5rem;
        margin-right: 15px;
        color: #fff;
    }

    .contact-info a {
        color: #fff;
        text-decoration: none;
    }

    .contact-info a:hover {
        text-decoration: underline;
    }

    .whatsapp_fixed_button {
        position: fixed;
        bottom: 12%;
        right: 2%;
        z-index: 9999;
        background: #198754;
        padding: 10px 15px;
        font-weight: 650;
        text-transform: uppercase;
        border-radius: 15px;
        box-shadow: 0 9px 11px #1a1a1a8f;
        text-shadow: 1px 1px #106610;
        color: white !important;
    }
