/* ===========================
   BASE STYLES & RESET
============================ */
* {
    margin: 0;
    padding: 1px;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #f9f9f9;
    --dark-color: #333;
    --gold: #d4af37;
    --dark-green: #1a3a2e;
    --cream: #f5f5dc;
    --whatsapp-color: #25D366;
}

body {
    background-color: #f8f8f8;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===========================
   CONSISTENT BUTTON STYLES
============================ */
.btn, .btn-primary, .btn-secondary, .btn-whatsapp, .btn-white, .login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background-color: var(--gold);
    color: var(--dark-green);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    min-width: 120px;
}

    .btn::before, .btn-primary::before, .btn-secondary::before, .btn-whatsapp::before, .btn-white::before, .login-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background-color: white;
        transition: width 0.3s ease;
        z-index: -1;
    }

    .btn:hover::before, .btn-primary:hover::before, .btn-secondary:hover::before, .btn-whatsapp:hover::before, .btn-white:hover::before, .login-btn:hover::before {
        width: 100%;
    }

    .btn:hover, .btn-primary:hover, .btn-secondary:hover, .btn-whatsapp:hover, .btn-white:hover, .login-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        color: var(--dark-green);
    }

/* Special button variants */
.btn-white {
    background-color: white;
    color: var(--dark-green);
    border-color: white;
}

    .btn-white::before {
        background-color: var(--gold);
    }

    .btn-white:hover {
        color: white;
    }

.btn-whatsapp {
    background-color: darkgreen;
    color: white;
    border-color: var(--whatsapp-color);
}

    .btn-whatsapp::before {
        background-color: #128C7E;
    }

    .btn-whatsapp:hover {
        border-color: #128C7E;
        color: white;
    }

.btn-secondary {
    background-color: #6c757d;
    color: white;
    border-color: #6c757d;
}

    .btn-secondary::before {
        background-color: #5a6268;
    }

    .btn-secondary:hover {
        border-color: #5a6268;
        color: white;
    }

.login-btn {
    background-color: var(--dark-green);
    color: white;
    border-color: var(--dark-green);
}

    .login-btn::before {
        background-color: #0f5849;
    }

    .login-btn:hover {
        border-color: #0f5849;
        color: white;
    }

/* ===========================
   HEADER / NAVBAR
=========================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgb(54 177 131 / 95%);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

    header.scrolled {
        background: rgb(54 177 131 / 95%);
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    }

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--gold);
    display: flex;
    align-items: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

    .logo i {
        font-size: 28px;
        margin-right: 8px;
        color: var(--gold);
    }

    .logo .logo-img {
        width: 100%;
        height: 70px;
        margin-left: 10px;
        border-radius: 10%;
    }

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin:0;
}

    nav ul li a {
        color: white;
        text-decoration: none;
        font-weight: 700;
        position: relative;
        transition: color 0.3s ease;
        font-size:18px;
    }

        nav ul li a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0%;
            height: 2px;
            background-color: var(--gold);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after,
        nav ul li a.active::after {
            width: 100%;
        }

        nav ul li a:hover,
        nav ul li a.active {
            color: yellow;
        }

/* Hamburger Menu */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    width: 35px;
    height: 25px;
    background: none;
    border: none;
    position: relative;
}

    .mobile-menu-btn .bar {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--gold);
        border-radius: 2px;
        margin: 6px 0;
        transition: all 0.4s ease;
    }

    .mobile-menu-btn.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-btn.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

@media (max-width: 900px) {
    nav ul {
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        backdrop-filter: blur(60px);
        background-color: rgba(26, 58, 46, 0.98);
        width: 250px;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        box-shadow: -2px 8px 25px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 0 15px;
        gap: 0;
    }

        nav ul.active {
            transform: translateX(0);
        }

        nav ul li {
            text-align: center;
            margin: 18px 0;
        }

    .mobile-menu-btn {
        display: block;
    }
}

/* ===========================
   HERO CAROUSEL
=========================== */
.hero-carousel {
    height: 100vh;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
    background-size: cover;
    background-position: center;
}

    .carousel-slide.active {
        opacity: 1;
    }

    .carousel-slide:nth-child(1) {
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/images/carasoul1.png');
    }

    .carousel-slide:nth-child(2) {
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/images/carasoul5.png');
    }

    .carousel-slide:nth-child(3) {
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/images/carasoul7.png');
    }

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    max-width: 800px;
    z-index: 10;
    background-color: rgba(0.1, 0.2, 0, 0.2);
    padding: 60px 40px;
    border-radius: 20px;
    animation: fadeInUp 1.5s ease;
}

    .hero-content h1 {
        font-size: 3.2rem;
        margin-bottom: 20px;
        font-weight: 700;
        letter-spacing: 1px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        color: var(--gold);
    }

    .hero-content p {
        font-size: 1.4rem;
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    }

