/* =========================================
MATRIX AVENUE HOTEL WEBSITE CSS (CLEAN)
Mobile First | Optimized | No Duplicates
========================================= */


/* =========================================
COLOR VARIABLES
========================================= */

:root {
    --primary: #1C2A39;
    --secondary: #D4AF37;

    --dark: #0F1720;
    --text: #2B2B2B;
    --light: #F7F8FA;

    --border: #E6E6E6;

    /* Elementor-style */
    --section-padding: 80px;
}


/* =========================================
GLOBAL
========================================= */

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
    /* font-family: 'Playfair Display', serif; */
    font-family: "Pragati Narrow", sans-serif;

    font-weight: 600;
    color: var(--primary);
    margin: 0 0 10px;
}

p {
    margin-bottom: 16px;
}

a {
    text-decoration: none;
    transition: .3s ease;
}

a:hover {
    opacity: .85;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* =========================================
SECTION
========================================= */

section {
    padding: var(--section-padding) 0;
}

@media(max-width:768px) {
    section {
        padding: 50px 0;
    }
}

.logo {
    height: 50px;
}

/* =========================================
NAVBAR BASE
========================================= */

.navbar {
    background: #1C2A39;
    padding: 14px 0;
}

.logo {
    height: 50px;
}


/* =========================================
CUSTOM HAMBURGER
========================================= */

.custom-toggler {
    border: none;
    background: none;
    outline: none;
    display: none; /* hidden on desktop */
}

.toggler-icon {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: .3s;
}

/* ACTIVE (X ICON) */

.custom-toggler.active .top-bar {
    transform: rotate(45deg) translate(5px, 5px);
}

.custom-toggler.active .middle-bar {
    opacity: 0;
}

.custom-toggler.active .bottom-bar {
    transform: rotate(-45deg) translate(6px, -6px);
}


/* =========================================
SIDE MENU (MOBILE)
========================================= */

.side-menu {
    position: fixed;
    top: 0;
    right: -100%;

    width: 85%;
    max-width: 340px;
    height: 100%;

    background: #1C2A39;

    z-index: 9999;

    padding: 25px;

    transition: .4s ease;

    display: flex;
    flex-direction: column;

    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
}

.side-menu.active {
    right: 0;
}


/* HEADER */

.side-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.menu-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}


/* NAV ITEMS */

.side-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-nav li {
    margin-bottom: 5px;
}

.side-nav a {
    display: block;
    padding: 12px 0;

    color: #fff;
    font-size: 16px;
    font-weight: 500;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    transition: .3s;
}

.side-nav a:hover {
    color: #D4AF37;
    padding-left: 5px;
}

.side-nav .btn {
    margin-top: 10px;
}


/* =========================================
OVERLAY
========================================= */

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.5);

    opacity: 0;
    visibility: hidden;

    transition: .3s;

    z-index: 9998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================
MOBILE SUBMENU
========================================= */

.has-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.submenu {
    list-style: none;
    padding-left: 15px;

    max-height: 0;
    overflow: hidden;

    transition: .3s ease;
}

.has-submenu.active .submenu {
    max-height: 300px;
}

.submenu li a {
    font-size: 14px;
    padding: 8px 0;
    color: #ccc;
    display: block;
}

.submenu li a:hover {
    color: #D4AF37;
}

.has-submenu i {
    transition: .3s;
}

.has-submenu.active i {
    transform: rotate(180deg);
}


/* =========================================
RESPONSIVE CONTROL
========================================= */

/* DESKTOP */

@media (min-width:992px) {

    .custom-toggler {
        display: none;
    }

    .side-menu,
    .menu-overlay {
        display: none;
    }

    #mainNav {
        display: flex !important;
    }
}


/* MOBILE */

@media (max-width:991px) {

    .custom-toggler {
        display: block;
    }

    #mainNav {
        display: none !important;
    }

    .side-menu {
        width: 90%;
    }
}


/* =========================================
EXTRA POLISH (PREMIUM)
========================================= */

.navbar-nav .nav-link {
    position: relative;
}

.navbar-nav .nav-link:not(.dropdown-toggle)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;

    width: 0;
    height: 2px;

    background: #D4AF37;

    transition: .3s;
}

.navbar-nav .nav-link:not(.dropdown-toggle):hover::after {
    width: 100%;
}
.navbar .dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}
.dropdown-toggle::after {
    display: none;
}
.dropdown-arrow {
    font-size: 12px;
    transition: 0.3s;
}   
.nav-link {
    display: flex;
    align-items: center;
}
/* smooth slide animation */

