* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
    background: linear-gradient(135deg, #fff, #e8fdf1) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1) !important;
}

header {
    position: fixed;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    z-index: 1000;
    transition: background 0.3s ease;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.9);
}

header h1 {
    font-size: 1.3rem;
    white-space: nowrap;
    color: #25D366;
}


h2 {
    font-size: 1.7rem;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #1b5e20, #25d366);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 700;
}

/* Header social icons */
.header-social {
    display: flex;
    gap: 10px;
}

.header-social a {
    color: white;
    font-size: 18px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.header-social a.instagram:hover {
    color: #E4405F;
    transform: scale(1.2);
}

.header-social a.facebook:hover {
    color: #1877F2;
    transform: scale(1.2);
}

.header-title {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    font-size: 1.5rem;
    color: white;
    width: 100%;
    padding-right: 10px;
}


nav {
    display: flex;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

nav a:hover {
    color: #25D366;
    text-shadow: 0 0 8px #25D366;
}

nav a.active {
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.3);
    text-shadow: 0 0 6px #25D366;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle.active .bar {
    background-color: #25D366;
    box-shadow: 0 0 8px #25D366;
}

.menu-toggle:not(.active):hover .bar {
    background-color: #fff;
    box-shadow: 0 0 8px #fff;
}


@media (max-width: 768px) {
    nav {
        position: absolute;
        top: 51px;
        right: 0;
        background: #222;
        width: 50%;
        flex-direction: column;
        align-items: flex-start;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease, opacity 0.5s ease;
        opacity: 0;
        border-top: 3px solid #25D366;
        z-index: 1000;
    }

    nav.active {
        max-height: 500px;
        opacity: 1;
    }

    nav a {
        display: block;
        width: 100%;
        text-align: center;
        margin: 5px 0;
        font-size: 1rem;
        padding: 12px 0;
        border-radius: 0;
        color: #fff;
        font-weight: 500;
        background: #222;
        transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 60px;
        cursor: pointer;
        z-index: 1100;
    }

    .menu-toggle .bar {
        height: 3px;
        width: 100%;
        background-color: #fff;
        border-radius: 2px;
        transition: all 0.5s ease;
        margin: 3px 0;
    }

    /* Animate nav links individually on menu open */
    nav.active a {
        animation: slideIn 0.5s forwards;
    }

    nav a:nth-child(1) {
        animation-delay: 0.1s;
    }

    nav a:nth-child(2) {
        animation-delay: 0.2s;
    }

    nav a:nth-child(3) {
        animation-delay: 0.3s;
    }

    nav a:nth-child(4) {
        animation-delay: 0.4s;
    }

    nav a:nth-child(5) {
        animation-delay: 0.5s;
    }

    nav a:nth-child(6) {
        animation-delay: 0.6s;
    }

    nav a:nth-child(7) {
        animation-delay: 0.7s;
    }

    nav a:nth-child(8) {
        animation-delay: 0.8s;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}


/* HERO SECTION */
.hero {
    background: url('images/image2.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 15s ease;
    animation: zoomHero 20s ease-in-out infinite alternate;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0.6));
    z-index: 1;
}

@keyframes zoomHero {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.2);
    }
}

.hero h2,
.hero p,
.hero .booking-links {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 2.8rem;
    color: #25D366;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 600px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
    margin-bottom: 25px;
}

.booking-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.booking-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 10px 18px;
    color: white;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

/* ✅ Brand-specific hover colors */
.booking-links a.whatsapp:hover {
    background: #25D366;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.6);
    transform: scale(1.08);
}

.booking-links a.airbnb:hover {
    background: #FF5A5F;
    box-shadow: 0 0 12px rgba(255, 90, 95, 0.6);
    transform: scale(1.08);
}

.booking-links a.booking:hover {
    background: #050779;
    box-shadow: 0 0 12px rgba(11, 5, 96, 0.6);
    transform: scale(1.08);
}

.booking-links img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* ✅ Make the SVG white on hover */
.booking-links a.airbnb:hover img {
    filter: brightness(0) invert(1);
}

/* Hide booking text on mobile and keep only icons */
@media (max-width: 768px) {
    .booking-links a span {
        display: none;
    }

    .booking-links a {
        padding: 10px;
    }

    .booking-links a img {
        width: 36px;
        height: 36px;
    }
}

/* SOCIAL LINKS */
.social-links {
    position: absolute;
    bottom: 30px;
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 24px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #25D366;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 1.8rem !important;
    }

    .hero p {
        font-size: 1rem;
    }

    .booking-links a {
        padding: 8px 14px;
        font-size: 0.9rem;
    }

    .social-links {
        bottom: 20px;
        gap: 15px;
    }
}

/* ABOUT SECTION */
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    margin: 10px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.about-content {
    border-radius: 14px;
    padding: 0 30px;
}

.about h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.about p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about strong {
    color: #25D366;
}

@media (max-width: 768px) {
    .about-content {
        padding: 25px 18px;
    }

    .about h2 {
        font-size: 1.7rem;
    }

    .about p {
        font-size: 1rem;
    }
}

