/* CSS Variables & Global Styles */
:root {
    --primary-color: #2c3e50;
    --accent-color: #e67e22;

    /* Theme Variables (Light Default) */
    --bg-body: #ffffff;
    --bg-card: #ffffff;
    --bg-light: #f8f9fa;
    --text-main: #333333;
    --text-muted: #666666;
    --border-color: #dddddd;

    --shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.1);

    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

body.dark-mode {
    --primary-color: #ecf0f1;
    --bg-body: #121212;
    --bg-card: #1e1e1e;
    --bg-light: #2c2c2c;
    --text-main: #ecf0f1;
    --text-muted: #bdc3c7;
    --border-color: #444444;

    --shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-body);
    transition: background-color 0.3s, color 0.3s;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: var(--shadow-hover);
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Base Buttons */
.btn-primary {
    background-color: var(--accent-color);
    color: #fff !important;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    -webkit-appearance: none;
    appearance: none;
}

.btn-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* Navigation */
.navbar {
    background-color: var(--bg-card);
    box-shadow: var(--shadow-soft);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-color);
    font-family: 'Great Vibes', cursive;
    letter-spacing: 1px;
    white-space: nowrap;
    line-height: 1;
    margin-right: 20px;
    display: inline-block;
    vertical-align: middle;
}

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

.nav-links a {
    font-weight: 500;
    color: var(--primary-color);
    transition: var(--transition);
}

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

/* Nav Controls */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-select {
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    color: var(--text-main);
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    background-size: 8px auto;
    padding-right: 30px;
    /* Emoji Support for Windows/PC */
    font-family: "Segoe UI Emoji", "Segoe UI Symbol", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
}

.lang-select:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 5px rgba(230, 126, 34, 0.2);
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-main);
    padding: 5px;
    transition: transform 0.3s;
    margin-right: 15px;
}

.theme-toggle:hover {
    transform: rotate(15deg);
    color: var(--accent-color);
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    /* Always white inside hero image */
    padding-top: 70px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('assets/gallery_9.jpg');
    background-size: cover;
    background-position: center;
    filter: contrast(1.3) brightness(0.8) saturate(1.3);
    z-index: -1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.img-placeholder {
    width: 100%;
    height: 300px;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: bold;
    color: var(--text-muted);
}

/* Amenities */
.amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}

