:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --accent-color: #E74C3C;
    --text-color: #000000;
    --light-gray: #ECF0F1;
    --system-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal !important;
}

body {
    font-family: var(--system-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
    letter-spacing: -0.2px;
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, #e3e9f2 0%, #e8ecf1 100%);
    min-height: 100vh;
}

.hero-image {
    width: 120%;
    margin-right: -100px;
    margin-left: -50px;
    margin-top: -50px;
}

.hero-image img {
    width: 100%;
    height: 300px;
    object-fit: contain;
}

.container {
    padding: 0;
    max-width: 100%;
    max-width: 480px;
    width: 100%;
    background-color: rgb(239, 233, 233);
    margin: 0 auto;
    overflow-x: hidden;
}

header {
    padding: 16px 16px 8px;
    text-align: center;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--system-font);
    font-weight: 600;
}

h1 {
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 2px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 15px;
    color: #666;
    margin-top: 12px;
    margin-bottom: 12px;
    font-weight: 400;
    letter-spacing: -0.3px;
}

.sub-tagline {
    font-size: 13px;
    color: #666;
    text-align: center;
    margin: 8px auto 16px;
    max-width: 320px;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: -0.2px;
}

/* Add bottom margin to quick access grid */
.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 12px;
    margin-top: 8px;
    margin-bottom: 24px;  /* increased from 12px to 24px */
    align-items: start;
}
.grid-item {
    aspect-ratio: 1;
    border-radius: 20px;
    background: transparent;
    padding: 10px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.grid-item:active {
    transform: scale(0.95);
}

.grid-item .icon-wrapper {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 6px;
    background: transparent;
    transition: transform 0.2s ease;
}

.grid-item .icon-wrapper i {
    font-size: 26px;
    color: #6B35E8;
}

/* Simple press effect */
.grid-item:active .icon-wrapper {
    transform: scale(0.95);
}

.grid-item h3 {
    font-size: 13px;
    line-height: 1.1;
    margin: 0;
    text-align: center;
    color: #6c6c6c;
    font-weight: 700;
    letter-spacing: -0.3px;
    width: 100%;
}

.grid-item h3.two-line {
    font-size: 13px;
    line-height: 1.3;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0;
    height: auto;
    transition: transform 0.2s ease;
}

.feature-card:active {
    transform: scale(0.98);
}

.feature-card img {
    width: 130px;
    height: 85px;
    border-radius: 16px;
    object-fit: cover;
}

.card-content {
    position: static;
    padding: 4px 0;
    background: none;
    color: inherit;
}

.card-content h2 {
    color: #000;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1.1;
}

.card-content p {
    color: #666;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.3px;
    margin: 2px 0 0;
    line-height: 1.3;
}

/* Modal Base Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 20px auto; /* Changed from margin-left to auto for center alignment */
    padding: 20px;
    width: 90%; /* Changed from fixed width to percentage */
    max-width: 600px; /* Added max-width for larger screens */
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

/* Modal Header Styles */
.modal-content h2 {
    margin: -20px -20px 20px -20px;
    padding: 20px;
    border-bottom: 1px solid #eee;
    border-radius: 12px 12px 0 0;
    background: white;
}

/* Close Button Styles */
.close {
    position: fixed;
    right: calc(5% + 20px); /* Adjust based on modal margin */
    top: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    z-index: 1002; /* Higher than modal content */
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close:hover {
    background: #eee;
    transform: scale(1.1);
}

/* Adjust close button position for large modals */
.modal-large .close {
    right: calc(5% + 20px);
}

@media screen and (min-width: 768px) {
    .close {
        right: calc((100% - 600px)/2 + 20px); /* For regular modals */
    }
    
    .modal-large .close {
        right: calc((100% - 800px)/2 + 20px); /* For large modals */
    }
}

/* Modal Animation */
@keyframes modalSlideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Large Modal Variant */
.modal-large .modal-content {
    max-width: 800px;
}

/* Modal Content Scrolling */
.modal-sections {
    overflow-y: auto;
    max-height: calc(100vh - 150px);
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .modal-content {
        margin: 10px auto;
        width: 95%;
        padding: 15px;
    }

    .modal-content h2 {
        font-size: 20px;
        padding: 15px;
        margin: -15px -15px 15px -15px;
    }

    .close {
        right: 15px;
        top: 15px;
    }

    /* Improve touch targets on mobile */
    .category-header,
    .booking-platform,
    .attraction-card,
    .amenity-category {
        padding: 15px;
        min-height: 44px; /* Minimum touch target size */
    }

    /* Improve modal scrolling on mobile */
    .modal-sections {
        max-height: calc(100vh - 120px);
        -webkit-overflow-scrolling: touch;
    }
}

/* Accessibility Improvements */
.modal-content:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
}

/* Better touch feedback */
.modal button,
.modal-content a,
.close {
    -webkit-tap-highlight-color: transparent;
}

.modal button:active,
.modal-content a:active,
.close:active {
    opacity: 0.7;
}

/* Prevent body scrolling when modal is open */
body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

#feedback-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

#feedback-form input,
#feedback-form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#feedback-form textarea {
    min-height: 100px;
}

footer {
    padding: 12px;
    margin-top: 40px;
}

.quote {
    font-style: normal;
    color: #666;
    margin: 32px 0;
    font-size: 13px;
    line-height: 1.4;
    padding: 0 16px;
    letter-spacing: -0.2px;
}

.footer-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 0 12px;
    margin-top: 32px;
}

.footer-buttons button {
    flex: 1;
    padding: 12px 16px;
    border-color: black;
    border-radius: 8px;
    background: #ffffff;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-align: center;
    transition: background-color 0.2s ease;
    font-family: var(--system-font);
    letter-spacing: -0.2px;
}

.footer-buttons button:active {
    background: #f0f0f0;
}

@media (max-width: 768px) {
    .quick-access-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .quick-access-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .grid-item h3 {
        font-size: 0.8rem;
    }
    
    .footer-buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    button {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}


/* Modal enhancements */
.modal-large {
    max-width: 480px !important; /* Force mobile width even for large modals */
}

.experience-cards {
    display: grid;
    grid-template-columns: 1fr !important; /* Force single column */
    gap: 20px;
    margin-top: 15px;
}

.exp-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.exp-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.restaurant-grid, .spots-grid {
    display: grid;
    grid-template-columns: 1fr !important; /* Force single column */
    gap: 20px;
    margin-top: 20px;
}

.rest-image, .spot-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
}

.exp-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.exp-card .timing {
    color: #666;
    font-size: 0.9em;
    margin-top: 10px;
}

.exp-card .price {
    color: var(--accent-color);
    font-weight: 500;
    margin-top: 5px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.info-item {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-item ul {
    list-style: none;
    padding-left: 0;
}

.info-item ul li {
    margin-bottom: 8px;
    font-size: 0.9em;
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr !important; /* Force single column */
    gap: 24px;
    padding: 20px 0;
}

.amenity-category {
    background: white;
    border-radius: 16px;
    padding: 24px;
}

.amenity-category h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.amenity-category ul {
    list-style: none;
    padding-left: 0;
}

.amenity-category ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.amenity-category ul li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Checkout Modal Styles */
.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 15px 0;
}

.timeline-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.timeline-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 15px 0;
}

.checklist-item {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.checklist-item ul {
    list-style: none;
    padding-left: 0;
}

.checklist-item ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.checklist-item ul li:before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.transport-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 15px 0;
}

.transport-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.notes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 15px 0;
}

.note {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.checkout-section {
    margin-bottom: 30px;
}

.checkout-section h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

/* Adjust top margin of featured sections */
.featured-sections {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 24px;  /* increased from 12px to 24px */
}
.feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0;
    height: auto;
    transition: transform 0.2s ease;
}

.feature-card img {
    width: 130px;
    height: 85px;
    border-radius: 16px;
    object-fit: cover;
}

/* Ensure modal content is not italic */
.modal-content p,
.modal-section p,
.modal-sections p {
    font-style: normal;
}

/* Ensure all paragraphs and text elements are not italic */
p, span, h1, h2, h3, h4, h5, h6 {
    font-style: normal;
}

