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

:root {
    --primary-color: #4a5d23;
    --secondary-color: #8b7355;
    --accent-color: #c4a572;
    --background: #faf8f5;
    --text-dark: #333;
    --text-light: #666;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background);
}

h1, h2, h3, h4 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 600;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-family: Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

/* Dropdown Navigation */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e0e0e0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.2s ease;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: var(--background);
    color: var(--primary-color);
    padding-left: 2rem;
}

.cta-button {
    background: var(--primary-color);
    color: white !important;
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 500;
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), 
                url('../photo-gallery/full/cabin-hero_optimized_.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    letter-spacing: 2px;
}

.hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
    color: white;
    font-weight: 400;
}

.hero-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255,255,255,0.95);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Quick Info Bar */
.quick-info {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
}

.quick-info-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    text-align: center;
}

.quick-info-item {
    padding: 1rem;
}

.quick-info-item .icon {
    margin-bottom: 0.5rem;
}
.quick-info-item .icon svg {
    width: 56px;
    height: 56px;
    stroke: #fff !important;
}

.quick-info-item h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.quick-info-item p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Section Styles */
section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery Preview */
.gallery-preview {
    margin-top: 2rem;
}

.featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 3px solid var(--accent-color);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.preview-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
    border: 2px solid var(--accent-color);
}

.preview-grid img:hover {
    transform: scale(1.05);
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.amenity {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--accent-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.amenity:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(74, 93, 35, 0.2);
}

.amenity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.amenity h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.amenity p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Location Section */
.location {
    background: white;
}

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

.location-text h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.location-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.location-highlights {
    list-style: none;
    margin-top: 2rem;
}

.location-highlights li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.location-highlights li:before {
    content: "🏔️";
    position: absolute;
    left: 0;
}

.location-map {
    background: var(--background);
    border-radius: 8px;
    padding: 0;
    border: 3px solid var(--accent-color);
    min-height: 400px;
    overflow: hidden;
}

/* Activities Section */
.activities {
    background: var(--background);
}

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

.activity-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--accent-color);
    transition: transform 0.3s;
}

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

.activity-icon {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    text-align: center;
    font-size: 3.5rem;
}

.activity-content {
    padding: 2rem;
}

.activity-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.activity-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Reviews */
.reviews {
    background: white;
}

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

@media (max-width: 1200px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.review-card {
    background: var(--background);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid var(--accent-color);
    position: relative;
}

.review-stars {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.review-text {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.reviewer {
    font-weight: 600;
    color: var(--primary-color);
}

/* Booking Section */
.booking-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 5rem 2rem;
}

.booking-section h2 {
    color: white;
}

.booking-section .section-subtitle {
    color: rgba(255,255,255,0.9);
}

.widget-container {
    background: white;
    border-radius: 8px;
    padding: 3rem;
    margin-top: 3rem;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border: 3px solid var(--accent-color);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p, .footer-section a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    line-height: 2;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Gallery Page Styles */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-color);
    color: white;
}

.thumbnails-container {
    position: relative;
    margin: 2rem 0;
}

.thumbnails-wrapper {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
}

.thumbnails-wrapper::-webkit-scrollbar {
    height: 8px;
}

.thumbnails-wrapper::-webkit-scrollbar-track {
    background: var(--background);
}

.thumbnails-wrapper::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

.thumbnail {
    min-width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid var(--accent-color);
    transition: transform 0.3s, border-color 0.3s;
}

.thumbnail:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: background 0.3s;
}

.scroll-btn:hover {
    background: var(--secondary-color);
}

.scroll-btn:first-of-type {
    left: 0;
}

.scroll-btn:last-of-type {
    right: 0;
}

.main-image-container {
    text-align: center;
    margin: 2rem 0;
}

.main-image-container img {
    max-width: 100%;
    max-height: 600px;
    border-radius: 8px;
    border: 3px solid var(--accent-color);
}

.main-caption {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
}

.lightbox-caption {
    text-align: center;
    color: white;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.close-lightbox, .lightbox-prev, .lightbox-next {
    position: absolute;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.close-lightbox:hover, .lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(0,0,0,0.8);
}

.close-lightbox {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Contact Page */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--accent-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    background: var(--background);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--accent-color);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--secondary-color);
}

