/* --- 1. GLOBAL STYLES --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { 
            font-family: 'Outfit', sans-serif; 
            background: #F9F9FB; 
            color: #1E1E45; 
            line-height: 1.6;
            overflow-x: hidden;
            font-weight: 300; /* Restored lighter weight */
        }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .section-padding { padding: 100px 0; }
        
        .reveal { 
            opacity: 0; 
            transform: translateY(30px); 
            transition: all 1s ease-out; 
        }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* --- 2. TOP INFO BAR --- */
        .top-bar {
            background: #1E1E45;
            color: #fff;
            font-size: 0.75rem;
            padding: 12px 0;
        }
        .top-bar-container { display: flex; justify-content: space-between; align-items: center; }
        .top-bar-left span { margin-right: 25px; }
        .top-bar-right a { color: #fff; text-decoration: none; margin-left: 15px; opacity: 0.9; font-size: 0.7rem; }

        /* --- 3. NAVIGATION --- */
        nav {
            position: sticky; top: 0; width: 100%; height: 110px;
            display: flex; align-items: center; justify-content: center;
            background: rgba(255,255,255,0.98); z-index: 1000; 
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }
        .nav-container {
            display: flex; align-items: center; justify-content: space-between;
            width: 100%; max-width: 1200px; padding: 0 20px;
        }
        .nav-menu { 
            display: flex; gap: 28px; font-weight: 500; align-items: center; font-size: 0.85rem; text-transform: uppercase; 
        }
        .nav-menu a { 
            color: #1E1E45; 
            text-decoration: none; 
            transition: 0.3s; 
        }
        .nav-menu a:hover { color: #E899B5; }
        
        .logo-area img { height: 95px; width: auto; transition: 0.3s; }


/* BOOK YOUR STAY BUTTON */

.book-stay-btn {
    background: #e78ab6;
    color: white !important;
    padding: 14px 26px;
    border-radius: 999px;
    transition: all 0.35s ease;
    font-weight: 600;
    box-shadow: 0 12px 25px rgba(231,138,182,0.28);
    letter-spacing: 0.4px;
}

/* HOVER EFFECT */

.book-stay-btn:hover {
    background: #1E1E45;
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(30,30,69,0.22);
}

        /* --- 4. HERO SLIDER --- */
        .hero-slider { height: calc(100vh - 110px); position: relative; overflow: hidden; background: #000; }
        .slide {
            position: absolute; width: 100%; height: 100%;
            opacity: 0; transition: opacity 1.5s ease-in-out;
            background-size: cover; background-position: center;
        }
        .slide.active { opacity: 1; }
        .hero-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.2); 
            display: flex; align-items: center; justify-content: center;
            z-index: 2;
        }
        .hero-text h1 { 
            font-family: 'Montserrat', sans-serif; 
            font-size: clamp(2rem, 6vw, 4rem); 
            color: white; font-weight: 600; 
        }

        /* --- 5. OUR STORY --- */
        .story-section { background-color: #fff; }
        .story-grid { display: flex; align-items: center; gap: 60px; }
        .story-text-col { flex: 1; }
        .story-sub { font-weight: 600; color: #E899B5; text-transform: uppercase; letter-spacing: 2px; font-size: 0.75rem; margin-bottom: 10px; display: block; }
        .story-main-title { font-family: 'Montserrat', sans-serif; font-size: 2.8rem; margin-bottom: 25px; }
        .story-visual-col { flex: 1.2; position: relative; height: 500px; }
        .story-image-frame { border-radius: 12px; overflow: hidden; width: 85%; height: 100%; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
        .story-image-frame img { width: 100%; height: 100%; object-fit: cover; }
        .story-card-overlay { 
            position: absolute; bottom: -30px; right: 0; width: 60%; 
            background: #1E1E45; padding: 35px; color: #fff; border-radius: 8px;
        }

        /* --- 6. ROOMS & SUITES --- */
        .section-title { font-family: 'Montserrat', sans-serif; font-size: 2.5rem; text-align: center; margin-bottom: 60px; }
        .room-item { display: flex; align-items: center; gap: 50px; margin-bottom: 80px; }
        .room-item:nth-child(even) { flex-direction: row-reverse; }
        .room-details { flex: 1; }
        .room-image { flex: 1.4; height: 400px; border-radius: 10px; overflow: hidden; }
        .room-image img { width: 100%; height: 100%; object-fit: cover; }
        .book-btn { 
            display: inline-block; padding: 14px 35px; background: #E899B5; 
            color: #fff; text-decoration: none; font-weight: 500; border-radius: 5px; transition: 0.3s;
        }
        .explore-btn-container { text-align: center; margin-top: 20px; }
        .explore-more-btn { 
            display: inline-block; padding: 16px 45px; border: 2px solid #1E1E45; 
            color: #1E1E45; text-decoration: none; font-weight: 600; border-radius: 5px; 
            text-transform: uppercase; letter-spacing: 1px; transition: 0.3s;
        }

        /* --- 7. AMENITIES --- */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px 30px;
    text-align: center;
    align-items: start;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.amenity-icon-box {
    width: 70px;
    height: 70px;
    background: #1E1E45;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    flex-shrink: 0;
}

.amenity-icon-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.amenity-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.amenity-desc {
    color: #666;
    font-size: 0.82rem;
    line-height: 1.5;
    max-width: 230px;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 38px 20px;
    }
}

@media (max-width: 520px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

	/* --- ROOMS & SUITES SLIDER --- */
.rooms-section { background: #fff; overflow: hidden; padding-bottom: 100px; }
.rooms-wrapper { 
    display: flex; 
    gap: 20px; 
    transition: transform 0.5s ease-in-out; 
    padding: 0 20px; 
    width: max-content; 
}
.room-card { 
    width: 320px; 
    height: 450px; 
    position: relative; 
    border-radius: 12px; 
    overflow: hidden; 
    flex-shrink: 0; 
    cursor: pointer;
}
.room-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.room-card:hover img { transform: scale(1.05); }
.room-overlay { 
    position: absolute; bottom: 0; width: 100%; height: 100%; 
    background: linear-gradient(to top, rgba(30, 30, 69, 0.98), rgba(30, 30, 69, 0.7), transparent); 
    display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; color: #fff; 
}
.room-overlay h3 { font-family: 'Montserrat', sans-serif; font-size: 1.4rem; font-weight: 600; margin-bottom: 8px; }
.room-type { font-size: 0.8rem; opacity: 0.85; font-weight: 400; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 5px; color: #E899B5; }
.room-guests { font-size: 0.75rem; opacity: 0.7; margin-bottom: 15px; }
.room-amenities { display: flex; gap: 10px; margin-bottom: 15px; }
.room-amenity-icon { width: 32px; height: 32px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.room-amenity-icon i {
    font-size: 16px;
    color: #E899B5;
}
.room-price { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 600; color: #E899B5; }
.room-view-btn { 
    display: inline-block; padding: 10px 20px; background: #E899B5; 
    color: #fff; text-decoration: none; font-weight: 600; border-radius: 4px; 
    transition: 0.3s; margin-top: 12px; font-size: 0.85rem; text-align: center;
}
.room-view-btn:hover { background: #fff; color: #E899B5; }

/* --- CURATED EXPERIENCES SLIDER --- */
.experiences-section { background: #F9F9FB; overflow: hidden; padding-bottom: 100px; }
.slider-viewport { position: relative; width: 100%; margin-top: 50px; overflow: hidden; }
.exp-wrapper { 
    display: flex; 
    gap: 20px; 
    transition: transform 0.5s ease-in-out; 
    padding: 0 20px; 
    width: max-content; 
}
.exp-card { 
    width: 320px; 
    height: 450px; 
    position: relative; 
    border-radius: 12px; 
    overflow: hidden; 
    flex-shrink: 0; 
}
.exp-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.exp-card:hover img { transform: scale(1.1); }
.exp-overlay { 
    position: absolute; bottom: 0; width: 100%; height: 50%; 
    background: linear-gradient(to top, rgba(30, 30, 69, 0.95), transparent); 
    display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; color: #fff; 
}
.exp-overlay h3 { font-family: 'Montserrat', sans-serif; font-size: 1.3rem; font-weight: 500; margin-bottom: 5px; }
.exp-overlay p { font-size: 0.8rem; opacity: 0.8; font-weight: 300; }

.slider-nav { display: flex; justify-content: center; gap: 20px; margin-top: 40px; }
.nav-btn { 
    background: none; border: 1px solid #1E1E45; width: 50px; height: 50px; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s; 
}
.nav-btn:hover { background: #1E1E45; }
.nav-btn i {
    font-size: 18px;
    color: #1E1E45;
    transition: color 0.3s ease;
}

.nav-btn:hover i {
    color: #fff;
}

/* HOME GALLERY SECTION */

.home-gallery-section {
    padding: 70px 0;
    overflow: hidden;
}

.gallery-heading {
    text-align: center;
    margin-bottom: 20px;
}

.gallery-heading h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1E1E45;
}

.gallery-slider {
    width: 100%;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: galleryScroll 35s linear infinite;
}

.gallery-track img {
    width: 320px;
    height: 230px;
    object-fit: cover;
    border-radius: 18px;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.gallery-slider:hover .gallery-track {
    animation-play-state: paused;
}

@keyframes galleryScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* MOBILE VIEW */

@media (max-width: 768px) {

    .home-gallery-section {
        padding: 45px 0;
    }

    .gallery-heading h2 {
        font-size: 28px;
    }

    .gallery-heading p {
        font-size: 14px;
    }

    .gallery-track {
        gap: 12px;
        animation-duration: 28s;
    }

    .gallery-track img {
        width: 240px;
        height: 170px;
        border-radius: 14px;
    }
}

/* PLACES TO VISIT */

.attractions-section {
    background: #F9F9FB;
}

.places-wrapper {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr;
    gap: 35px;
    align-items: center;
    margin-top: 35px;
}

.places-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
    transition: 0.35s ease;
}

.places-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.place-item {
    padding: 16px 18px;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #ececec;
}

.place-item:hover,
.place-item.active {
    background: #1E1E45;
    color: white;
    transform: translateY(-3px);
}

.place-item h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    line-height: 1.3;
}

.place-item span {
    font-size: 0.78rem;
    opacity: 0.8;
}

/* MOBILE */

@media (max-width: 900px) {

    .places-wrapper {
        grid-template-columns: 1fr;
    }

    .places-image img {
        height: 300px;
    }

    .places-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {

    .places-list {
        grid-template-columns: 1fr;
    }
}

        /* --- 10. GUEST STORIES (NARROWER & WHITE TEXT) --- */
        .reviews-section { 
            padding: 80px 0; 
            background: linear-gradient(rgba(30, 30, 69, 0.85), rgba(30, 30, 69, 0.85)), url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&q=80&w=2070');
            background-size: cover; background-position: center; background-attachment: fixed;
            color: #fff; text-align: center;
        }
        .reviews-section .section-title { color: #fff; }
        .testimonial-wrapper { max-width: 600px; margin: 0 auto; height: 180px; position: relative; }
        .review-card { position: absolute; width: 100%; opacity: 0; transition: 1s; color: #fff; }
        .review-card.active { opacity: 1; }
        .review-text { font-size: 1.2rem; font-style: italic; margin-bottom: 15px; }

/* --- HOW TO REACH SECTION --- */
.reach-section { background: #fff; text-align: center; }
.reach-intro { max-width: 700px; margin: -30px auto 50px; color: #666; font-size: 0.95rem; }

.reach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.reach-card {
    padding: 40px 20px;
    border: 1px solid #F0F0F0;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.reach-card:hover {
    border-color: #E899B5;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.reach-icon {
    width: 60px;
    height: 60px;
    background: #1E1E45;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.reach-icon i {
    color: #fff;
    font-size: 26px;
    line-height: 1;
}

.reach-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.reach-card p {
    font-size: 0.9rem;
    color: #666;
}

.travel-assistance {
    background: #F9F9FB;
    padding: 30px;
    border-radius: 8px;
    display: inline-block;
    max-width: 800px;
    font-size: 0.9rem;
    color: #1E1E45;
    border-left: 4px solid #E899B5;
}

@media (max-width: 850px) {
    .reach-grid { grid-template-columns: 1fr; }
    .reach-card { padding: 30px; }
}

        /* --- 11. CONTACT --- */
        .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
        .contact-info { margin-top: 25px; font-size: 0.9rem; border-top: 1px solid #eee; padding-top: 25px; }
        .contact-info p { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
        input, textarea { width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 5px; }
        .submit-btn { background: #1E1E45; color: #fff; border: none; padding: 18px; width: 100%; cursor: pointer; border-radius: 5px; font-weight: 600; }

        footer { 
            background: #141432; 
            color: #fff; 
            padding: 60px 0 40px; 
            font-size: 0.9rem; 
            line-height: 1.6;
        }
        .footer-content { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .footer-description { 
            text-align: center; 
            margin-bottom: 40px; 
            opacity: 0.9; 
            max-width: 800px; 
            margin-left: auto; 
            margin-right: auto;
        }
        .footer-links { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
            gap: 20px; 
            text-align: center; 
            margin-bottom: 30px;
        }
        .footer-links a { 
            color: #fff; 
            text-decoration: none; 
            opacity: 0.8; 
            transition: opacity 0.3s;
            display: block;
            padding: 8px 0;
        }
        .footer-links a:hover { opacity: 1; }
        .footer-copyright { 
            text-align: center; 
            opacity: 0.7; 
            font-size: 0.8rem; 
            border-top: 1px solid rgba(255,255,255,0.1); 
            padding-top: 20px;
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 20px 0;
        }

        .social-icon {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #1E1E45;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }

        .social-icon:hover {
            background: #E899B5;
        }

        .social-icon i {
    color: #fff;
    font-size: 20px;
    line-height: 1;
}

        @media (max-width: 900px) {
            .nav-menu { display: none; }
            .story-grid, .room-item, .contact-grid { flex-direction: column; }
            .amenities-grid { grid-template-columns: repeat(2, 1fr); }
        }
        /* LIGHTBOX */

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 40px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
}

.lightbox-content {
    display: block;
    margin: auto;
    max-width: 85%;
    max-height: 80vh;
    border-radius: 12px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 45px;
    cursor: pointer;
    padding: 15px;
    user-select: none;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover,
.close-lightbox:hover {
    opacity: 0.7;
}
/* FLOATING CONTACT BUTTONS */

.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.floating-contact a {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
}

.floating-contact a:hover {
    transform: translateY(-4px) scale(1.05);
}

.whatsapp-btn {
    background: #25D366;
}

.call-btn {
    background: #1E1E45;
}

.floating-contact i {
    color: #fff;
    font-size: 1.45rem;
    line-height: 1;
}

.whatsapp-btn i {
    font-size: 1.55rem;
}

/* MOBILE */

@media (max-width: 768px) {

    .floating-contact {
        right: 14px;
        bottom: 14px;
    }

    .floating-contact a {
        width: 52px;
        height: 52px;
    }

    .floating-contact i {
    font-size: 1.2rem;
}
}
/* PULSE ANIMATION */

.whatsapp-btn,
.call-btn {
    position: relative;
    animation: pulseContact 2s infinite;
}

@keyframes pulseContact {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* TOOLTIP */

.floating-contact a::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background: #1E1E45;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.floating-contact a:hover::before {
    opacity: 1;
    transform: translateX(0);
}
/* BOOK NOW FLOATING BUTTON */

.book-now-btn i {
    font-size: 1.35rem;
}

.book-now-btn i {
    font-size: 1.35rem;
}

/* PINK PULSE */

@keyframes pulseBook {

    0% {
        box-shadow: 0 0 0 0 rgba(232,153,181,0.45);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(232,153,181,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(232,153,181,0);
    }
}
/* HERO VIDEO */


        .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    background: #000;
    display: block;
}

/* Desktop: use cover and shift focal point so embedded center text remains visible */
@media (min-width: 769px) {
    .hero-video-desktop {
        object-fit: cover;
        /* shift video slightly up so center text isn't cropped by top nav */
        object-position: center 42%;
    }

    /* ensure mobile video stays unchanged on desktop */
    .hero-video-mobile {
        object-fit: cover;
        object-position: center center;
    }
}
.hero-video-desktop {
    display: block;
}

.hero-video-mobile {
    display: none;
}
/* =========================
   MOBILE RESPONSIVE FIXES
   ========================= */

@media (max-width: 768px) {

    .container {
        padding: 0 18px;
    }

    .section-padding {
        padding: 55px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 35px;
    }

    /* TOP BAR */
    .top-bar {
        font-size: 0.65rem;
        text-align: center;
    }

    .top-bar-container {
        flex-direction: column;
        gap: 8px;
    }

    .top-bar-right {
        display: none;
    }

    /* NAV */
    nav {
        height: 85px;
    }

    .logo-area img {
        height: 60px;
    }

    .nav-menu {
        display: none;
    }

    /* HERO VIDEO */
    .hero-slider {
        height: 75vh;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center bottom;
    }
    .hero-video-desktop {
    display: none;
}

.hero-video-mobile {
    display: block;
}

    /* ABOUT */
    .story-grid {
        flex-direction: column;
        gap: 40px;
    }

    .story-main-title {
        font-size: 2rem;
    }

    .story-visual-col {
        width: 100%;
        height: 380px;
    }

    .story-image-frame {
        width: 100%;
    }

    .story-card-overlay {
        position: relative;
        width: 100%;
        right: auto;
        bottom: auto;
        margin-top: 20px;
        padding: 24px;
    }

    /* ROOMS SLIDER */
    .room-card {
        width: 280px;
        height: 420px;
    }

    .rooms-wrapper {
        padding: 0 18px;
    }

    /* AMENITIES */
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 18px;
    }

    .amenity-desc {
        font-size: 0.8rem;
    }

    /* CURATED EXPERIENCES */
    .exp-card {
        width: 270px;
        height: 390px;
    }

    .exp-overlay {
        padding: 24px;
    }

    /* GALLERY */
    .gallery-track img {
        width: 240px;
        height: 170px;
    }

    /* PLACES TO VISIT */
    .places-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .places-image img {
        height: 300px;
    }

    .place-item {
        padding: 16px;
    }

    .place-item h3 {
        font-size: 17px;
    }

    /* REVIEWS */
    .reviews-section {
        background-attachment: scroll;
    }

    .testimonial-wrapper {
        height: 260px;
    }

    .review-text {
        font-size: 1rem;
    }

    /* HOW TO REACH */
    .reach-grid {
        grid-template-columns: 1fr;
    }

    .reach-intro {
        margin: -15px auto 35px;
    }

    /* CONTACT */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    iframe {
        height: 320px;
    }

    /* FOOTER */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .footer-description {
        font-size: 0.85rem;
    }

    /* FLOATING BUTTONS */
    .floating-contact {
        right: 14px;
        bottom: 14px;
    }

    .floating-contact a {
        width: 50px;
        height: 50px;
    }
}