/* Laptop and larger screens */
@media screen and (min-width: 1024px) {
    .container {
        max-width: 480px;
        margin: 0 auto;
        padding: 15px;
    }

    .hero-image {
        width: 120%;
        margin-right: -100px;
        margin-left: -50px;
        margin-top: -50px;
    }

    .hero-image img {
        height: 300px;
    }

    header {
        padding: 16px 16px 8px;
    }

    h1 {
        font-size: 28px;
    }

    .tagline {
        font-size: 15px;
        margin-bottom: 12px;
    }

    /* Quick access grid for mobile */
    .quick-access-grid {
        gap: 10px;
        padding: 12px;
    }

    .grid-item {
        padding: 10px 6px;
    }

    .grid-item .icon-wrapper {
        width: 55px;
        height: 55px;
    }

    .grid-item .icon-wrapper i {
        font-size: 26px;
    }

    .grid-item h3 {
        font-size: 13px;
    }

    /* Featured sections for mobile */
    .featured-sections {
        padding: 12px 16px;
        gap: 28px;
    }

    .feature-card {
        gap: 16px;
    }

    .feature-card img {
        width: 130px;
        height: 85px;
        border-radius: 16px;
    }

    .card-content h2 {
        font-size: 22px;
    }

    .card-content p {
        font-size: 14px;
    }

    /* Modal adjustments for mobile */
    .modal-content {
        margin: 15px auto;
        padding: 20px;
        max-width: 90%;
    }

    .modal-large {
        max-width: 90% !important;
    }

    .modal h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .modal h3 {
        font-size: 18px;
    }

    .modal p {
        font-size: 14px;
    }
}

/* Extra large screens */
@media screen and (min-width: 1440px) {
    .container {
        max-width: 480px;
    }

    .hero-image img {
        height: 300px;
    }
}

/* Video container styling */
.video-container {
    margin: 15px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Map styling */
.location-map {
    margin: 20px 0 30px;
    position: relative;
}

.full-width-map {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 10px;
}

.map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.legend-item {
    font-size: 14px;
    color: #666;
}

/* Spaced heading for Nearby Services */
.spaced-heading {
    letter-spacing: 0.5px;
}

/* Amenity images */
.amenity-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin: 15px 0;
}

/* Enhanced modal sections spacing */
.modal-sections {
    position: relative;
    overflow: visible;
    padding-top: 10px;
}

.modal-section {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.modal-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

/* Guide images */
.guide-image {
    width: 100%;
    border-radius: 8px;
    margin: 12px 0;
}

.instructions {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 12px;
}

/* New sections styling */
.photo-spots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.transport-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.transport-card {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 12px;
}

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

.benefit-card {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 12px;
    margin-top: 10px;
}

.benefit-card h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

/* Enhanced list styling */
.modal-section ul {
    list-style: none;
    padding-left: 0;
}

.modal-section ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.modal-section ul li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Enhanced service cards */
.service-grid {
    display: grid;
    grid-template-columns: 1fr !important; /* Force single column */
    gap: 20px;
    margin-top: 15px;
}

.service-card {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 12px;
}

.service-card h4 {
    margin-bottom: 12px;
    color: #000;
    font-weight: 600;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    margin-bottom: 12px;
    padding-left: 0 !important;
    font-size: 14px;
}

.highlight {
    display: block;
    color: #666;
    font-size: 12px;
    margin-top: 2px;
    margin-left: 20px;
}

/* Kitchen and Climate guides */
.kitchen-guide, .climate-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 15px;
}

.guide-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
}

.guide-item p {
    font-weight: 600;
    margin-bottom: 10px;
}

.temp-settings, .quick-tips {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
}

/* Video container enhancement */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Style for adventure grid */
.adventure-grid {
    display: grid;
    grid-template-columns: 1fr !important; /* Force single column */
    gap: 20px;
    margin-top: 20px;
}

.adventure-card {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.adventure-card h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.adventure-card ul {
    list-style: none;
    padding: 0;
}

.adventure-card li {
    margin-bottom: 12px;
    font-size: 0.9em;
    line-height: 1.4;
}

.contact {
    color: #2c3e50;
    font-weight: 500;
    margin-top: 8px;
}

.highlight {
    display: block;
    color: #e67e22;
    font-size: 0.85em;
    margin-top: 2px;
}

/* Improve scrolling performance */
.modal-content {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Ensure proper spacing on mobile */
@media (max-width: 768px) {
    .modal-content {
        margin: 10px auto;
        padding: 15px;
    }
    
    .modal {
        padding: 0;
    }
}

/* Ensure consistent mobile-like spacing */
.featured-sections {
    padding: 12px 16px;
    gap: 28px;
    margin-top: 24px;
}

.quick-access-grid {
    gap: 10px;
    padding: 12px;
    margin-top: 8px;
    margin-bottom: 24px;
}

/* Ensure modal content stays narrow */
.modal-content {
    max-width: 90%;
    margin: 15px auto;
}

.modal-large {
    max-width: 90% !important;
}

/* Center the narrow container on all screens */
body {
    display: flex;
    justify-content: center;
    background-color: #f5f5f5; /* Optional: adds contrast to show the mobile-width container */
}

.container {
    max-width: 480px;
    width: 100%;
    background-color: white;
    margin: 0 auto;
    overflow-x: hidden;
}

/* Optional: Add a subtle border to emphasize mobile container */
@media screen and (min-width: 481px) {
    .container {
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
        margin: 20px auto;
        border-radius: 20px;
    }
}

/* Force mobile layout on all screens */
@media screen and (min-width: 481px) {
    body {
        background-color: #f5f5f5;
        min-height: 100vh;
        display: flex;
        justify-content: center;
        padding: 20px 0;
    }

    .container {
        width: 390px !important; /* iPhone 12/13/14 width */
        max-width: 390px !important;
        background: white;
        border-radius: 20px;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
        overflow: hidden;
        margin: 0;
    }

    /* Keep modal width consistent with mobile */
    .modal {
        justify-content: center;
        align-items: center;
    }

    .modal-content,
    .modal-large {
        width: 390px !important;
        max-width: 390px !important;
        margin: auto;
        border-radius: 20px;
    }

    /* Force all grids to single column */
    .experience-cards,
    .restaurant-grid,
    .spots-grid,
    .amenities-grid,
    .service-grid,
    .adventure-grid,
    .photo-spots-grid,
    .transport-info,
    .benefits-grid,
    .kitchen-guide,
    .climate-guide {
        grid-template-columns: 1fr !important;
    }

    /* Maintain mobile image sizes */
    .exp-image,
    .rest-image,
    .spot-image,
    .amenity-image {
        height: 200px !important;
    }

    /* Override any desktop-specific padding/margins */
    .modal-section {
        padding: 16px !important;
        margin-bottom: 16px !important;
    }

    .modal-sections {
        padding: 0 !important;
        display: block !important;
    }

    /* Ensure mobile-like typography */
    .modal h2 { font-size: 24px !important; }
    .modal h3 { font-size: 18px !important; }
    .modal h4 { font-size: 16px !important; }
    .modal p { font-size: 14px !important; }
}

/* Remove all other @media queries that might override these styles */

/* Add this to your existing CSS */
.mobile-view-notice {
    display: none; /* Hidden by default */
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 2000;
    animation: fadeInOut 6s ease-in-out forwards;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.mobile-view-notice i {
    margin-right: 8px;
    color: #FFD700;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-20px); }
    10% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-20px); }
}

/* Show notice only on larger screens */
@media screen and (min-width: 481px) {
    .mobile-view-notice {
        display: block;
    }
}

.booking-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
    width: 100%;
}

.booking-link {
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.booking-platform {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 12px;
    transition: transform 0.2s ease;
    border: 1px solid #eee;
    gap: 15px;
    width: 100%;
}

.booking-platform:active {
    transform: scale(0.98);
    background: #f8f8f8;
}

.platform-icon-wrapper {
    width: 40px;
    display: flex;
    justify-content: center;
}

.booking-platform i.fab.fa-airbnb {
    font-size: 2rem;
    color: #ff5a5f;
}

.platform-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.booking-platform-content {
    flex: 1;
}

.booking-platform h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #000;
}

.booking-platform p {
    margin: 2px 0 0;
    font-size: 0.9rem;
    color: #666;
}

/* Collapsible Menu Styles */
.rule-category,
.amenity-category {
    border-bottom: 1px solid #eee;
    background: white;
}