/* Policies Page */
.policies-content {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    border: 2px solid var(--accent-color);
    max-width: 900px;
    margin: 2rem auto;
}

.policies-content h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policies-content p, .policies-content ul {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policies-content ul {
    padding-left: 2rem;
}

.policies-content li {
    margin-bottom: 0.5rem;
}

/* Page Header */
.page-header {
    margin-top: 80px;
    padding: 1rem 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
    .location-content {
        grid-template-columns: 1fr;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .booking-section > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }

    nav ul.active {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f8f9fa;
        margin-left: 1rem;
        border-radius: 0;
    }

    .dropdown-arrow {
        display: none;
    }

    .dropdown-menu a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        color: var(--text-light);
    }

    .dropdown-menu a:hover {
        padding-left: 1rem;
        background: #e9ecef;
    }

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

    /* Why Book Direct Mobile Styles */
    #why-book-direct h2 {
        font-size: 2rem !important;
    }

    #why-book-direct p {
        font-size: 1.1rem !important;
    }

    #why-book-direct .cta-button {
        padding: 0.8rem 1.5rem !important;
        font-size: 1rem !important;
    }

    /* Area Guide Modal Styles */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10000;
        padding: 1rem;
    }

    .modal-content {
        background: white;
        border-radius: 12px;
        max-width: 800px;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .modal-header {
        padding: 2rem 2rem 1rem;
        border-bottom: 1px solid #eee;
        position: relative;
    }

    .modal-header h2 {
        color: var(--primary-color);
        margin: 0 0 0.5rem 0;
        font-size: 1.8rem;
    }

    .modal-subtitle {
        color: var(--text-light);
        margin: 0;
        font-size: 1rem;
    }

    .modal-close {
        position: absolute;
        top: 1rem;
        right: 1.5rem;
        background: none;
        border: none;
        font-size: 2rem;
        color: var(--text-light);
        cursor: pointer;
        padding: 0.5rem;
        line-height: 1;
        transition: color 0.2s ease;
    }

    .modal-close:hover {
        color: var(--primary-color);
    }

    .modal-body {
        padding: 1rem 2rem 2rem;
    }

    .info-group {
        margin-bottom: 2rem;
    }

    .info-group:last-child {
        margin-bottom: 0;
    }

    .info-group h3 {
        color: var(--primary-color);
        margin-bottom: 1rem;
        font-size: 1.2rem;
        border-bottom: 2px solid var(--accent-color);
        padding-bottom: 0.5rem;
    }

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

    .info-group li {
        padding: 0.75rem 0;
        border-bottom: 1px solid #f0f0f0;
        line-height: 1.5;
    }

    .info-group li:last-child {
        border-bottom: none;
    }

    .info-group a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
    }

    .info-group a:hover {
        text-decoration: underline;
    }

    /* Mobile modal styles */
    @media (max-width: 768px) {
        .modal-overlay {
            padding: 0.5rem;
        }
        
        .modal-header {
            padding: 1.5rem 1.5rem 1rem;
        }
        
        .modal-header h2 {
            font-size: 1.5rem;
        }
        
        .modal-body {
            padding: 1rem 1.5rem 1.5rem;
        }
        
        .modal-close {
            top: 0.5rem;
            right: 1rem;
        }
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .preview-grid {
        grid-template-columns: 1fr 1fr;
    }

    .quick-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-badges {
        gap: 1rem;
    }

    .badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}

/* Airbnb-style Gallery Styles */
.airbnb-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 8px;
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
    cursor: pointer;
}


.gallery-modal-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}

.filter-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 16px;
}

.filter-tab {
    background: none;
    border: none;
    padding: 8px 16px;
    border-radius: 24px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    color: #717171;
}

.filter-tab:hover {
    background: #f7f7f7;
}

.filter-tab.active {
    background: #000;
    color: #fff;
}

.modal-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.modal-gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
}

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

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

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 24px 12px 12px;
    font-size: 13px;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal-gallery-item:hover .image-caption {
    opacity: 1;
}

/* Lightbox for full image view */
.image-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 4000;
    align-items: center;
    justify-content: center;
}

.image-lightbox.active {
    display: flex;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}

.lightbox-close:hover {
    background: white;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.lightbox-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .modal-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 8px;
    }
}