.side-menu.active {
    animation: slideIn .4s ease;
}

@keyframes slideIn {
    from { right: -100%; }
    to { right: 0; }
}


/* =========================================
DESKTOP DROPDOWN (FINAL)
========================================= */

.navbar .dropdown {
    position: relative;
}

.navbar .dropdown-menu {

    position: absolute;
    top: 100%;
    left: 0;

    min-width: 220px;

    border: none;
    border-radius: 8px;

    padding: 10px 0;
    margin-top: 10px;

    background: #fff;

    box-shadow: 0 15px 40px rgba(0,0,0,0.1);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: all .3s ease;

    display: block;
}

.navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    font-size: 14px;
    padding: 10px 20px;
    color: #333;
}

.dropdown-item:hover {
    background: #F5F3F1;
    color: #D4AF37;
}

/* =========================================
BUTTONS
========================================= */

.btn {
    border-radius: 4px;
    padding: 10px 20px;
    font-weight: 500;
}

.btn-warning {
    background: var(--secondary);
    border: none;
    color: #fff;
}

.btn-warning:hover {
    background: #b9982c;
}


/* =========================================
HERO
========================================= */

.hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
    padding: 0px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    position: absolute;
    left: 18%;
    /* right: 10% */
}

.hero h1 {
    font-size: 46px;
    color: #fff;
}

.hero p {
    color: #fff;
    font-size: 18px;
}

/* =========================================
HERO MOBILE FIX
========================================= */

@media (max-width:768px) {

    .hero-container {
        background: rgba(0, 0, 0, 0.4) !important;
        width: 100%;
        height: 100%;

        /* REMOVE CARD LOOK */
        border-radius: 0;

        /* FULL COVER */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        /* ADJUST PADDING */
        padding: 20px;
        position: relative;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;


    }

    .hero h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 15px;
    }

    .booking-widget {
        flex-direction: column;
        gap: 10px;
        padding-bottom: 20px;
    }

}

/* =========================================
BOOKING
========================================= */

.booking-widget {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-book {
    background: var(--secondary);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
}

.btn-book:hover {
    transform: translateY(-2px);
}


/* =========================================
FEATURES
========================================= */

.feature-icon {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.feature-box {
    padding: 20px;
}


/* =========================================
COMMON UTIL
========================================= */

.bg-soft {
    background: #F5F3F1;
}

.tag {
    color: #f69001;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 32px;
    margin-bottom: 15px;
}

.section-text {
    font-size: 15px;
    color: #555;
}

/* =========================
FILTER BUTTONS
========================= */

.filter-btn {

    border: none;
    background: #eee;
    padding: 8px 16px;
    margin: 5px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;

}

.filter-btn.active,
.filter-btn:hover {

    background: #C8A97E;
    color: white;

}


/* =========================================
GALLERY
========================================= */

.gallery img {
    border-radius: 6px;
    transition: .3s;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.05);
}


/* =========================================
LIGHTBOX
========================================= */

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

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}


/* =========================================
OFFERS SECTION (FINAL)
========================================= */

.offers-section {
    background: #F5F3F1;
}

.offer-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: .4s;
    height: 620px;
}

.offer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.offer-card h4 {
    font-size: 26px;
    line-height: 1em;
    font-weight: 600;
    letter-spacing: 0px;
    color: var(--e-global-color-accent);
}

.offer-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #C8A97E;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
}

/* Elementor-like */
.elementor-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 40px;
    background: #5C4E48;
    color: #fff;
}

/* Left */
.style-1 .offer-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

}

/* Right */
.offer-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 40px;
    background: #5C4E48;
    color: #fff;
}

/* Center */
.style-2 {
    display: flex;
    flex-direction: column;
    height: 620px;
}

.offer-top {
    padding: 40px;
    background: #5C4E48;
    color: #fff;
}

.style-2 img {
    flex: 1;
    object-fit: cover;
}

.offer-card h4 {
    font-size: 22px;
}

.offer-card p {
    font-size: 14px;
    color: #ddd;
}


/* =========================================
ROOMS
========================================= */