.category-header {
    padding: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.category-header:active {
    background-color: #f8f8f8;
}

.category-header h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.category-header i {
    transition: transform 0.3s ease;
    color: #666;
    font-size: 14px;
}

.category-content {
    display: none;
    padding: 0 16px 16px;
}

.category-content p {
    margin: 8px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Ensure the modal content is scrollable */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Prevent text selection on mobile */
.category-header * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Last item shouldn't have a border */
.rule-category:last-child,
.amenity-category:last-child {
    border-bottom: none;
}

/* Touch target size for mobile */
@media (max-width: 480px) {
    .category-header {
        padding: 16px;
        min-height: 48px;
    }
}

/* Review Modal Styling */
.reviews-section {
    padding: 20px 0;
}

.review-platform {
    text-align: center;
    padding: 30px 20px;
}

.review-link {
    text-decoration: none;
    color: #666;
    display: block;
}

.review-link:hover {
    color: #333;
}

.review-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.star-rating {
    color: #FFD700;
    font-size: 24px;
    letter-spacing: 2px;
}

.review-content h3 {
    margin: 0;
    color: #000;
    font-size: 24px;
    font-weight: 600;
}

.review-content p {
    color: #666;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    max-width: 400px;
}

.review-button {
    background: #000;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease;
}

.review-button:active {
    transform: scale(0.98);
}

.review-button i {
    font-size: 14px;
}

/* Gallery Modal Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 16px 0;
    width: 100%;
}

.gallery-item {
    position: relative;
    aspect-ratio: 3/2;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f8f8;
    cursor: pointer;
}

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

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

.gallery-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    font-size: 14px;
    text-align: center;
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    padding: 20px;
}

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

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

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .gallery-item {
        aspect-ratio: 16/9;
    }
}

/* Map Button Styles */
.map-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: transform 0.2s ease;
    margin-top: 16px;
    margin-bottom: 16px;

}

.map-button:active {
    transform: scale(0.98);
}

.map-button i {
    font-size: 16px;
}

/* Make sure modal header is always white */
.modal-content h2 {
    background: white;
}

.modal-content h2 {
    color: #333;
}

/* Reviews Modal Styles */
.reviews-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
}

.review-image-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: #f8f8f8;
}

.review-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* Optional: Add hover effect for desktop */
@media (min-width: 769px) {
    .review-image-container:hover img {
        transform: scale(1.02);
    }
}

/* Ensure proper spacing in modal */
#reviews-modal .modal-content {
    padding-bottom: 30px;
}

/* Optimize images for better performance */
.review-image-container img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

/* Review Platform Links */
.review-platform-links {
    display: flex;
    gap: 12px;
    padding: 0 0 20px;
    flex-wrap: wrap;
}

.platform-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: transform 0.2s ease, background-color 0.2s ease;
    color: white;
}

.platform-button:active {
    transform: scale(0.98);
}

.platform-button.airbnb {
    background-color: #FF5A5F;
}

.platform-button.google {
    background-color: #4285F4;
}

.platform-button i {
    font-size: 18px;
}

.platform-button.airbnb:hover {
    background-color: #FF4146;
}

.platform-button.google:hover {
    background-color: #3367D6;
}

/* Ensure buttons stack nicely on mobile */
@media (max-width: 480px) {
    .review-platform-links {
        flex-direction: column;
    }
    
    .platform-button {
        width: 100%;
        justify-content: center;
    }
}

/* Food Menu Styles */
.food-packages-table {
    margin-bottom: 30px;
}

.food-packages-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.food-packages-table th,
.food-packages-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

.food-packages-table th {
    background-color: #f8f8f8;
}

.food-packages-table ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.price-note {
    font-size: 14px;
    color: #666;
    text-align: right;
    margin-top: 8px;
}

.menu-category {
    margin-bottom: 30px;
}

.menu-category h4 {
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
}

.menu-subcategory {
    margin-bottom: 20px;
}

.menu-subcategory h5 {
    color: #444;
    margin-bottom: 10px;
    font-weight: 600;
}

.menu-subcategory ul {
    list-style: none;
    padding-left: 15px;
}

.menu-subcategory li {
    margin-bottom: 8px;
    position: relative;
}

.menu-subcategory li:before {
    content: "•";
    position: absolute;
    left: -15px;
    color: #666;
}

.thali-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.item-group h6 {
    color: #555;
    margin-bottom: 8px;
    font-weight: 600;
}

.menu-note {
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    margin-top: 20px;
}

.rate-table {
    width: 100%;
    border-collapse: collapse;
}

.rate-table th,
.rate-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.rate-table th {
    background-color: #f8f8f8;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .thali-items {
        grid-template-columns: 1fr;
    }
    
    .food-packages-table td {
        padding: 8px;
    }
}

.menu-note h4 {
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
}

.menu-note ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-note ul li {
    margin-bottom: 8px;
    color: #555;
}

.menu-note p {
    color: #555;
    margin: 0;
}

/* Food Menu Mobile Enhancements */
@media (max-width: 768px) {
    /* Improve table visibility */
    .food-packages-table table,
    .rate-table {
        width: 100%;
        margin: 15px 0;
        border: 1px solid #ddd;
        background: #fff;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    .food-packages-table th,
    .food-packages-table td,
    .rate-table th,
    .rate-table td {
        padding: 12px 8px;
        font-size: 14px;
        border: 1px solid #ddd;
    }

    .food-packages-table th,
    .rate-table th {
        background-color: #f8f8f8;
        font-weight: 600;
    }

    /* Enhance grey boxes visibility */
    .menu-note {
        background: #f8f8f8;
        padding: 16px;
        margin: 15px 0;
        border-radius: 8px;
        border: 1px solid #eee;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    /* Improve spacing in menu sections */
    .modal-section {
        margin-bottom: 25px;
        padding: 0 15px;
    }

    .menu-category {
        margin-bottom: 25px;
    }

    .menu-subcategory {
        margin-bottom: 20px;
        padding: 0 5px;
    }

    /* Better heading visibility */
    .modal-section h3 {
        margin: 20px 0 15px;
        padding-bottom: 8px;
        border-bottom: 2px solid #f0f0f0;
    }

    .menu-category h4 {
        margin: 15px 0 12px;
        color: #333;
    }

    /* Improve list readability */
    .menu-subcategory ul {
        margin-top: 8px;
    }

    .menu-subcategory li {
        margin-bottom: 10px;
        line-height: 1.4;
    }

    /* Better spacing for thali items */
    .thali-items {
        gap: 15px;
        margin-top: 10px;
    }

    .item-group {
        background: #f8f8f8;
        padding: 12px;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .item-group h6 {
        margin-bottom: 10px;
    }

    /* Price note enhancement */
    .price-note {
        margin: 10px 0;
        padding: 8px;
        background: #f8f8f8;
        border-radius: 4px;
        text-align: center;
    }
}

/* Food Menu Mobile-Specific Enhancements */
@media (max-width: 768px) {
    #host-favorites-modal .modal-content {
        background-color: #fff;
        padding: 20px 15px;
    }

    #host-favorites-modal .modal-section {
        background-color: #fff;
        margin-bottom: 30px;
        padding: 0;
    }

    /* Tables Enhancement */
    #host-favorites-modal .food-packages-table {
        background: #fff;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    #host-favorites-modal .food-packages-table table {
        border: 1px solid #e0e0e0;
        background: #fff;
    }

    #host-favorites-modal .food-packages-table th,
    #host-favorites-modal .food-packages-table td {
        padding: 12px 8px;
        border: 1px solid #e0e0e0;
        background: #fff;
    }

    #host-favorites-modal .food-packages-table th {
        background: #f5f5f5;
        font-weight: 600;
    }

    /* Grey Box Enhancement */
    #host-favorites-modal .menu-note {
        background: #f5f5f5;
        padding: 16px;
        margin: 15px 0;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    /* Menu Categories Spacing */
    #host-favorites-modal .menu-category {
        margin: 25px 0;
        padding: 15px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    #host-favorites-modal .menu-subcategory {
        margin: 20px 0;
        padding: 15px;
        background: #f9f9f9;
        border-radius: 8px;
    }

    /* Headings Enhancement */
    #host-favorites-modal .modal-section h3 {
        color: #333;
        font-size: 18px;
        margin: 25px 0 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid #eee;
    }

    #host-favorites-modal .menu-subcategory h5 {
        color: #444;
        font-size: 16px;
        margin-bottom: 15px;
    }

    /* List Items Spacing */
    #host-favorites-modal .menu-subcategory ul {
        margin: 0;
        padding-left: 20px;
    }

    #host-favorites-modal .menu-subcategory li {
        margin-bottom: 12px;
        line-height: 1.5;
        padding-left: 5px;
    }

    /* Thali Items Grid */
    #host-favorites-modal .thali-items {
        display: grid;
        gap: 15px;
        margin-top: 15px;
    }

    #host-favorites-modal .item-group {
        background: #f5f5f5;
        padding: 15px;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
    }

    /* Rate Table Enhancement */
    #host-favorites-modal .rate-table {
        border: 1px solid #e0e0e0;
        margin: 15px 0;
        width: 100%;
        background: #fff;
    }

    #host-favorites-modal .rate-table th,
    #host-favorites-modal .rate-table td {
        padding: 12px 8px;
        border: 1px solid #e0e0e0;
    }

    #host-favorites-modal .rate-table th {
        background: #f5f5f5;
    }

    /* Price Note */
    #host-favorites-modal .price-note {
        background: #f5f5f5;
        padding: 8px;
        border-radius: 4px;
        margin: 10px 0;
        text-align: center;
        font-size: 13px;
        color: #666;
    }
}