.carousel-indicator {
    position: absolute;
    bottom: 30px;
    left: 0;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    margin-left:50%;
    
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: 0.3s;
}

    .indicator.active {
        background-color: var(--gold);
    }

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

    .carousel-nav:hover {
        background-color: rgba(255, 255, 255, 0.4);
    }

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* ===========================
   FEATURES
=========================== */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f5dc 0%, #e8f4f0 100%);
    position: relative;
}

    .features::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('/images/bg2.png') no-repeat center;
        background-size: cover;
        opacity: 0.05;
        z-index: -1;
    }

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

    .section-title h2 {
        font-size: 2.8rem;
        color: var(--dark-green);
        position: relative;
        display: inline-block;
        margin-bottom: 15px;
    }

        .section-title h2::after {
            content: "";
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--gold);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

    .section-title p {
        font-size: 1.2rem;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

    .feature-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--dark-green), var(--gold));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .feature-card:hover::before {
        transform: scaleX(1);
    }

    .feature-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.feature-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

    .feature-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.feature-card:hover .feature-img img {
    transform: scale(1.1);
}

.feature-content {
    padding: 30px;
    color: #333;
}

    .feature-content h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        color: var(--dark-green);
        text-align: center;
    }

    .feature-content p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: justify;
    }

    .feature-content .btn {
        margin-top: 20px;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, #cebed3 0%, #4e6c85 100%);
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

    /*.cta-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('https://picsum.photos/seed/nature/1920/1080.jpg') no-repeat center;
        background-size: cover;
        opacity: 0.1;
        z-index: -1;
    }*/

    .cta-section h2 {
        font-size: 2.8rem;
        margin-bottom: 20px;
        color: var(--gold);
    }

    .cta-section p {
        font-size: 1.3rem;
        max-width: 700px;
        margin: 0 auto 40px;
    }

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* ===========================
   FOOTER
=========================== */
footer {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(/images/footer-bg.jpg);
    background-size: cover;
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

    footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--dark-green), var(--gold));
    }

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0px;
    margin-bottom: 50px;
}

.footer-column h3 {
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-size: 1.5rem;
    color: var(--gold);
}

    .footer-column h3::after {
        content: '';
        position: absolute;
        width: 60px;
        height: 3px;
        background-color: var(--gold);
        bottom: 0;
        left: 0;
    }

.footer-column p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ccc;
}