.room-card {
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: .3s;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.room-card .card-body {
    padding: 22px;
}


/* =========================================
CTA
========================================= */

.cta {
    background: var(--primary);
    color: #fff;
    text-align: center;
}

.cta h2 {
    color: #fff;
}

/* =========================================
FAQ SECTION
========================================= */

.faq-section {
    /* background: #fff; */
}

/* IMAGE */

.faq-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-image img {
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}



/* ACCORDION */

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.faq-question i {
    font-size: 14px;
    transition: .3s;
}

/* ANSWER */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all .3s ease;
    font-size: 14px;
    color: #555;
}

/* ACTIVE */

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 10px;
}

.faq-item.active i {
    transform: rotate(180deg);
}

/* =========================================
VIDEO SECTION
========================================= */

.video-section {
    padding: 0;
}

.video-wrapper {
    position: relative;
    overflow: hidden;
}

.video-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* DARK OVERLAY */

.video-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}


/* PLAY BUTTON */

.video-play-btn {

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 70px;
    height: 70px;

    border-radius: 50%;

    background: #C8A97E;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    cursor: pointer;

    z-index: 2;

    transition: .3s;

}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* =========================================
VIDEO MODAL (FINAL FIX)
========================================= */

.video-modal {

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.95);

    z-index: 9999;

    /* HIDDEN STATE */
    opacity: 0;
    visibility: hidden;

    /* CENTERING */
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    transition: all .3s ease;

}

/* ACTIVE */

.video-modal.active {
    opacity: 1;
    visibility: visible;
}


/* CONTENT */

.video-modal-content {

    position: relative;

    width: 100%;
    max-width: 900px;

    display: flex;
    justify-content: center;
    align-items: center;

}


/* VIDEO */

.video-frame {
    width: 100%;
    display: flex;
    justify-content: center;
}

.video-frame video {

    width: 100%;
    max-height: 80vh;

    border-radius: 8px;

}


/* CLOSE BUTTON */

.video-close {

    position: absolute;
    top: -45px;
    right: 0;

    font-size: 32px;
    color: white;

    cursor: pointer;
    z-index: 10;

}


/* MOBILE */

@media(max-width:768px) {

    .video-frame video {
        max-height: 60vh;
    }

    .video-close {
        top: -35px;
        right: 10px;
    }

}



/* =========================================
FOOTER
========================================= */

/* =========================================
PREMIUM FOOTER
========================================= */

.footer {

    background: #0F1720;
    color: #ccc;

    padding: 70px 0 30px;

}

/* LOGO */

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

/* TEXT */

.footer-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* TITLES */

.footer-title {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

/* LINKS */

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    font-size: 14px;
}

.footer-links a:hover {
    color: #D4AF37;
}

/* CONTACT */

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    gap: 10px;
}

.footer-contact i {
    color: #D4AF37;
    margin-top: 4px;
}

/* SOCIAL */

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {

    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1C2A39;
    color: #fff;

    border-radius: 50%;

    font-size: 14px;

    transition: .3s;

}

.footer-social a:hover {
    background: #D4AF37;
    color: #000;
}

/* DIVIDER */

.footer-divider {
    border-color: #2c3440;
    margin: 30px 0;
}

/* BOTTOM */

.footer-bottom {
    font-size: 13px;
    color: #888;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .footer {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

}

/* =========================================
WHATSAPP
========================================= */

.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================
RESPONSIVE
========================================= */

@media(max-width:992px) {

    .hero {
        height: 65vh;
    }

    .offer-card {
        height: auto;
    }

    .style-2 {
        height: auto;
    }

    .style-2 img {
        height: 300px;
    }

}

@media(max-width:768px) {

    .hero {
        height: 60vh;
    }

    .hero h1 {
        font-size: 30px;
    }

    .offer-bottom,
    .offer-top,
    .elementor-box {
        padding: 25px;
    }

}



/* =========================================
PREMIUM LANDMARKS
========================================= */

.landmarks-premium {
    background: #fff;
}

/* LIST */

.landmark-list {
    margin-top: 30px;
}

/* ROW */

.landmark-row {

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 20px;

    border-bottom: 1px solid #eee;

    cursor: pointer;

    transition: .3s;

}

/* HOVER */

.landmark-row:hover {
    background: #F9F9F9;
}

/* ACTIVE */

.landmark-row.active {
    background: #F5F3F1;
    border-left: 3px solid #D4AF37;
}

/* TEXT */

.landmark-row h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.landmark-row p {
    margin: 0;
    font-size: 13px;
    color: #777;
}

/* META */

.landmark-meta {
    text-align: right;
}

.landmark-meta .distance {
    font-weight: 600;
    font-size: 14px;
    color: #1C2A39;
}