/* Update bullet point spacing in food modal */
#host-favorites-modal .menu-subcategory li:before {
    content: "• ";  /* Added space after bullet */
    position: absolute;
    left: -15px;
    color: #666;
}

#host-favorites-modal .menu-subcategory li {
    margin-bottom: 12px;
    line-height: 1.5;
    padding-left: 8px;  /* Increased padding to accommodate bullet spacing */
}

/* Local Specials Modal Enhancement */
#specials-modal .attractions-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#specials-modal .attraction-card {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
    transition: transform 0.2s ease;
}

#specials-modal .attraction-card:active {
    transform: scale(0.98);
}

#specials-modal .attraction-card h4 {
    color: #333;
    margin-bottom: 8px;
    font-size: 17px;
    font-weight: 600;
}

#specials-modal .attraction-card .distance {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

#specials-modal .attraction-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Mobile Specific Enhancements */
@media (max-width: 768px) {
    #specials-modal .attraction-card {
        margin: 0 15px;
        background: #f8f8f8;
        border: 1px solid #e0e0e0;
    }
    
    #specials-modal .modal-sections {
        padding: 15px 0;
    }
    
    #specials-modal .modal-section h3 {
        margin: 0 15px 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #eee;
        color: #333;
        font-size: 18px;
    }
}
  
:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --accent-color: #E74C3C;
    --text-color: #000000;
    --light-gray: #ECF0F1;
    --system-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal !important;
}

/* Room Modal Specific Styles */
.rooms-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.room-showcase-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.room-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.room-content {
    padding: 1.5rem;
}

.room-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.room-description {
    color: #6c757d;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.room-features i {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .rooms-container {
        grid-template-columns: 1fr;
    }
}

:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --accent-color: #E74C3C;
    --text-color: #000000;
    --light-gray: #ECF0F1;
    --system-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal !important;
}


/* Room Gallery Styles */
.room-image-gallery {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.gallery-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.gallery-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-wrapper img.active {
    opacity: 1;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-image-gallery:hover .gallery-nav {
    opacity: 1;
}

.gallery-nav.prev {
    left: 10px;
}

.gallery-nav.next {
    right: 10px;
}

.gallery-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dot.active {
    background: white;
}

:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --accent-color: #E74C3C;
    --text-color: #000000;
    --light-gray: #ECF0F1;
    --system-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal !important;
}

/* Room Gallery Styles */
.room-image-gallery {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.gallery-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.gallery-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-wrapper img.active {
    opacity: 1;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-image-gallery:hover .gallery-nav {
    opacity: 1;
}

.gallery-nav.prev {
    left: 10px;
}

.gallery-nav.next {
    right: 10px;
}

.gallery-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dot.active {
    background: white;
}

/* Hide navigation elements when there's only one image */
.room-image-gallery:has(img:only-child) .gallery-nav,
.room-image-gallery:has(img:only-child) .gallery-dots {
    display: none;
}
:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --accent-color: #E74C3C;
    --text-color: #000000;
    --light-gray: #ECF0F1;
    --system-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal !important;
}


.location-preview {
    position: relative;
    margin: 1rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.location-preview img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.view-on-map {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.view-on-map:hover {
    background: rgba(0, 0, 0, 0.9);
}

.view-on-map i {
    color: #E74C3C;
}

:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --accent-color: #E74C3C;
    --text-color: #000000;
    --light-gray: #ECF0F1;
    --system-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal !important;
}


.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: background-color 0.3s ease;
}

.room-image-gallery:hover .gallery-nav {
    opacity: 1;
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.7);
}

:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --accent-color: #E74C3C;
    --text-color: #000000;
    --light-gray: #ECF0F1;
    --system-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal !important;
}

/* Instagram Follow Button */
.instagram-follow-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.instagram-follow-btn i {
        font-size: 16px;
}

.instagram-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.instagram-follow-btn:active {
    transform: translateY(0);
}

/* Mobile optimization */
@media (max-width: 768px) {
    .instagram-follow-btn {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .instagram-follow-btn i {
        font-size: 15px;
    }
}

:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --accent-color: #E74C3C;
    --text-color: #000000;
    --light-gray: #ECF0F1;
    --system-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal !important;
}


/* Local Specials Modal Enhancement */
#specials-modal .attractions-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#specials-modal .attraction-card {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
    transition: transform 0.2s ease;
}

#specials-modal .attraction-card:active {
    transform: scale(0.98);
}

#specials-modal .attraction-card h4 {
    color: #333;
    margin-top: 10px;
    font-size: 17px;
    font-weight: 600;
}

#specials-modal .attraction-card .distance {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

#specials-modal .attraction-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Mobile Specific Enhancements */
@media (max-width: 768px) {
    #specials-modal .attraction-card img {
        height: 200px;
    }
}
:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --accent-color: #E74C3C;
    --text-color: #000000;
    --light-gray: #ECF0F1;
    --system-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal !important;
}

/* Local Specials Modal Enhancement */
#specials-modal .attraction-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
    background: #f8f8f8;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
}

#specials-modal .attraction-image {
    height: 300px;
    width: 100%;
    overflow: hidden;
}

#specials-modal .attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#specials-modal .attraction-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #specials-modal .attraction-card {
        grid-template-columns: 1fr;
    }

    #specials-modal .attraction-image {
        height: 250px;
    }
}

:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --accent-color: #E74C3C;
    --text-color: #000000;
    --light-gray: #ECF0F1;
    --system-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal !important;
}

.changing-hello {
    position: relative;
    height: 1.5em;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: #6B35E8;  /* Using the same purple as before */
}

.changing-hello span {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    animation: rotateWords 10s linear infinite 0s;
}

.changing-hello span:nth-child(2) {
    animation-delay: 2s;
}
.changing-hello span:nth-child(3) {
    animation-delay: 4s;
}
.changing-hello span:nth-child(4) {
    animation-delay: 6s;
}
.changing-hello span:nth-child(5) {
    animation-delay: 8s;
}