.footer-column ul {
    list-style: none;
}

    .footer-column ul li {
        margin-bottom: 12px;
    }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
        }

            .footer-column ul li a::after {
                content: "";
                position: absolute;
                width: 0;
                height: 1px;
                background-color: var(--gold);
                bottom: 0;
                left: 0;
                transition: width 0.3s ease;
            }

            .footer-column ul li a:hover {
                color: var(--gold);
                transform: translateX(5px);
            }

                .footer-column ul li a:hover::after {
                    width: 100%;
                }

        .footer-column ul li i {
            margin-right: 10px;
            color: var(--gold);
        }

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
        border-radius: 50%;
        transition: all 0.3s ease;
        text-decoration: none;
        font-size: 1.2rem;
    }

        .social-links a:hover {
            background-color: var(--gold);
            color: var(--dark-green);
            transform: translateY(-5px);
        }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    margin-bottom: -30px;
    margin-right:20px;
}

    .footer-bottom a {
        color: white;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

        .footer-bottom a:hover {
            color: white;
        }

.footer-logo .logo-img {
    width: 45%;
    height: 82px;
    margin-left: 0px;
    padding-top: 0px;
    margin-top: -15px;
    border-radius: 6%;
}
@media (max-width: 992px) {
    .footer-logo .logo-img {
        width: 47%;
        height: 82px;
        margin-left: -168px;
        padding-top: 0px;
        margin-top: -44px;
        border-radius: 6%;
    }

}
/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: var(--dark-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

    .scroll-top.active {
        opacity: 1;
        visibility: visible;
    }

    .scroll-top:hover {
        background-color: white;
        transform: translateY(-5px);
    }

/* ===========================
   GALLERY
=========================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    height: 250px;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: white;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: #ddd;
    font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

    .lightbox.active {
        opacity: 1;
        visibility: visible;
    }

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

    .lightbox-content img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ===========================
   ABOUT PAGE
=========================== */
/* Page Header */
.page-header {
    height: 40vh;
    background-image: url('/images/pageheader.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

    .page-header h1 {
        font-size: 3rem;
        margin-bottom: 10px;
    }

.breadcrumb {
    font-size: 1.1rem;
}

    .breadcrumb a {
        color: white;
        text-decoration: none;
        margin: 0 5px;
    }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

/* About Content */
.about-content {
    padding: 80px 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

    .about-text h2::after {
        content: '';
        position: absolute;
        width: 80px;
        height: 3px;
        background-color: var(--secondary-color);
        bottom: 0;
        left: 0;
    }

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-img {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

    .about-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .about-img:hover img {
        transform: scale(1.05);
    }

/* ===========================
   BOOKING PAGE
=========================== */
/* Resorts & Homestays Section */
.resorts-section {
    margin-bottom: 50px;
}

.resorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.resort-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

    .resort-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

.resort-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

    .resort-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.resort-card:hover .resort-img img {
    transform: scale(1.1);
}

.resort-type {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.resort-content {
    padding: 25px;
}

    .resort-content h3 {
        font-size: 1.5rem;
        color: var(--primary-color);
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .resort-content p {
        color: #666;
        margin-bottom: 20px;
        line-height: 1.6;
        text-align: justify;
    }

.resort-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #666;
    background-color: #f5f5f5;
    padding: 5px 10px;
    border-radius: 5px;
}

.resort-actions {
    display: flex;
    gap: 10px;
}

/* Badge styles for resort types */
.badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.badge-resort {
    background-color: #007bff;
    color: white;
}

.badge-homestay {
    background-color: #28a745;
    color: white;
}

/* WhatsApp Section */
.whatsapp-section {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    text-align: center;
}

    .whatsapp-section h2 {
        font-size: 1.8rem;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .whatsapp-section p {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

.whatsapp-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: var(--whatsapp-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

    .whatsapp-btn-large:hover {
        background-color: #128C7E;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .whatsapp-btn-large i {
        font-size: 1.3rem;
    }

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        background-color: #128C7E;
    }

/* ===========================
   CONTACT PAGE
=========================== */
/* Page Header */
.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 1.1rem;
}

    .breadcrumb a {
        color: white;
        text-decoration: none;
        margin: 0 5px;
    }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

/* Contact Content */
.contact-content {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

    .contact-info h2 {
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 10px;
    }

        .contact-info h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
            bottom: 0;
            left: 0;
        }

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--secondary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.info-content p {
    color: #666;
}

.info-content a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .info-content a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

    .contact-form h2 {
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 10px;
    }

        .contact-form h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
            bottom: 0;
            left: 0;
        }

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--primary-color);
    }

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

    .form-control:focus {
        outline: none;
        border-color: var(--secondary-color);
    }

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-section {
    background-color: white;
    header padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

    .map-container h2 {
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 10px;
        text-align: center;
    }

        .map-container h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

.map-wrapper {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
}

    .map-wrapper iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

/* ===========================
   LOGIN MODAL
=========================== */
.required::after {
    content: " *";
    color: #dc3545;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.text-danger.small {
    font-size: 0.875em;
}

/* Improved button hover effects */
.login-btn {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .login-btn:hover {
        background-color: #0f5849;
        border-color: #0f5849;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .login-btn:active {
        transform: translateY(0);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .login-btn:focus {
        box-shadow: 0 0 0 0.2rem rgba(19, 113, 94, 0.25);
    }

    /* Add a subtle shine effect on hover */
    .login-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .login-btn:hover::before {
        left: 100%;
    }

/* Also improve the close button hover */
.btn-secondary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Password toggle button hover */
.toggle-password:hover {
    background-color: #e9ecef;
    border-color: #ced4da;
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */
@media (max-width: 1200px) {
    .container {
        width: 95%;
    }
}

@media (max-width: 992px) {
    .about-intro {
        grid-template-columns: 1fr;
    }

    .about-text {
        order: 2;
    }

    .about-img {
        order: 1;
        height: 300px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .resorts-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 1.7rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .resorts-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .social-links {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .container {
        width: 100%;
        padding: 8px 15px;
    }

    .hero-content {
        width: 90%;
        padding: 40px 20px;
    }

        .hero-content h1 {
            font-size: 2rem;
        }

        .hero-content p {
            font-size: 1rem;
        }

    .features, .about-content, .contact-content {
        padding: 50px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

        .section-title h2 {
            font-size: 1.8rem;
        }

        .section-title p {
            font-size: 1rem;
        }

    .resort-content {
        padding: 15px;
    }

        .resort-content h3 {
            font-size: 1.3rem;
        }

    .whatsapp-section {
        padding: 25px;
    }

        .whatsapp-section h2 {
            font-size: 1.5rem;
        }

    .whatsapp-btn-large {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .contact-info, .contact-form {
        padding: 25px;
    }

        .contact-info h2, .contact-form h2 {
            font-size: 1.5rem;
        }

    .map-container {
        padding: 25px;
    }

        .map-container h2 {
            font-size: 1.5rem;
        }

    .map-wrapper {
        height: 300px;
    }
}