/* MAP */

.landmark-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 480px;
    border: none;
}

.landmark-meta span {
    font-weight: 600;
    color: #1C2A39;
}

.landmark-meta small {
    color: #888;
}

/* MOBILE */

@media(max-width:768px){

    .landmark-map iframe {
        height: 300px;
    }

}


/* =========================================
PREMIUM Facilities
========================================= */

/* =========================
INNER HERO
========================= */
.inner-hero {
    position: relative;
    height: 30vh;
    overflow: hidden;
}

.inner-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.85);
    /* background: rgba(0,0,0,0.5); */
    color: #fff;
}
.inner-hero-overlay h1 {
    font-size: 50px;
    font-weight: 600;
    color: #fff;
}
/* =========================
FACILITIES GRID (RIVORA STYLE)
========================= */

.facilities-grid {
    background: #f5f5f5;
}

/* GRID */
.fac-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

/* IMAGE BLOCK */
.fac-img {
    position: relative;
    overflow: hidden;
}

.fac-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

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

/* CONTENT BLOCK */
.fac-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 60px;
    background: #f2f2f2;
}

.fac-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.fac-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* HEIGHT FIX */
.fac-img,
.fac-content {
    min-height: 300px;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 992px) {
    .fac-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .fac-content {
        padding: 30px;
        text-align: center;
    }
}



/** Why choose section */
.why-us-section {
    background: #fff;
}

.why-card {
    padding: 30px 20px;
    border-radius: 10px;
    transition: 0.3s;
        background: #fff;
    border: 1px solid #eee;
    transition: 0.4s;
}

.why-card i {
    font-size: 30px;
    color: #D4AF37;
    margin-bottom: 15px;
}

.why-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #666;
}

.why-card:hover {
    transform: translateY(-5px);
}
/* ICON ANIMATION */
.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;

    transition: 0.4s;
}

.icon-box i {
    font-size: 28px;
    color: var(--secondary);
    transition: 0.4s;
}

/* HOVER EFFECT */
.why-card:hover .icon-box {
    background: var(--secondary);
    transform: rotateY(180deg);
}

.why-card:hover .icon-box i {
    color: #fff;
    transform: rotateY(180deg);
}


/* CARD ENHANCEMENT */
.why-card {

}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}




/* CARD LAYOUT */
.hotel-card.premium {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* IMAGE */
.hotel-img {
    position: relative;
}

.hotel-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* BADGE */
.hotel-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #D4AF37;
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 4px;
}

/* CONTENT */
.hotel-content {
    padding: 25px;
}

/* HEADER */
.hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hotel-header h4 {
    font-size: 20px;
    margin: 0;
}

/* LOCATION */
.location {
    font-size: 14px;
    color: #777;
    margin: 8px 0;
}

.location i {
    color: #D4AF37;
    margin-right: 5px;
}

/* DESCRIPTION */
.desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* AMENITIES */
.amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.amenities span {
    font-size: 13px;
    background: #f5f5f5;
    padding: 6px 10px;
    border-radius: 20px;
}

.amenities i {
    margin-right: 5px;
    color: #D4AF37;
}

/* FOOTER */
.hotel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 18px;
    font-weight: 600;
}

/* HOVER */
.hotel-card.premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}


/* CONTACT US SECTION */


.luxury-hero h1 {
    font-size: 42px;
}

/* HIGHLIGHTS */
.highlight-card {
    padding: 30px;
    border-radius: 10px;
    background: #fff;
    transition: 0.3s;
}

.highlight-card i {
    font-size: 26px;
    color: #D4AF37;
    margin-bottom: 10px;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

/* CONTACT INFO BLOCK */
.contact-info-block {
    padding: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.contact-item i {
    color: #D4AF37;
    font-size: 18px;
}

/* FORM BOX */
.contact-form-box {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* MAP */
.map-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    padding: 14px;
    border-radius: 50%;
    font-size: 20px;
    line-height: normal;
}



/** GALLERY SECTION */
.gallery-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    transition: 0.4s;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    opacity: 0;
    transition: 0.3s;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/* MODAL */
.gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.gallery-modal.active {
    display: flex;
}

.modal-img {
    max-width: 90%;
    max-height: 80vh;
}

.modal-caption {
    color: #fff;
    margin-top: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    padding: 10px;
    cursor: pointer;
}

.prev { left: 20px; }
.next { right: 20px; }