@keyframes rotateWords {
    0% { opacity: 0; transform: translateY(-20px); }
    2% { opacity: 0; transform: translateY(-20px); }
    5% { opacity: 1; transform: translateY(0); }
    17% { opacity: 1; transform: translateY(0); }
    20% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 0; transform: translateY(20px); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .changing-hello {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .changing-hello {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
}
:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --accent-color: #E74C3C;
    --text-color: #000000;
    --light-gray: #ECF0F1;
    --system-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal !important;
}

.changing-hello {
    position: relative;
    height: 1.5em;
    margin: 1rem auto;
    font-size: 1.25rem;
    font-weight: 500;
    color: #6B35E8;
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.changing-hello span {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    opacity: 0;
    animation: morphText 10s ease-in-out infinite 0s;
    width: 100%;
    text-align: center;
}

.changing-hello span:nth-child(2) {
    animation-delay: 2s;
}
.changing-hello span:nth-child(3) {
    animation-delay: 4s;
}
.changing-hello span:nth-child(4) {
    animation-delay: 6s;
}
.changing-hello span:nth-child(5) {
    animation-delay: 8s;
}

@keyframes morphText {
    0%, 20%, 100% {
        opacity: 0;
        filter: blur(4px);
        transform: translateX(-50%) scale(0.8);
    }
    5%, 15% {
        opacity: 1;
        filter: blur(0);
        transform: translateX(-50%) scale(1);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .changing-hello {
        font-size: 1.1rem;
        margin: 0.75rem auto;
    }
}

@media (max-width: 480px) {
    .changing-hello {
        font-size: 1rem;
        margin: 0.5rem auto;
    }
}


:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --accent-color: #E74C3C;
    --text-color: #000000;
    --light-gray: #ECF0F1;
    --system-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal !important;
}

body {
    font-family: var(--system-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
    letter-spacing: -0.2px;
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, #e3e9f2 0%, #e8ecf1 100%);
    min-height: 100vh;
}

.hero-image {
    width: 120%;
    margin-right: -100px;
    margin-left: -50px;
    margin-top: -50px;
}

.hero-image img {
    width: 100%;
    height: 300px;
    object-fit: contain;
}

.container {
    padding: 0;
    max-width: 100%;
    max-width: 480px;
    width: 100%;
    background-color: rgb(239, 233, 233);
    margin: 0 auto;
    overflow-x: hidden;
}

header {
    padding: 16px 16px 8px;
    text-align: center;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--system-font);
    font-weight: 600;
}

h1 {
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 2px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 15px;
    color: #666;
    margin-top: 12px;
    margin-bottom: 12px;
    font-weight: 400;
    letter-spacing: -0.3px;
}

.sub-tagline {
    font-size: 13px;
    color: #666;
    text-align: center;
    margin: 8px auto 16px;
    max-width: 320px;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: -0.2px;
}

/* Add bottom margin to quick access grid */
.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 12px;
    margin-top: 8px;
    margin-bottom: 24px;  /* increased from 12px to 24px */
    align-items: start;
}
.grid-item {
    aspect-ratio: 1;
    border-radius: 20px;
    background: transparent;
    padding: 10px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.grid-item:active {
    transform: scale(0.95);
}

.grid-item .icon-wrapper {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 6px;
    background: transparent;
    transition: transform 0.2s ease;
}

.grid-item .icon-wrapper i {
    font-size: 26px;
    color: #6B35E8;
}

/* Simple press effect */
.grid-item:active .icon-wrapper {
    transform: scale(0.95);
}

.grid-item h3 {
    font-size: 13px;
    line-height: 1.1;
    margin: 0;
    text-align: center;
    color: #6c6c6c;
    font-weight: 700;
    letter-spacing: -0.3px;
    width: 100%;
}

.grid-item h3.two-line {
    font-size: 13px;
    line-height: 1.3;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0;
    height: auto;
    transition: transform 0.2s ease;
}

.feature-card:active {
    transform: scale(0.98);
}

.feature-card img {
    width: 130px;
    height: 85px;
    border-radius: 16px;
    object-fit: cover;
}

.card-content {
    position: static;
    padding: 4px 0;
    background: none;
    color: inherit;
}

.card-content h2 {
    color: #000;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1.1;
}

.card-content p {
    color: #666;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.3px;
    margin: 2px 0 0;
    line-height: 1.3;
}

/* Modal Base Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 20px auto; /* Changed from margin-left to auto for center alignment */
    padding: 20px;
    width: 90%; /* Changed from fixed width to percentage */
    max-width: 600px; /* Added max-width for larger screens */
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

/* Modal Header Styles */
.modal-content h2 {
    margin: -20px -20px 20px -20px;
    padding: 20px;
    border-bottom: 1px solid #eee;
    border-radius: 12px 12px 0 0;
    background: white;
}

/* Close Button Styles */
.close {
    position: fixed;
    right: calc(5% + 20px); /* Adjust based on modal margin */
    top: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    z-index: 1002; /* Higher than modal content */
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close:hover {
    background: #eee;
    transform: scale(1.1);
}

/* Adjust close button position for large modals */
.modal-large .close {
    right: calc(5% + 20px);
}

@media screen and (min-width: 768px) {
    .close {
        right: calc((100% - 600px)/2 + 20px); /* For regular modals */
    }
    
    .modal-large .close {
        right: calc((100% - 800px)/2 + 20px); /* For large modals */
    }
}

/* Modal Animation */
@keyframes modalSlideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Large Modal Variant */
.modal-large .modal-content {
    max-width: 800px;
}

/* Modal Content Scrolling */
.modal-sections {
    overflow-y: auto;
    max-height: calc(100vh - 150px);
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .modal-content {
        margin: 10px auto;
        width: 95%;
        padding: 15px;
    }

    .modal-content h2 {
        font-size: 20px;
        padding: 15px;
        margin: -15px -15px 15px -15px;
    }

    .close {
        right: 15px;
        top: 15px;
    }

    /* Improve touch targets on mobile */
    .category-header,
    .booking-platform,
    .attraction-card,
    .amenity-category {
        padding: 15px;
        min-height: 44px; /* Minimum touch target size */
    }

    /* Improve modal scrolling on mobile */
    .modal-sections {
        max-height: calc(100vh - 120px);
        -webkit-overflow-scrolling: touch;
    }
}

/* Accessibility Improvements */
.modal-content:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
}

/* Better touch feedback */
.modal button,
.modal-content a,
.close {
    -webkit-tap-highlight-color: transparent;
}

.modal button:active,
.modal-content a:active,
.close:active {
    opacity: 0.7;
}

/* Prevent body scrolling when modal is open */
body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

#feedback-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

#feedback-form input,
#feedback-form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#feedback-form textarea {
    min-height: 100px;
}

footer {
    padding: 12px;
    margin-top: 40px;
}

.quote {
    font-style: normal;
    color: #666;
    margin: 32px 0;
    font-size: 13px;
    line-height: 1.4;
    padding: 0 16px;
    letter-spacing: -0.2px;
}

.footer-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 0 12px;
    margin-top: 32px;
}

.footer-buttons button {
    flex: 1;
    padding: 12px 16px;
    border-color: black;
    border-radius: 8px;
    background: #ffffff;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-align: center;
    transition: background-color 0.2s ease;
    font-family: var(--system-font);
    letter-spacing: -0.2px;
}

.footer-buttons button:active {
    background: #f0f0f0;
}

@media (max-width: 768px) {
    .quick-access-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .quick-access-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .grid-item h3 {
        font-size: 0.8rem;
    }
    
    .footer-buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    button {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}


/* Modal enhancements */
.modal-large {
    max-width: 480px !important; /* Force mobile width even for large modals */
}

.experience-cards {
    display: grid;
    grid-template-columns: 1fr !important; /* Force single column */
    gap: 20px;
    margin-top: 15px;
}

.exp-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.exp-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.restaurant-grid, .spots-grid {
    display: grid;
    grid-template-columns: 1fr !important; /* Force single column */
    gap: 20px;
    margin-top: 20px;
}

.rest-image, .spot-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
}

.exp-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.exp-card .timing {
    color: #666;
    font-size: 0.9em;
    margin-top: 10px;
}

.exp-card .price {
    color: var(--accent-color);
    font-weight: 500;
    margin-top: 5px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.info-item {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-item ul {
    list-style: none;
    padding-left: 0;
}

.info-item ul li {
    margin-bottom: 8px;
    font-size: 0.9em;
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr !important; /* Force single column */
    gap: 24px;
    padding: 20px 0;
}

.amenity-category {
    background: white;
    border-radius: 16px;
    padding: 24px;
}

.amenity-category h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.amenity-category ul {
    list-style: none;
    padding-left: 0;
}

.amenity-category ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.amenity-category ul li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Checkout Modal Styles */
.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 15px 0;
}

.timeline-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.timeline-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 15px 0;
}

.checklist-item {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.checklist-item ul {
    list-style: none;
    padding-left: 0;
}

.checklist-item ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.checklist-item ul li:before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.transport-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 15px 0;
}

.transport-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.notes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 15px 0;
}

.note {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.checkout-section {
    margin-bottom: 30px;
}

.checkout-section h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

/* Adjust top margin of featured sections */
.featured-sections {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 24px;  /* increased from 12px to 24px */
}
.feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0;
    height: auto;
    transition: transform 0.2s ease;
}

.feature-card img {
    width: 130px;
    height: 85px;
    border-radius: 16px;
    object-fit: cover;
}

/* Ensure modal content is not italic */
.modal-content p,
.modal-section p,
.modal-sections p {
    font-style: normal;
}

/* Ensure all paragraphs and text elements are not italic */
p, span, h1, h2, h3, h4, h5, h6 {
    font-style: normal;
}

