:root {
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #aa8c2c;
    --bg-dark: #0a0a0a;
    --bg-panel: #141414;
    --bg-glass: rgba(20, 20, 20, 0.7);
    --text-light: #f5f5f5;
    --text-muted: #aaaaaa;
    
    --font-heading: 'Cinzel', serif;
    --font-subheading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 400;
}

.title {
    font-size: 5rem;
    letter-spacing: 12px;
    margin-bottom: 0.5rem;
    color: var(--gold);
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.sub-title {
    font-family: var(--font-subheading);
    font-size: 2.5rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.subtitle {
    font-family: var(--font-subheading);
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-title {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--gold);
}

.section-title.center {
    text-align: center;
    display: block;
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

.center { text-align: center; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.text-center { text-align: center; }

/* General Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

.dark-bg {
    background-color: #050505;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-gold {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--gold);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.btn-gold:hover {
    color: var(--bg-dark);
}

.btn-gold:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-link {
    background: none;
    border: none;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--gold-light);
    gap: 12px;
}

.full-width {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 4px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease-in-out;
    transform: scale(1);
}

.slide.active {
    opacity: 1;
    transform: scale(1.05); /* Slow zoom effect while visible */
}

.hero-overlay {
    display: none; /* Overlay now lives inside each slide */
}

.hero-content-fixed {
    z-index: 6;
    padding: 0 2rem;
    position: relative;
    margin-top: 14rem; /* Space for slide content above */
}

.slide-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(10,10,10,0.85));
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1000px;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
}

.slide-content h1, 
.slide-content h2, 
.slide-content h3 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-content h3 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.slide.active .slide-content h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.slide.active .slide-content h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.slide-address {
    margin-top: 1.5rem;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-address {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

.hero-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 3rem;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.arrow-btn {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
    backdrop-filter: blur(5px);
}

.arrow-btn:hover {
    background: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
    transform: scale(1.1);
}

.hero-content-fixed .address {
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-down a {
    color: var(--gold);
    font-size: 1.5rem;
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead {
    font-size: 1.25rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    font-family: var(--font-subheading);
    font-style: italic;
}

.lux-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    position: relative;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    z-index: -1;
}

/* Rooms Grid */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.room-card {
    background-color: var(--bg-panel);
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.room-img-container {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.room-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--gold);
    color: var(--bg-dark);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.room-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.room-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Booking Section */
.relative-bg {
    position: relative;
}

.booking-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.booking-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(10, 10, 10, 0.85); /* Darker for better form visibility */
    z-index: 2;
    backdrop-filter: blur(5px);
}

.relative.z-10 {
    position: relative;
    z-index: 10;
}

.glass-panel {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem;
    border-radius: 4px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.booking-form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.form-group label i {
    margin-right: 5px;
}

.form-group input {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 15px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    color-scheme: dark;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.8);
}

.submit-group {
    flex: 0 0 auto;
}

/* Dynamic Booking Results & Loader */
.hidden {
    display: none !important;
}

.loader-container {
    text-align: center;
    padding: 4rem 0;
}

.spinner-gold {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    border-top-color: var(--gold);
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto 1.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.results-header, .checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.result-card {
    display: flex;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.result-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(5px);
}

.result-img {
    width: 200px;
    background-size: cover;
    background-position: center;
}

.result-details {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-info h4 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.result-price {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: white;
}

.result-price span {
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--text-muted);
}

/* Grid Layout for Forms */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.room-summary-box {
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.room-summary-box h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.success-icon {
    font-size: 4rem;
    color: #4BB543;
    margin-bottom: 1rem;
}

/* Attractions Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: rgba(212, 175, 55, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: -35px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
}

.timeline-content {
    background: var(--bg-panel);
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(10px);
}

.dist-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 4px 12px;
    font-size: 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-content h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: #000;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    color: var(--gold);
    letter-spacing: 4px;
}

.footer-brand p {
    font-family: var(--font-subheading);
    color: var(--text-muted);
    font-style: italic;
}

.socials a {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-right: 15px;
    transition: var(--transition);
}

.socials a:hover {
    color: var(--gold);
}

.footer h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer p, .footer ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer ul {
    list-style: none;
}

.footer ul li a {
    text-decoration: none;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-cert {
    margin-top: 0.75rem;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.footer-cert p {
    font-size: 0.75rem !important;
    color: var(--text-muted) !important;
    margin: 2px 0 !important;
    letter-spacing: 0.3px;
}

.footer-cert strong {
    color: var(--gold);
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.review-card {
    position: relative;
    padding: 2.5rem 2rem 2rem;
    border-radius: 4px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.glass-review {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 4rem;
    font-family: var(--font-subheading);
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.review-stars {
    display: flex;
    gap: 4px;
}

.review-stars i {
    color: var(--gold);
    font-size: 1rem;
}

.review-text {
    font-family: var(--font-subheading);
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.author-avatar i {
    font-size: 2.5rem;
    color: rgba(212, 175, 55, 0.5);
}

.author-info h4 {
    color: var(--text-light);
    font-size: 1rem;
    font-family: var(--font-heading);
    margin-bottom: 0.2rem;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Animation utilities */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Responsive */
@media (max-width: 900px) {
    .title { font-size: 3rem; letter-spacing: 6px; }
    .sub-title { font-size: 1.8rem; }
    .about-grid, .rooms-grid { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        gap: 1.5rem;
    }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    
    .result-card { flex-direction: column; }
    .result-img { width: 100%; height: 200px; }
    .result-details { flex-direction: column; text-align: center; gap: 1rem; }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    padding: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 1000;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-float span {
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-body);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #128c7e;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
    color: white;
}

/* Golden Variation for secondary pages */
.whatsapp-float.gold {
    background-color: var(--gold);
    color: var(--bg-dark);
    border-color: rgba(0, 0, 0, 0.1);
}

.whatsapp-float.gold:hover {
    background-color: var(--gold-light);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
    color: var(--bg-dark);
}

@media (max-width: 900px) {
    .whatsapp-float span {
        display: none;
    }
    .whatsapp-float {
        padding: 15px;
        bottom: 20px;
        right: 20px;
    }
}

/* Location Desc Section */
.location-desc-section .glass-panel {
    border-color: rgba(212, 175, 55, 0.1);
}

.desc-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.text-gold { color: var(--gold); }

/* Where We Are Section */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.address-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-left: 2px solid var(--gold);
    border-radius: 4px;
}

.address-box p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.map-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    min-height: 450px;
}

.map-placeholder {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1524661135-423995f22d0b?q=80&w=1200&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.map-overlay-content {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(8px);
    padding: 3rem;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.map-overlay-content h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.map-overlay-content p {
    color: var(--text-muted);
}

.ml-2 { margin-left: 0.5rem; }

/* Responsive adjustments for new sections */
@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* SellRooms App Badge */
.sellrooms-badge-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    cursor: default;
    transition: var(--transition);
}

.sellrooms-badge-float:hover {
    transform: translateY(-5px);
}

.sellrooms-badge-float .badge-content {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 12px 20px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.badge-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.badge-header i {
    font-size: 1.1rem;
}

.badge-header span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

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

.badge-stars {
    color: var(--gold);
    font-size: 0.75rem;
    margin-bottom: 2px;
}

.badge-body p {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 2px;
    font-weight: 600;
}

.badge-cert {
    margin-top: 6px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 5px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-cert-name {
    font-size: 0.6rem !important;
    color: var(--gold) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-weight: 700 !important;
    margin-bottom: 2px;
}

.badge-cert small {
    font-size: 0.58rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    display: block;
}

@media (max-width: 900px) {
    .sellrooms-badge-float {
        bottom: 20px;
        left: 20px;
    }
    .sellrooms-badge-float .badge-content {
        padding: 8px 15px;
    }
}