.amenities-list li {
    background-color: var(--bg-card);
    color: var(--text-main);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.amenities-list li:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background-color: #eee;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: contrast(1.25) brightness(0.85) saturate(1.2);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

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

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.contact-form {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--bg-light);
    color: var(--text-main);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.contact-info {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.map-placeholder {
    background-color: var(--bg-light);
    height: 300px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
footer {
    background-color: var(--bg-card);
    /* Darker in dark mode */
    color: var(--text-main);
    padding: 40px 0;
    margin-top: 50px;
    border-top: 1px solid var(--border-color);
}

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

/* Apartments Section */
.apartment-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 40px 0;
}

.apartment-block.reverse {
    direction: rtl;
}

.apartment-block.reverse .apartment-content {
    direction: ltr;
}

.apartment-content .subtitle {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.apt-features li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.apt-features li::before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.separator {
    border: 0;
    height: 1px;
    background: var(--border-color);
    margin: 60px auto;
    width: 80%;
}

/* Reviews */
.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    background: var(--bg-card);
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.google-rating .stars,
.review-stars {
    color: #f1c40f;
    letter-spacing: 2px;
}

.review-card {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.review-header .name {
    font-weight: bold;
    color: var(--text-main);
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
}

/* CALENDAR COLORS FIXED */
.booking-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.calendar-wrapper {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header button {
    background: none;
    border: 1px solid var(--border-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-main);
}

.calendar-header button:hover {
    background-color: var(--bg-light);
    border-color: var(--primary-color);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}

.calendar-day-header {
    font-weight: bold;
    font-size: 0.9rem;
    padding: 10px 0;
    color: var(--text-muted);
}

.calendar-day {
    padding: 15px 0;
    cursor: pointer;
    border-radius: 5px;
    transition: var(--transition);
    position: relative;
    font-weight: 500;
    color: var(--text-main);
}

.calendar-day:hover:not(.disabled):not(.booked) {
    background-color: var(--bg-light);
}

.calendar-day.disabled {
    color: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.5;
}

/* BOOKED (RED) */
.calendar-day.booked {
    text-decoration: line-through;
    color: #e74c3c;
    cursor: not-allowed;
    background-color: rgba(231, 76, 60, 0.2);
}

/* SELECTED (GREEN - START/END) */
.calendar-day.selected {
    background-color: #27ae60 !important;
    color: #ffffff !important;
}

/* IN RANGE (LIGHT GREEN - MIDDLE) */
.calendar-day.in-range {
    background-color: rgba(39, 174, 96, 0.4) !important;
    /* Semi-transparent Green */
    color: var(--text-main);
}

.calendar-legend {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}

.dot.free {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
}

.dot.booked {
    background-color: #e74c3c;
}

.dot.selected {
    background-color: #27ae60;
}

/* Booking Card */
.booking-summary.card {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 90px;
    border: 1px solid var(--border-color);
}

.dates {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

.date-box {
    padding: 10px;
    flex: 1;
    text-align: center;
    color: var(--text-main);
}

.date-box:first-child {
    border-right: 1px solid var(--border-color);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--bg-card);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
}

/* Modal (Booking Form) */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

/* Success Message Box */
.success-message {
    margin-top: 20px;
    background-color: var(--bg-light);
    /* Adapts to Dark Mode */
    padding: 15px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

/* Fix Browser Autofill Yellow Background */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--bg-light) inset !important;
    -webkit-text-fill-color: var(--text-main) !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* LIGHTBOX & MODAL FIXES */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    padding-top: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex !important;
}

.lightbox-content {
    margin: auto;
    display: block;
    width: auto;
    height: auto;
    max-width: 95vw;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation-name: zoom;
    animation-duration: 0.3s;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 3001;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}



.modal-content {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

/* Success Message Box */
.success-message {
    margin-top: 20px;
    background-color: var(--bg-light);
    /* Adapts to Dark Mode */
    padding: 15px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

/* Fix Browser Autofill Yellow Background */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--bg-light) inset !important;
    -webkit-text-fill-color: var(--text-main) !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* LIGHTBOX & MODAL FIXES */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    padding-top: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex !important;
}

.lightbox-content {
    margin: auto;
    display: block;
    width: auto;
    height: auto;
    max-width: 95vw;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation-name: zoom;
    animation-duration: 0.3s;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 3001;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* Modal Response & Mobile Optimization */
@media (max-width: 768px) {
    .booking-container {
        grid-template-columns: 1fr;
    }

    .booking-summary.card {
        position: static;
        margin-top: 20px;
        order: 2;
        /* Put summary below calendar */
    }

    .calendar-wrapper {
        order: 1;
        /* Put calendar on top */
        padding: 10px;
        overflow-x: auto;
        /* Scroll if needed */
    }

    .calendar-grid {
        gap: 2px;
    }

    .calendar-day,
    .calendar-day-header {
        padding: 10px 2px;
        font-size: 0.85rem;
    }

    .lightbox-content {
        width: 100%;
        max-width: 100vw;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* Map responsiveness */
    .map-placeholder {
        height: 250px;
        /* Slightly smaller height on mobile to save vertical space */
    }

    .map-placeholder iframe {
        pointer-events: auto;
        /* Ensure touch works */
        width: 100% !important;
    }

    /* General Mobile Tweaks */
    .container {
        padding: 0 15px;
        /* Less side padding */
    }

    .section {
        padding: 40px 0;
        /* Less vertical spacing */
    }

    .btn-primary {
        width: 100%;
        /* Full width buttons are easier to tap */
        text-align: center;
    }
}

/* Modal (Booking Form) */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

/* Success Message Box */
.success-message {
    margin-top: 20px;
    background-color: var(--bg-light);
    /* Adapts to Dark Mode */
    padding: 15px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

/* Fix Browser Autofill Yellow Background */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--bg-light) inset !important;
    -webkit-text-fill-color: var(--text-main) !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* LIGHTBOX & MODAL FIXES */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    padding-top: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex !important;
}

.lightbox-content {
    margin: auto;
    display: block;
    width: auto;
    height: auto;
    max-width: 95vw;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation-name: zoom;
    animation-duration: 0.3s;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 3001;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* Modal Response & Mobile Optimization */
@media (max-width: 768px) {
    .booking-container {
        grid-template-columns: 1fr;
    }

    .booking-summary.card {
        position: static;
        margin-top: 20px;
        order: 2;
        /* Put summary below calendar */
    }

    .calendar-wrapper {
        order: 1;
        /* Put calendar on top */
        padding: 10px;
        overflow-x: auto;
        /* Scroll if needed */
    }

    .calendar-grid {
        gap: 2px;
    }

    .calendar-day,
    .calendar-day-header {
        padding: 10px 2px;
        font-size: 0.85rem;
    }

    .lightbox-content {
        width: 100%;
        max-width: 100vw;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* Map responsiveness */
    .map-placeholder {
        height: 250px;
        /* Slightly smaller height on mobile to save vertical space */
    }

    .map-placeholder iframe {
        pointer-events: auto;
        /* Ensure touch works */
        width: 100% !important;
    }

    /* General Mobile Tweaks */
    .container {
        padding: 0 15px;
        /* Less side padding */
    }

    .section {
        padding: 40px 0;
        /* Less vertical spacing */
    }

    .btn-primary {
        width: 100%;
        /* Full width buttons are easier to tap */
        text-align: center;
    }

    .hero-content h1 {
        font-size: 1.4rem;
        /* Safe size for narrow screens */
        word-wrap: break-word;
        word-break: break-word;
        /* Ensure it breaks if still too long */
        padding: 0 5px;
        width: 100%;
    }
}