/* Laptop and larger screens */
@media screen and (min-width: 1024px) {
    .container {
        max-width: 480px;
        margin: 0 auto;
        padding: 15px;
    }

    .hero-image {
        width: 120%;
        margin-right: -100px;
        margin-left: -50px;
        margin-top: -50px;
    }

    .hero-image img {
        height: 300px;
    }

    header {
        padding: 16px 16px 8px;
    }

    h1 {
        font-size: 28px;
    }

    .tagline {
        font-size: 15px;
        margin-bottom: 12px;
    }

    /* Quick access grid for mobile */
    .quick-access-grid {
        gap: 10px;
        padding: 12px;
    }

    .grid-item {
        padding: 10px 6px;
    }

    .grid-item .icon-wrapper {
        width: 55px;
        height: 55px;
    }

    .grid-item .icon-wrapper i {
        font-size: 26px;
    }

    .grid-item h3 {
        font-size: 13px;
    }

    /* Featured sections for mobile */
    .featured-sections {
        padding: 12px 16px;
        gap: 28px;
    }

    .feature-card {
        gap: 16px;
    }

    .feature-card img {
        width: 130px;
        height: 85px;
        border-radius: 16px;
    }

    .card-content h2 {
        font-size: 22px;
    }

    .card-content p {
        font-size: 14px;
    }

    /* Modal adjustments for mobile */
    .modal-content {
        margin: 15px auto;
        padding: 20px;
        max-width: 90%;
    }

    .modal-large {
        max-width: 90% !important;
    }

    .modal h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .modal h3 {
        font-size: 18px;
    }

    .modal p {
        font-size: 14px;
    }
}

/* Extra large screens */
@media screen and (min-width: 1440px) {
    .container {
        max-width: 480px;
    }

    .hero-image img {
        height: 300px;
    }
}

/* Video container styling */
.video-container {
    margin: 15px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Map styling */
.location-map {
    margin: 20px 0 30px;
    position: relative;
}

.full-width-map {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 10px;
}

.map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.legend-item {
    font-size: 14px;
    color: #666;
}

/* Spaced heading for Nearby Services */
.spaced-heading {
    letter-spacing: 0.5px;
}

/* Amenity images */
.amenity-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin: 15px 0;
}

/* Enhanced modal sections spacing */
.modal-sections {
    position: relative;
    overflow: visible;
    padding-top: 10px;
}

.modal-section {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.modal-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

/* Guide images */
.guide-image {
    width: 100%;
    border-radius: 8px;
    margin: 12px 0;
}

.instructions {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 12px;
}

/* New sections styling */
.photo-spots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.transport-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.transport-card {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 12px;
}

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

.benefit-card {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 12px;
    margin-top: 10px;
}

.benefit-card h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

/* Enhanced list styling */
.modal-section ul {
    list-style: none;
    padding-left: 0;
}

.modal-section ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.modal-section ul li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Enhanced service cards */
.service-grid {
    display: grid;
    grid-template-columns: 1fr !important; /* Force single column */
    gap: 20px;
    margin-top: 15px;
}

.service-card {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 12px;
}

.service-card h4 {
    margin-bottom: 12px;
    color: #000;
    font-weight: 600;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    margin-bottom: 12px;
    padding-left: 0 !important;
    font-size: 14px;
}

.highlight {
    display: block;
    color: #666;
    font-size: 12px;
    margin-top: 2px;
    margin-left: 20px;
}

/* Kitchen and Climate guides */
.kitchen-guide, .climate-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 15px;
}

.guide-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
}

.guide-item p {
    font-weight: 600;
    margin-bottom: 10px;
}

.temp-settings, .quick-tips {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
}

/* Video container enhancement */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Style for adventure grid */
.adventure-grid {
    display: grid;
    grid-template-columns: 1fr !important; /* Force single column */
    gap: 20px;
    margin-top: 20px;
}

.adventure-card {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.adventure-card h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.adventure-card ul {
    list-style: none;
    padding: 0;
}

.adventure-card li {
    margin-bottom: 12px;
    font-size: 0.9em;
    line-height: 1.4;
}

.contact {
    color: #2c3e50;
    font-weight: 500;
    margin-top: 8px;
}

.highlight {
    display: block;
    color: #e67e22;
    font-size: 0.85em;
    margin-top: 2px;
}

/* Improve scrolling performance */
.modal-content {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Ensure proper spacing on mobile */
@media (max-width: 768px) {
    .modal-content {
        margin: 10px auto;
        padding: 15px;
    }
    
    .modal {
        padding: 0;
    }
}

/* Ensure consistent mobile-like spacing */
.featured-sections {
    padding: 12px 16px;
    gap: 28px;
    margin-top: 24px;
}

.quick-access-grid {
    gap: 10px;
    padding: 12px;
    margin-top: 8px;
    margin-bottom: 24px;
}

/* Ensure modal content stays narrow */
.modal-content {
    max-width: 90%;
    margin: 15px auto;
}

.modal-large {
    max-width: 90% !important;
}

/* Center the narrow container on all screens */
body {
    display: flex;
    justify-content: center;
    background-color: #f5f5f5; /* Optional: adds contrast to show the mobile-width container */
}

.container {
    max-width: 480px;
    width: 100%;
    background-color: white;
    margin: 0 auto;
    overflow-x: hidden;
}

/* Optional: Add a subtle border to emphasize mobile container */
@media screen and (min-width: 481px) {
    .container {
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
        margin: 20px auto;
        border-radius: 20px;
    }
}

/* Force mobile layout on all screens */
@media screen and (min-width: 481px) {
    body {
        background-color: #f5f5f5;
        min-height: 100vh;
        display: flex;
        justify-content: center;
        padding: 20px 0;
    }

    .container {
        width: 390px !important; /* iPhone 12/13/14 width */
        max-width: 390px !important;
        background: white;
        border-radius: 20px;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
        overflow: hidden;
        margin: 0;
    }

    /* Keep modal width consistent with mobile */
    .modal {
        justify-content: center;
        align-items: center;
    }

    .modal-content,
    .modal-large {
        width: 390px !important;
        max-width: 390px !important;
        margin: auto;
        border-radius: 20px;
    }

    /* Force all grids to single column */
    .experience-cards,
    .restaurant-grid,
    .spots-grid,
    .amenities-grid,
    .service-grid,
    .adventure-grid,
    .photo-spots-grid,
    .transport-info,
    .benefits-grid,
    .kitchen-guide,
    .climate-guide {
        grid-template-columns: 1fr !important;
    }

    /* Maintain mobile image sizes */
    .exp-image,
    .rest-image,
    .spot-image,
    .amenity-image {
        height: 200px !important;
    }

    /* Override any desktop-specific padding/margins */
    .modal-section {
        padding: 16px !important;
        margin-bottom: 16px !important;
    }

    .modal-sections {
        padding: 0 !important;
        display: block !important;
    }

    /* Ensure mobile-like typography */
    .modal h2 { font-size: 24px !important; }
    .modal h3 { font-size: 18px !important; }
    .modal h4 { font-size: 16px !important; }
    .modal p { font-size: 14px !important; }
}

/* Remove all other @media queries that might override these styles */

/* Add this to your existing CSS */
.mobile-view-notice {
    display: none; /* Hidden by default */
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 2000;
    animation: fadeInOut 6s ease-in-out forwards;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.mobile-view-notice i {
    margin-right: 8px;
    color: #FFD700;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-20px); }
    10% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-20px); }
}

/* Show notice only on larger screens */
@media screen and (min-width: 481px) {
    .mobile-view-notice {
        display: block;
    }
}

.booking-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
    width: 100%;
}

.booking-link {
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.booking-platform {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 12px;
    transition: transform 0.2s ease;
    border: 1px solid #eee;
    gap: 15px;
    width: 100%;
}

.booking-platform:active {
    transform: scale(0.98);
    background: #f8f8f8;
}

.platform-icon-wrapper {
    width: 40px;
    display: flex;
    justify-content: center;
}

.booking-platform i.fab.fa-airbnb {
    font-size: 2rem;
    color: #ff5a5f;
}

.platform-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.booking-platform-content {
    flex: 1;
}

.booking-platform h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #000;
}

.booking-platform p {
    margin: 2px 0 0;
    font-size: 0.9rem;
    color: #666;
}

/* Collapsible Menu Styles */
.rule-category,
.amenity-category {
    border-bottom: 1px solid #eee;
    background: white;
}

