/* Variables */
:root {
    --primary: #D4AF37;
    /* Gold */
    --primary-dark: #AA8C2C;
    /* Darker Gold */
    --secondary: #111111;
    /* Dark Gray */
    --accent: #D4AF37;
    /* Gold */
    --text-dark: #e0e0e0;
    /* Light Gray for dark bg */
    --text-light: #a0a0a0;
    /* Gray */
    --white: #ffffff;
    --off-white: #0a0a0a;
    /* Deep Black */
    --card-bg: #1a1a1a;
    --input-bg: #2a2a2a;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--off-white);
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

.section {
    padding: 80px 0;
}

.center {
    text-align: center;
}

/* Buttons */
/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent), #eecf6d);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--secondary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

.full-width {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.5px;
}

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

/* Animated Underline for Nav Links */
.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 10px 25px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    /* Basic fallback for older browsers that don't support webp */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('assets/hero.jpg') center/cover no-repeat;
        
    /* Modern browsers with webp support */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        -webkit-image-set(url('assets/hero.webp') 1x) center/cover no-repeat;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        image-set(url('assets/hero.webp') type('image/webp'), url('assets/hero.jpg') type('image/jpeg')) center/cover no-repeat;
        
    background-attachment: fixed;
    /* Parallax effect */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

/* Fix for iOS Safari background-attachment: fixed bug */
@supports (-webkit-touch-callout: none) {
    .hero {
        background-attachment: scroll;
    }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--off-white), transparent);
    pointer-events: none;
}

.hero-content {
    animation: fadeInUp 1s ease-out forwards;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(to bottom right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    /* color: transparent; kept white for better contrast but added gradient hint */
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Headings */
.section-header h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
    letter-spacing: 0.5px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Playfair Display', serif;
}

.stat-item .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Rooms Section */
.section-header {
    margin-bottom: 70px;
    position: relative;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 10px;
}

.room-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

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

.room-card:hover::before {
    opacity: 1;
}

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

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

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

.room-img .price {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
    z-index: 3;
    border: 1px solid var(--primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.room-info {
    padding: 30px;
    position: relative;
    z-index: 3;
}

.room-info h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--white);
}

.room-info p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-features ion-icon {
    color: var(--primary);
}

/* Amenities Section */
.amenities {
    background-color: var(--off-white);
    position: relative;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.amenity-item {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle border */
    border-radius: 15px;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
    backdrop-filter: blur(5px);
    /* Glassmorphism hint */
}

.amenity-item:hover {
    border-color: var(--primary);
    background: rgba(26, 26, 26, 0.8);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(212, 175, 55, 0.15);
}

.icon-box {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 25px;
    transition: transform 0.4s ease;
    display: inline-block;
}

.amenity-item:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    color: #ffd700;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.amenity-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.amenity-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Video Tour Section */
.video-tour {
    background-color: var(--off-white);
    padding-bottom: 100px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    background: #000;
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: scale(1.02);
}

.video-container .video-iframe,
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
    /* Disables interaction with the YouTube iframe itself */
}


/* Contact Section */
.contact {
    background-color: var(--secondary);
    padding: 100px 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05), transparent 60%);
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info h2 {
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 2.2rem;
}

.contact-info p {
    margin-bottom: 35px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.info-row:hover {
    transform: translateX(10px);
}

.info-row ion-icon {
    color: var(--accent);
    font-size: 1.6rem;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

.contact-form-container h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: var(--white);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #444;
    background: rgba(42, 42, 42, 0.5);
    color: var(--text-dark);
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(42, 42, 42, 0.8);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Gallery Section */
.gallery-container {
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 25px;
    padding-bottom: 30px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    width: 100%;
}

.gallery-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Opera */
}

.gallery-nav {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 50%;
    /* Circular buttons */
    backdrop-filter: blur(5px);
}

.gallery-nav:hover {
    background: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.prev-btn {
    margin-right: 15px;
}

.next-btn {
    margin-left: 15px;
}

.gallery-item {
    flex: 0 0 320px;
    scroll-snap-align: center;
    border-radius: 15px;
    overflow: hidden;
    height: 220px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-item:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    /* Dynamic viewport height for functional mobile support */
    z-index: 2000;
    display: none;
    /* Revert to hidden by default */
    /* display: flex; Removed to fix auto-open bug */
    flex-direction: row;
    /* Explicitly set direction */
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 10px;
    /* Prevent edge touching */
    backdrop-filter: blur(10px);
}

.lightbox-content {
    margin: auto;
    /* The ultimate centering fallback */
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 90vh;
    max-height: 90dvh;
    object-fit: contain;
    object-fit: contain;
    animation: zoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 45px;
    font-weight: 300;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 2001;
    background: rgba(0, 0, 0, 0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover,
.close:focus {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* Booking Modal */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 3000;
    flex-direction: column;
}

.booking-header {
    height: 60px;
    background: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
}

.booking-header span {
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary);
}

.btn-back {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

#booking-frame {
    width: 100%;
    height: calc(100% - 60px);
    border: none;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 20px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 25px;
    transition: 0.3s ease;
    border-radius: 50%;
    user-select: none;
    -webkit-user-select: none;
    z-index: 2001;
    background: rgba(0, 0, 0, 0.5);
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover,
.next:hover {
    background-color: var(--primary);
    color: var(--off-white);
    transform: scale(1.1);
}

/* Policies */
.policies {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.policies h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.policies p {
    margin-bottom: 8px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.policies p::before {
    content: '•';
    color: var(--primary);
}

/* Footer */
footer {
    background-color: #050505;
    color: var(--white);
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.social-links {
    display: flex;
    gap: 25px;
}

.social-links a {
    color: #fff;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:visited,
.social-links a:hover,
.social-links a:active,
.social-links a:focus {
    color: #fff !important;
    text-decoration: none;
    outline: none;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    color: var(--primary) !important;
    /* Force override for hover */
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* Map specific styles */
.map-container {
    position: relative;
    width: 100%;
    height: 300px;
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.3);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
    background: transparent;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Modal Removed */

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        padding: 20px 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}

/* Material Symbols */
.material-symbols-outlined {
    font-size: 5.4rem !important;
    /* Increased to 5.4rem as requested */
    color: inherit;
    /* Allow color inheritance from .icon-box */
    display: inline-block;
    vertical-align: middle;
}

/* Map Container */
.map-container {
    position: relative;
    width: 100%;
    height: 250px;
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
    background: transparent;
}