/* SECTIONS */
section {
    text-align: center;
    padding: 20px 20px;
}


/* GALLERY */
@media (max-width: 768px) {

    .gallery {
        height: 430px;
    }
}

.gallery {
    margin: 10px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.slider {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.slides {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.slides img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Arrows */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 1.8rem;
    padding: 10px 16px;
    cursor: pointer;
    border-radius: 12px;
    z-index: 10;
    transition: all 0.35s ease;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.2);
}

/* Hover effects */
.prev:hover,
.next:hover {
    background: linear-gradient(90deg, #1b5e20, #25d366);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0px 6px 25px rgba(254, 254, 254, 0.4);
}


.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Mobile */
@media (max-width: 768px) {
    .slides img {
        height: 300px;
    }

    .prev,
    .next {
        font-size: 1.5rem;
        padding: 5px 10px;
    }
}

/* MAP */
.map-section {
    margin: 10px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.map-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .map-container {
        height: 450px;
    }
}

/* AMENITIES */
.amenities {
    padding: 20px 20px;
    margin: 10px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.amenities h2 {
    margin-bottom: 10px;
}

.amenities .subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
    justify-content: left;
    align-items: stretch;
}

.amenity-card {
    background: #fafafa;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    font-size: 1rem;
    display: flex;
    align-items: left;
    justify-content: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    gap: 10px;
}

/* Icon Colors */
.pool {
    color: #3bb5ff;
}

.nosmoke {
    color: #ff4d4d;
}

.parking {
    color: #00d084;
}

.wifi {
    color: #007bff;
}

.family {
    color: #ffe066;
}

.bathroom {
    color: #4dabf7;
}

.ac {
    color: #00e0ff;
}

.kitchen {
    color: #ffa940;
}

.tv {
    color: #6f42c1;
}

.washer {
    color: #a0aec0;
}

.jacuzzi {
    color: #ff66c4;
}

.privpool {
    color: #0099ff;
}

.ev {
    color: #66d933;
}

.video {
    color: #ff9900;
}

.heat {
    color: #ff5e00;
}

.lang {
    color: #ffd43b;
}

.amenity-card i {
    font-size: 1.2rem;
    width: 22px;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* Make Amenities Scrollable on Mobile */
@media (max-width: 768px) {
    .amenities {
        max-height: 70vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .amenity-card {
        background: #fafafa;
        border-radius: 10px;
        padding: 20px;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .amenities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15x;
        justify-content: center;
        align-items: stretch;
    }
}

/* POLICY */
.instructions {
    background: url('images/image21.jpg') no-repeat center center/cover;
    margin: 20px;
    display: flex;
    position: relative;
    border-radius: 20px;
    justify-content: center;
}

.instructions-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.12);
    padding: 30px 24px;
    border-radius: 16px;
    height: 100%;
    max-width: 900px;
    text-align: left;
}

.instructions-content h2 {
    text-align: center;
    font-size: 1.7rem;
    margin-bottom: 22px;
    padding: 12px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #25D366, #1b8f4d);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 768px) {
    .instructions {
        max-height: 70vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .instructions-content {
        max-width: 100%;
        padding: 30px 24px;
    }
}

.info-box {
    margin-bottom: 18px;
    background: rgba(0, 0, 0, 0.4);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.info-box h3 {
    color: #25D366;
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.info-box p {
    color: #eee;
    line-height: 1.6;
    font-size: 1rem;
}

/* REVIEW */
.testimonials {
    padding: 20px 20px;
    text-align: center;
    margin: 10px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.testimonials h2 {
    margin-bottom: 20px;
}

.testimonial-container {
    max-height: 500px;
    overflow-y: auto;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}


.testimonial-card {
    background: #fafafa;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}


.testimonial-name {
    font-weight: bold;
    margin-bottom: 6px;
}


.testimonial-source {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
    gap: 10px
}

.testimonial-source i {
    color: #f4c150;
    margin-right: 3px;
}


.testimonial-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #444;
    font-style: italic;
}

@media (max-width: 768px) {
    .testimonial-container {
        max-height: 70vh;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
    }

    .testimonial-card {
        max-width: 98%;
        width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        font-family: 'Roboto', sans-serif !important;
        padding: 15px;
    }

    .testimonial-card img {
        max-width: 100%;
        height: auto;
    }

    .testimonial-text {
        font-size: 0.8em;
    }
}

/* CONTACT */
.contact {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #fff, #e8fdf1);
    border-radius: 16px;
    margin: 30px 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.contact p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 22px;
}

.contact-wrapper {
    max-width: 800px;
    margin: auto;
}

/* Social Icons */
.contact-social {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-social a {
    font-size: 1.4rem;
    color: grey;
}

.contact-social a:hover {
    transform: scale(1.15);
}

/* Platform Colors */
.instagram:hover {
    color: #e4405f;
}

.facebook:hover {
    color: #1877f2;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #1ebe5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.5);
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* SCROLL FADE EFFECT */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}