.category-header {
    padding: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.category-header:active {
    background-color: #f8f8f8;
}

.category-header h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.category-header i {
    transition: transform 0.3s ease;
    color: #666;
    font-size: 14px;
}

.category-content {
    display: none;
    padding: 0 16px 16px;
}

.category-content p {
    margin: 8px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Ensure the modal content is scrollable */
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Prevent text selection on mobile */
.category-header * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Last item shouldn't have a border */
.rule-category:last-child,
.amenity-category:last-child {
    border-bottom: none;
}

/* Touch target size for mobile */
@media (max-width: 480px) {
    .category-header {
        padding: 16px;
        min-height: 48px;
    }
}

/* Review Modal Styling */
.reviews-section {
    padding: 20px 0;
}

.review-platform {
    text-align: center;
    padding: 30px 20px;
}

.review-link {
    text-decoration: none;
    color: #666;
    display: block;
}

.review-link:hover {
    color: #333;
}

.review-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.star-rating {
    color: #FFD700;
    font-size: 24px;
    letter-spacing: 2px;
}

.review-content h3 {
    margin: 0;
    color: #000;
    font-size: 24px;
    font-weight: 600;
}

.review-content p {
    color: #666;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    max-width: 400px;
}

.review-button {
    background: #000;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease;
}

.review-button:active {
    transform: scale(0.98);
}

.review-button i {
    font-size: 14px;
}

/* Gallery Modal Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 16px 0;
    width: 100%;
}

.gallery-item {
    position: relative;
    aspect-ratio: 3/2;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f8f8;
    cursor: pointer;
}

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

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

.gallery-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    font-size: 14px;
    text-align: center;
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    padding: 20px;
}

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

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

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .gallery-item {
        aspect-ratio: 16/9;
    }
}

/* Map Button Styles */
.map-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: transform 0.2s ease;
    margin-top: 16px;
    margin-bottom: 16px;

}

.map-button:active {
    transform: scale(0.98);
}

.map-button i {
    font-size: 16px;
}

/* Make sure modal header is always white */
.modal-content h2 {
    background: white;
}

.modal-content h2 {
    color: #333;
}

/* Reviews Modal Styles */
.reviews-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
}

.review-image-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: #f8f8f8;
}

.review-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* Optional: Add hover effect for desktop */
@media (min-width: 769px) {
    .review-image-container:hover img {
        transform: scale(1.02);
    }
}

/* Ensure proper spacing in modal */
#reviews-modal .modal-content {
    padding-bottom: 30px;
}

/* Optimize images for better performance */
.review-image-container img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

/* Review Platform Links */
.review-platform-links {
    display: flex;
    gap: 12px;
    padding: 0 0 20px;
    flex-wrap: wrap;
}

.platform-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: transform 0.2s ease, background-color 0.2s ease;
    color: white;
}

.platform-button:active {
    transform: scale(0.98);
}

.platform-button.airbnb {
    background-color: #FF5A5F;
}

.platform-button.google {
    background-color: #4285F4;
}

.platform-button i {
    font-size: 18px;
}

.platform-button.airbnb:hover {
    background-color: #FF4146;
}

.platform-button.google:hover {
    background-color: #3367D6;
}

/* Ensure buttons stack nicely on mobile */
@media (max-width: 480px) {
    .review-platform-links {
        flex-direction: column;
    }
    
    .platform-button {
        width: 100%;
        justify-content: center;
    }
}

/* Food Menu Styles */
.food-packages-table {
    margin-bottom: 30px;
}

.food-packages-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.food-packages-table th,
.food-packages-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

.food-packages-table th {
    background-color: #f8f8f8;
}

.food-packages-table ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.price-note {
    font-size: 14px;
    color: #666;
    text-align: right;
    margin-top: 8px;
}

.menu-category {
    margin-bottom: 30px;
}

.menu-category h4 {
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
}

.menu-subcategory {
    margin-bottom: 20px;
}

.menu-subcategory h5 {
    color: #444;
    margin-bottom: 10px;
    font-weight: 600;
}

.menu-subcategory ul {
    list-style: none;
    padding-left: 15px;
}

.menu-subcategory li {
    margin-bottom: 8px;
    position: relative;
}

.menu-subcategory li:before {
    content: "•";
    position: absolute;
    left: -15px;
    color: #666;
}

.thali-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.item-group h6 {
    color: #555;
    margin-bottom: 8px;
    font-weight: 600;
}

.menu-note {
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    margin-top: 20px;
}

.rate-table {
    width: 100%;
    border-collapse: collapse;
}

.rate-table th,
.rate-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.rate-table th {
    background-color: #f8f8f8;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .thali-items {
        grid-template-columns: 1fr;
    }
    
    .food-packages-table td {
        padding: 8px;
    }
}

.menu-note h4 {
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
}

.menu-note ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-note ul li {
    margin-bottom: 8px;
    color: #555;
}

.menu-note p {
    color: #555;
    margin: 0;
}

/* Food Menu Mobile Enhancements */
@media (max-width: 768px) {
    /* Improve table visibility */
    .food-packages-table table,
    .rate-table {
        width: 100%;
        margin: 15px 0;
        border: 1px solid #ddd;
        background: #fff;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    .food-packages-table th,
    .food-packages-table td,
    .rate-table th,
    .rate-table td {
        padding: 12px 8px;
        font-size: 14px;
        border: 1px solid #ddd;
    }

    .food-packages-table th,
    .rate-table th {
        background-color: #f8f8f8;
        font-weight: 600;
    }

    /* Enhance grey boxes visibility */
    .menu-note {
        background: #f8f8f8;
        padding: 16px;
        margin: 15px 0;
        border-radius: 8px;
        border: 1px solid #eee;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    /* Improve spacing in menu sections */
    .modal-section {
        margin-bottom: 25px;
        padding: 0 15px;
    }

    .menu-category {
        margin-bottom: 25px;
    }

    .menu-subcategory {
        margin-bottom: 20px;
        padding: 0 5px;
    }

    /* Better heading visibility */
    .modal-section h3 {
        margin: 20px 0 15px;
        padding-bottom: 8px;
        border-bottom: 2px solid #f0f0f0;
    }

    .menu-category h4 {
        margin: 15px 0 12px;
        color: #333;
    }

    /* Improve list readability */
    .menu-subcategory ul {
        margin-top: 8px;
    }

    .menu-subcategory li {
        margin-bottom: 10px;
        line-height: 1.4;
    }

    /* Better spacing for thali items */
    .thali-items {
        gap: 15px;
        margin-top: 10px;
    }

    .item-group {
        background: #f8f8f8;
        padding: 12px;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .item-group h6 {
        margin-bottom: 10px;
    }

    /* Price note enhancement */
    .price-note {
        margin: 10px 0;
        padding: 8px;
        background: #f8f8f8;
        border-radius: 4px;
        text-align: center;
    }
}

/* Food Menu Mobile-Specific Enhancements */
@media (max-width: 768px) {
    #host-favorites-modal .modal-content {
        background-color: #fff;
        padding: 20px 15px;
    }

    #host-favorites-modal .modal-section {
        background-color: #fff;
        margin-bottom: 30px;
        padding: 0;
    }

    /* Tables Enhancement */
    #host-favorites-modal .food-packages-table {
        background: #fff;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    #host-favorites-modal .food-packages-table table {
        border: 1px solid #e0e0e0;
        background: #fff;
    }

    #host-favorites-modal .food-packages-table th,
    #host-favorites-modal .food-packages-table td {
        padding: 12px 8px;
        border: 1px solid #e0e0e0;
        background: #fff;
    }

    #host-favorites-modal .food-packages-table th {
        background: #f5f5f5;
        font-weight: 600;
    }

    /* Grey Box Enhancement */
    #host-favorites-modal .menu-note {
        background: #f5f5f5;
        padding: 16px;
        margin: 15px 0;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    /* Menu Categories Spacing */
    #host-favorites-modal .menu-category {
        margin: 25px 0;
        padding: 15px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    #host-favorites-modal .menu-subcategory {
        margin: 20px 0;
        padding: 15px;
        background: #f9f9f9;
        border-radius: 8px;
    }

    /* Headings Enhancement */
    #host-favorites-modal .modal-section h3 {
        color: #333;
        font-size: 18px;
        margin: 25px 0 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid #eee;
    }

    #host-favorites-modal .menu-subcategory h5 {
        color: #444;
        font-size: 16px;
        margin-bottom: 15px;
    }

    /* List Items Spacing */
    #host-favorites-modal .menu-subcategory ul {
        margin: 0;
        padding-left: 20px;
    }

    #host-favorites-modal .menu-subcategory li {
        margin-bottom: 12px;
        line-height: 1.5;
        padding-left: 5px;
    }

    /* Thali Items Grid */
    #host-favorites-modal .thali-items {
        display: grid;
        gap: 15px;
        margin-top: 15px;
    }

    #host-favorites-modal .item-group {
        background: #f5f5f5;
        padding: 15px;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
    }

    /* Rate Table Enhancement */
    #host-favorites-modal .rate-table {
        border: 1px solid #e0e0e0;
        margin: 15px 0;
        width: 100%;
        background: #fff;
    }

    #host-favorites-modal .rate-table th,
    #host-favorites-modal .rate-table td {
        padding: 12px 8px;
        border: 1px solid #e0e0e0;
    }

    #host-favorites-modal .rate-table th {
        background: #f5f5f5;
    }

    /* Price Note */
    #host-favorites-modal .price-note {
        background: #f5f5f5;
        padding: 8px;
        border-radius: 4px;
        margin: 10px 0;
        text-align: center;
        font-size: 13px;
        color: #666;
    }
}

