/* 
    Quars Rezidans - Luxury Boutique Style (inspired by Quars Suite)
    Palette: Golden, Black, White
    Typography: Montserrat & Inter
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary: #C5A029; /* Golden */
    --primary-light: #D4B44A;
    --dark: #111111;
    --dark-grey: #333333;
    --light-grey: #F9F9F9;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-grey);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}
.lightbox-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.lightbox-img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(255,255,255,0.1);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.lightbox-overlay.active .lightbox-img {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    padding: 20px;
    cursor: pointer;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.lightbox-nav:hover {
    background: rgba(255,255,255,0.15);
}
.lightbox-nav.prev { left: 40px; }
.lightbox-nav.next { right: 40px; }

@media (max-width: 768px) {
    .lightbox-nav { font-size: 20px; width: 40px; height: 40px; }
    .lightbox-nav.prev { left: 10px; }
    .lightbox-nav.next { right: 10px; }
}

/* 12. Location Popup Styling */
.location-popup {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 320px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
    overflow: hidden;
    animation: slideInUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 5px solid var(--primary);
}
.location-popup.active { display: block; }
/* 14. Elite Testimonial Marquee Styling */
.testimonial-marquee-wrap {
    width: 100%;
    overflow: hidden;
    padding: 20px 0 60px;
}

.testimonial-marquee {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
    gap: 30px;
    padding: 0 15px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

.testimonial-marquee:hover {
    animation-play-state: paused;
}

.marquee-item {
    width: 450px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px;
    border-radius: 30px;
    position: relative;
    transition: 0.4s;
}

.marquee-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.m-quote {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 60px;
    color: var(--primary);
    opacity: 0.15;
}

.m-stars {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.marquee-item p {
    font-size: 16px;
    color: #eee;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.m-user {
    border-left: 3px solid var(--primary);
    padding-left: 20px;
}

.m-user strong {
    display: block;
    font-size: 15px;
    color: white;
}

.m-user span {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .marquee-item { width: 320px; padding: 30px; }
    .m-quote { font-size: 40px; }
}
.loc-text strong { display: block; font-size: 13px; color: var(--primary); }
.loc-text p { font-size: 12px; margin: 0; }
.loc-popup-close { position: absolute; top: 10px; right: 10px; cursor: pointer; font-size: 18px; color: #999; }
.btn-wa-sm { 
    background: var(--primary); 
    color: white !important; 
    padding: 8px 12px; 
    border-radius: 6px; 
    font-size: 10px; 
    font-weight: 700; 
    margin-left: auto;
}
@media (max-width: 768px) {
    .location-popup { width: calc(100% - 40px); bottom: 70px; left: 20px; }
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 34px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Header */
header {
    background: var(--white);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: 0.5s;
}

header.scrolled {
    padding: 10px 0;
}

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

.logo {
    font-size: 22px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--dark);
}

.nav-links a:hover {
    color: var(--primary);
}

.header-btns .btn {
    padding: 10px 20px;
    font-size: 13px;
}

/* Nav Toggle (Desktop Hidden) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.nav-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--dark);
    border-radius: 10px;
    transition: all 0.3s linear;
}

/* Toggle Animation */
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -8px); }

/* Hero Section */
.hero {
    height: 100vh;
    background-color: var(--dark);
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 54px;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

/* Booking Widget Overlay */
.booking-widget {
    background: var(--white);
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-radius: 4px;
    align-items: flex-end;
}

.input-group {
    flex: 1;
    min-width: 150px;
}

.input-group label {
    display: block;
    font-size: 11px;
    color: var(--dark-grey);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #eee;
    background: #fbfbfb;
    font-size: 14px;
}

/* Room Cards */
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.room-card {
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-thumb {
    position: relative;
    overflow: hidden;
}

.room-thumb img {
    width: 100%;
    transition: 0.5s;
}

.room-card:hover .room-thumb img {
    transform: scale(1.1);
}

.room-price {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 700;
}

.room-info {
    padding: 30px;
}

.room-info h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.room-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--dark-grey);
}

.room-meta i {
    color: var(--primary);
}

/* Services / Amenities Reorganized */
.service-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 50px 30px;
    background: var(--white);
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-item:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-10px);
    border-color: transparent;
}