/* Update bullet point spacing in food modal */
#host-favorites-modal .menu-subcategory li:before {
    content: "• ";  /* Added space after bullet */
    position: absolute;
    left: -15px;
    color: #666;
}

#host-favorites-modal .menu-subcategory li {
    margin-bottom: 12px;
    line-height: 1.5;
    padding-left: 8px;  /* Increased padding to accommodate bullet spacing */
}

/* Local Specials Modal Enhancement */
#specials-modal .attractions-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#specials-modal .attraction-card {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
    transition: transform 0.2s ease;
}

#specials-modal .attraction-card:active {
    transform: scale(0.98);
}

#specials-modal .attraction-card h4 {
    color: #333;
    margin-bottom: 8px;
    font-size: 17px;
    font-weight: 600;
}

#specials-modal .attraction-card .distance {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

#specials-modal .attraction-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Mobile Specific Enhancements */
@media (max-width: 768px) {
    #specials-modal .attraction-card {
        margin: 0 15px;
        background: #f8f8f8;
        border: 1px solid #e0e0e0;
    }
    
    #specials-modal .modal-sections {
        padding: 15px 0;
    }
    
    #specials-modal .modal-section h3 {
        margin: 0 15px 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #eee;
        color: #333;
        font-size: 18px;
    }
}
  
:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --accent-color: #E74C3C;
    --text-color: #000000;
    --light-gray: #ECF0F1;
    --system-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal !important;
}

/* Room Modal Specific Styles */
.rooms-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.room-showcase-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.room-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.room-content {
    padding: 1.5rem;
}

.room-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.room-description {
    color: #6c757d;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.room-features i {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .rooms-container {
        grid-template-columns: 1fr;
    }
}

:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --accent-color: #E74C3C;
    --text-color: #000000;
    --light-gray: #ECF0F1;
    --system-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal !important;
}


/* Room Gallery Styles */
.room-image-gallery {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.gallery-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.gallery-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-wrapper img.active {
    opacity: 1;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-image-gallery:hover .gallery-nav {
    opacity: 1;
}

.gallery-nav.prev {
    left: 10px;
}

.gallery-nav.next {
    right: 10px;
}

.gallery-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dot.active {
    background: white;
}

:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --accent-color: #E74C3C;
    --text-color: #000000;
    --light-gray: #ECF0F1;
    --system-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal !important;
}

/* Room Gallery Styles */
.room-image-gallery {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.gallery-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.gallery-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-wrapper img.active {
    opacity: 1;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-image-gallery:hover .gallery-nav {
    opacity: 1;
}

.gallery-nav.prev {
    left: 10px;
}

.gallery-nav.next {
    right: 10px;
}

.gallery-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dot.active {
    background: white;
}

/* Hide navigation elements when there's only one image */
.room-image-gallery:has(img:only-child) .gallery-nav,
.room-image-gallery:has(img:only-child) .gallery-dots {
    display: none;
}
:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --accent-color: #E74C3C;
    --text-color: #000000;
    --light-gray: #ECF0F1;
    --system-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal !important;
}


.location-preview {
    position: relative;
    margin: 1rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.location-preview img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.view-on-map {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.view-on-map:hover {
    background: rgba(0, 0, 0, 0.9);
}

.view-on-map i {
    color: #E74C3C;
}

:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --accent-color: #E74C3C;
    --text-color: #000000;
    --light-gray: #ECF0F1;
    --system-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal !important;
}


.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: background-color 0.3s ease;
}

.room-image-gallery:hover .gallery-nav {
    opacity: 1;
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.7);
}

:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --accent-color: #E74C3C;
    --text-color: #000000;
    --light-gray: #ECF0F1;
    --system-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal !important;
}

/* Instagram Follow Button */
.instagram-follow-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.instagram-follow-btn i {
        font-size: 16px;
}

.instagram-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.instagram-follow-btn:active {
    transform: translateY(0);
}

/* Mobile optimization */
@media (max-width: 768px) {
    .instagram-follow-btn {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .instagram-follow-btn i {
        font-size: 15px;
    }
}

:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --accent-color: #E74C3C;
    --text-color: #000000;
    --light-gray: #ECF0F1;
    --system-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal !important;
}


/* Local Specials Modal Enhancement */
#specials-modal .attractions-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#specials-modal .attraction-card {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
    transition: transform 0.2s ease;
}

#specials-modal .attraction-card:active {
    transform: scale(0.98);
}

#specials-modal .attraction-card h4 {
    color: #333;
    margin-top: 10px;
    font-size: 17px;
    font-weight: 600;
}

#specials-modal .attraction-card .distance {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

#specials-modal .attraction-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Mobile Specific Enhancements */
@media (max-width: 768px) {
    #specials-modal .attraction-card img {
        height: 200px;
    }
}
:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --accent-color: #E74C3C;
    --text-color: #000000;
    --light-gray: #ECF0F1;
    --system-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal !important;
}

/* Local Specials Modal Enhancement */
#specials-modal .attraction-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
    background: #f8f8f8;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
}

#specials-modal .attraction-image {
    height: 300px;
    width: 100%;
    overflow: hidden;
}

#specials-modal .attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#specials-modal .attraction-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #specials-modal .attraction-card {
        grid-template-columns: 1fr;
    }

    #specials-modal .attraction-image {
        height: 250px;
    }
}

:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --accent-color: #E74C3C;
    --text-color: #000000;
    --light-gray: #ECF0F1;
    --system-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal !important;
}

.changing-hello {
    position: relative;
    height: 1.5em;
    margin: 1rem auto;
    font-size: 1.25rem;
    font-weight: 500;
    color: #6B35E8;
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.changing-hello span {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    opacity: 0;
    width: 100%;
    text-align: center;
    /* Using modern animation properties */
    will-change: transform, opacity, letter-spacing;
    animation: dissolveText 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Using custom properties for animation delays */
.changing-hello span:nth-child(2) {
    animation-delay: 2s;
}
.changing-hello span:nth-child(3) {
    animation-delay: 4s;
}
.changing-hello span:nth-child(4) {
    animation-delay: 6s;
}
.changing-hello span:nth-child(5) {
    animation-delay: 8s;
}

@keyframes dissolveText {
    0%, 100% {
        opacity: 0;
        filter: blur(8px);
        transform: translateX(-50%) scale(0.9);
        letter-spacing: 20px;
    }
    3% {
        opacity: 0.3;
        filter: blur(4px);
        transform: translateX(-50%) scale(0.95);
        letter-spacing: 10px;
    }
    5% {
        opacity: 1;
        filter: blur(0);
        transform: translateX(-50%) scale(1);
        letter-spacing: normal;
    }
    15% {
        opacity: 1;
        filter: blur(0);
        transform: translateX(-50%) scale(1);
        letter-spacing: normal;
    }
    17% {
        opacity: 0.3;
        filter: blur(4px);
        transform: translateX(-50%) scale(0.95);
        letter-spacing: 10px;
    }
    20% {
        opacity: 0;
        filter: blur(8px);
        transform: translateX(-50%) scale(0.9);
        letter-spacing: 20px;
    }
}

/* Performance optimizations for animations */
@media (prefers-reduced-motion: reduce) {
    .changing-hello span {
        animation: none;
        opacity: 1;
    }
    .changing-hello span:not(:first-child) {
        display: none;
    }
}

/* Responsive adjustments with modern viewport units */
@media (max-width: 768px) {
    .changing-hello {
        font-size: clamp(1rem, 2.5vw, 1.1rem);
        margin: 0.75rem auto;
    }
}

@media (max-width: 480px) {
    .changing-hello {
        font-size: clamp(0.875rem, 2vw, 1rem);
        margin: 0.5rem auto;
    }
}