.service-icon-box {
    width: 80px;
    height: 80px;
    background: #fbfbfb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: var(--transition);
}

/* 17. Elite Room Detail Design System */
.elite-mosaic-gallery { width: 100%; }
.mosaic-grid { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 250px 250px; gap: 10px; }
.m-item { overflow: hidden; border-radius: 12px; }
.m-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.7s; cursor: pointer; }
.m-item img:hover { transform: scale(1.05); }
.m-item.large { grid-row: span 2; }

.elite-amenities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 15px; }
.elite-amenity-card { display: flex; align-items: center; gap: 12px; padding: 15px 20px; background: #fff; border: 1px solid #eee; border-radius: 10px; transition: 0.3s; }
.elite-amenity-card i { color: var(--primary); font-size: 18px; }
.elite-amenity-card span { font-size: 14px; font-weight: 600; color: #444; }
.elite-amenity-card:hover { border-color: var(--primary); box-shadow: 0 10px 30px rgba(0,0,0,0.05); transform: translateY(-3px); }

.elite-booking-card { background: white; border-radius: 24px; padding: 10px; border: 1px solid #f0f0f0; position: sticky; top: 120px; box-shadow: 0 30px 100px rgba(0,0,0,0.08); }
.card-inner { padding: 30px; }
.card-header-segment h5 { font-size: 13px; letter-spacing: 3px; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.card-header-segment p { font-size: 12px; color: #999; margin-bottom: 30px; line-height: 1.5; }

.booking-row { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.b-icon { width: 42px; height: 42px; background: #fffcf8; color: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.b-text span { display: block; font-size: 10px; color: #bbb; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.b-text strong { font-size: 15px; color: #333; font-weight: 700; }

.elite-cta-btn { display: block; width: 100%; padding: 22px; background: #111; color: white; text-align: center; border-radius: 15px; font-weight: 800; font-size: 13px; letter-spacing: 1px; text-decoration: none; margin-top: 30px; transition: 0.4s; }
.elite-cta-btn:hover { background: var(--primary); transform: translateY(-5px); box-shadow: 0 15px 40px rgba(201, 165, 114, 0.4); }

.card-footer-segment { display: flex; justify-content: space-between; margin-top: 30px; padding-top: 25px; border-top: 1px solid #f9f9f9; }
.card-footer-segment span { font-size: 10px; color: #aaa; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.card-footer-segment i { color: #2ecc71; }

@media (max-width: 768px) {
    .mosaic-grid { grid-template-columns: 1fr; grid-template-rows: 250px 150px 150px; }
    .m-item.large { grid-row: span 1; }
    .elite-booking-card { position: static; margin-top: 50px; }
}

.service-item:hover .service-icon-box {
    background: var(--primary);
    color: var(--white);
}

.service-item i {
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.service-item:hover i {
    color: var(--white);
}

.service-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 20px;
}

footer h4 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 16px;
}

footer .logo span {
    color: var(--primary);
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-grey);
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
}

.faq-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: var(--transition);
}

.faq-header:hover {
    background: #eee;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
    font-size: 14px;
    color: #666;
}

/* Location List Reorganized */
.location-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.location-card {
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    background: var(--white);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #f5f5f5;
    transition: var(--transition);
    border-radius: 4px;
}

.location-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.location-icon {
    width: 60px;
    height: 60px;
    background: #fbfbfb;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    transition: var(--transition);
}

.location-card:hover .location-icon {
    background: var(--primary);
    color: var(--white);
}

.location-card h4 {
    font-size: 15px;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.location-card p {
    font-size: 12px;
    opacity: 0.8;
}

/* Testimonials */
.testi-card {
    background: var(--white);
    padding: 40px;
    border-left: 5px solid var(--primary);
    box-shadow: var(--shadow);
}

.testi-stars {
    color: #ffc107;
    margin-bottom: 15px;
}

/* Subtle Textures */
.section-texture {
    background-image: radial-gradient(var(--light-grey) 1px, transparent 1px);
    background-size: 20px 20px;
}
/* Sticky Mobile CTA Theme */
.sticky-cta {
    background: var(--white);
}
.sticky-cta .btn-call {
    background-color: var(--primary);
    color: var(--white);
}
.sticky-cta .btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}
.trust-badge {
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    border: 1px solid #f0f0f0;
}
.trust-badge i {
    color: var(--primary);
    font-size: 18px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    cursor: pointer;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}

/* Testimonials Redesign */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testi-card-premium {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    border-top: 4px solid var(--primary);
}
.testi-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    color: rgba(197, 160, 41, 0.2);
    font-size: 40px;
}
.testi-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 15px; }
.testi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: bold;
    font-size: 20px;
}
.testi-info h5 { font-size: 16px; margin-bottom: 2px; }
.testi-info span { font-size: 12px; color: #888; }

/* SEO Section Redesign */
.seo-section { background: #fdfdfd; position: relative; overflow: hidden; }
.seo-title-accent {
    position: relative;
    padding-left: 25px;
    border-left: 5px solid var(--primary);
}
.seo-title-accent h2 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}
.seo-text-rich {
    font-size: 17px;
    color: #444;
    line-height: 2;
    margin-bottom: 35px;
}
.seo-subtitle {
    font-size: 22px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.seo-subtitle i { color: var(--primary); font-size: 18px; }
.seo-card-premium {
    background: var(--dark);
    padding: 50px;
    color: var(--white);
    border-radius: 2px;
    box-shadow: 20px 20px 0px rgba(197, 160, 41, 0.1); 
    position: relative;
}


/* Layout Helper Classes */
.seo-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}
.seo-content-main {
    flex: 1.4;
    min-width: 300px;
}
.seo-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.seo-sidebar-card {
    flex: 1;
    min-width: 300px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: start;
}
.contact-form-wrapper {
    background: var(--light-grey);
    padding: 40px;
    border-radius: 4px;
}

.gallery-page-grid img {
    cursor: pointer;
    transition: var(--transition);
}
.gallery-page-grid img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Rooms List Page Styles */
.rooms-banner {
    background-color: var(--dark);
    color: white;
    text-align: center;
    padding-top: 150px;
}
.banner-subtitle {
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}
.banner-title {
    color: white;
    font-size: 38px;
}
.banner-desc {
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 20px;
}

/* PREMIUM ROOM DETAIL REDESIGN */
.room-hero {
    height: 60vh;
    min-height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.room-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
    transform: scale(1.1);
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.room-hero-content {
    position: relative;
    z-index: 1;
}

.premium-label {
    color: var(--primary);
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.room-name-lg {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: white;
    text-shadow: 0 5px 25px rgba(0,0,0,0.5);
}

.room-meta-pills {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.room-meta-pills .pill {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
}

.room-meta-pills .pill i {
    color: var(--primary);
    margin-right: 8px;
}

.room-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
}

/* Gallery Mosaic */
.gallery-mosaic {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 15px;
    margin-bottom: 50px;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    cursor: pointer;
}

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

.mosaic-item.main {
    grid-row: span 2;
}

/* Content Card */
.content-card {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.card-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.divider-gold {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin-bottom: 25px;
}

.description-text {
    font-size: 17px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 40px;
}

.card-subtitle {
    font-size: 22px;
    margin-bottom: 25px;
}

.amenities-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.amenity-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.amenity-card:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    color: var(--primary);
}

.amenity-card i {
    color: #25D366;
    font-size: 18px;
}

/* Sidebar Booking */
.booking-card-premium {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.booking-card-premium .card-header {
    background: var(--dark);
    padding: 30px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-card-premium h4 {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--primary);
}

.price-tag {
    font-size: 22px;
    font-weight: 800;
}

.price-tag small {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.7;
}

.booking-card-premium .card-body {
    padding: 35px;
}

.booking-card-premium p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-whatsapp-lg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.btn-whatsapp-lg:hover {
    background: #1eb956;
    transform: translateY(-2px);
}

.btn-call-lg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: var(--dark);
    padding: 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid #eee;
    transition: var(--transition);
}

.btn-call-lg:hover {
    background: #f5f5f5;
    border-color: #ddd;
}

.guarantee-box {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

.location-brief-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.location-brief-card h4 {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.location-brief-card ul li {
    font-size: 13px;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    color: #666;
}

.location-brief-card i {
    color: var(--primary);
}

@media (max-width: 991px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.large { grid-column: span 1; grid-row: span 1; }
    .gallery-item.wide { grid-column: span 1; }
    .seo-title-accent h2 { font-size: 32px; }
    .seo-card-premium { padding: 30px; box-shadow: none; margin-top: 30px; }
    
    .room-detail-layout { grid-template-columns: 1fr; }
    .booking-card-premium { position: static; margin-top: 30px; }
    .room-name-lg { font-size: 42px; }
}

@media (max-width: 768px) {
    .seo-flex { gap: 40px; }
    .seo-details-grid { grid-template-columns: 1fr; gap: 20px; }
    .about-grid { gap: 40px; margin-top: 30px; }
    
    .hero h1 { font-size: 32px; }
    .logo img { height: 35px !important; }
    .header-btns { display: none; } /* Hide call button in header on mobile to avoid clutter */
    
    .nav-toggle { display: flex; }
    
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 70%;
        background: var(--white);
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1050;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .booking-widget { flex-direction: column; align-items: stretch; margin-top: 30px; }
    .hero { height: auto; padding: 120px 0 60px; }
    .section-padding { padding: 60px 0; }
    .rooms-banner { padding-top: 120px; }
    .banner-title { font-size: 28px; }
    .contact-grid { gap: 40px; }
    .contact-form-wrapper { padding: 30px 20px; }
    header { padding: 10px 0; }

    .room-hero { height: 50vh; }
    .room-name-lg { font-size: 28px; }
    .gallery-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: 250px 150px 150px;
    }
    .mosaic-item.main { grid-row: auto; }
    .content-card { padding: 30px 20px; }
    .amenities-modern { grid-template-columns: 1fr 1fr; }
}

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

/* Location Popup Premium Styling */
.location-popup {
    position: fixed;
    bottom: 90px;
    left: 20px;
    width: 320px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 9999;
    display: none;
    animation: popupSlideIn 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.location-popup.active { display: block; }

@keyframes popupSlideIn {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.loc-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #bbb;
    cursor: pointer;
    transition: 0.3s;
}
.loc-popup-close:hover { color: #333; transform: rotate(90deg); }

.loc-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.loc-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.loc-header-info i {
    width: 38px;
    height: 38px;
    background: #fff5f0;
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.loc-text strong {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
}
.loc-text p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

.btn-wa-sm {
    background: var(--primary);
    color: white !important;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    display: block;
    box-shadow: 0 4px 12px rgba(234, 182, 118, 0.2);
}
.btn-wa-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(234, 182, 118, 0.3);
}

@media (max-width: 768px) {
    .location-popup {
        width: calc(100% - 40px);
        left: 20px;
        bottom: 85px;
    }
}
@media (max-width: 768px) { .cta-glass-box { padding: 40px 25px !important; border-radius: 20px !important; } .cta-glass-box h2 { font-size: 32px !important; } .btn-cta { width: 100%; justify-content: center; } } .cta-glass-box { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.1); padding: 80px; border-radius: 40px; box-shadow: 0 30px 100px rgba(0,0,0,0.3); } .cta-buttons { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 30px; } .btn-cta { padding: 20px 45px; border-radius: 50px; font-weight: 800; font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 12px; transition: 0.4s; letter-spacing: 1px; } .btn-cta.primary { background: linear-gradient(135deg, #c9a572, #b38e5d); color: white; box-shadow: 0 10px 30px rgba(201, 165, 114, 0.3); } .btn-cta.whatsapp { background: #25D366; color: white; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3); } .btn-cta:hover { transform: translateY(-5px) scale(1.02); filter: brightness(1.1); }
