* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff7e6;
    color: #333333;
    overflow-x: hidden;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fff7e6 0%, #ffe8c2 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(153, 105, 0, 0.1);
    border-top: 4px solid #996900;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#loading-screen p {
    margin-top: 20px;
    font-size: 18px;
    color: #996900;
}

/* Main Container */
#main-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.hidden {
    display: none !important;
}

/* Page Header - Top Left */
.page-header {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 50;
    pointer-events: none;
    user-select: none;
}

.page-header .brand-header {
    text-align: left;
}

.page-header .brand-azure {
    font-family: 'Times New Roman', Times, serif;
    font-size: 36px;
    font-weight: bold;
    color: #996900;
    letter-spacing: 6px;
    text-shadow: 0 0 20px rgba(153, 105, 0, 0.5);
    line-height: 1;
}

.page-header .brand-subtitle {
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    color: #996900;
    letter-spacing: 3px;
    margin-top: 3px;
    text-shadow: 0 0 10px rgba(153, 105, 0, 0.3);
}

/* Left Navigation Menu */
#left-menu {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 247, 230, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid #996900;
    border-radius: 20px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 150;
    box-shadow: 0 8px 32px rgba(153, 105, 0, 0.3);
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 12px 10px;
    border-radius: 12px;
    min-width: 70px;
}

.menu-item:hover {
    background: rgba(153, 105, 0, 0.15);
    transform: translateX(5px);
}

.menu-item.active {
    background: rgba(153, 105, 0, 0.25);
}

.menu-icon {
    width: 32px;
    height: 32px;
    color: #996900;
    transition: all 0.3s ease;
}

.menu-item:hover .menu-icon {
    color: #cc8800;
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(153, 105, 0, 0.6));
}

.menu-icon svg {
    width: 100%;
    height: 100%;
}

.menu-label {
    font-size: 11px;
    color: #996900;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.menu-item:hover .menu-label {
    color: #cc8800;
    text-shadow: 0 0 10px rgba(153, 105, 0, 0.5);
}

/* Building View */
#building-view {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #fff7e6 0%, #ffe8c2 100%);
    padding: 20px;
}

#building-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#building-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    user-select: none;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Floor Hotspots */
.floor-hotspot {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: 5px;
    background: rgba(0, 212, 255, 0.05);
    z-index: 10;
}

.floor-hotspot:hover {
    background: rgba(0, 212, 255, 0.4);
    border-color: rgba(0, 212, 255, 1);
    box-shadow:
        0 0 30px rgba(0, 212, 255, 0.8),
        inset 0 0 25px rgba(0, 212, 255, 0.4);
    transform: scale(1.05);
    z-index: 20;
}

.hotspot-label {
    position: absolute;
    left: 105%;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(255, 247, 230, 0.98) 0%, rgba(255, 232, 194, 0.98) 100%);
    border: 2px solid #996900;
    color: #333333;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 20px rgba(153, 105, 0, 0.4);
    min-width: 200px;
    z-index: 1000;
}

.floor-hotspot:hover .hotspot-label {
    opacity: 1;
    left: 110%;
    box-shadow: 0 6px 30px rgba(153, 105, 0, 0.6);
}

.label-floor-name {
    color: #996900;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(153, 105, 0, 0.5);
}

.label-total-units {
    color: #996900;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(153, 105, 0, 0.3);
}

.label-breakdown {
    color: #996900;
    font-size: 11px;
    line-height: 1.5;
    font-weight: 400;
}

/* Amenity Hotspots */
.amenity-hotspot {
    position: absolute;
    transform: translateX(-50%);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    border-radius: 8px;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 15;
}

.amenity-hotspot.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.amenity-hotspot:hover {
    background: transparent;
    transform: translateX(-50%);
    z-index: 25;
}

.amenity-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(255, 247, 230, 0.98) 0%, rgba(255, 232, 194, 0.98) 100%);
    border: 2px solid #996900;
    color: #996900;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(153, 105, 0, 0.5);
    text-shadow: 0 0 10px rgba(153, 105, 0, 0.5);
    pointer-events: none;
}

.amenity-hotspot:hover .amenity-label {
    color: #cc8800;
    border-color: #cc8800;
    box-shadow: 0 4px 25px rgba(204, 136, 0, 0.7);
}

/* Panels */
#apartment-panel {
    position: fixed;
    right: -450px;
    top: 0;
    width: 450px;
    height: 100vh;
    background: rgba(255, 247, 230, 0.98);
    backdrop-filter: blur(20px);
    border-left: 2px solid rgba(153, 105, 0, 0.4);
    z-index: 200;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

#apartment-panel.active {
    right: 0;
}

.panel-header {
    padding: 30px;
    border-bottom: 2px solid rgba(153, 105, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.brand-header {
    text-align: center;
    margin-bottom: 10px;
}

.brand-azure {
    font-family: 'Times New Roman', Times, serif;
    font-size: 48px;
    font-weight: bold;
    color: #996900;
    letter-spacing: 8px;
    text-shadow: 0 0 20px rgba(153, 105, 0, 0.5);
    line-height: 1;
}

.brand-subtitle {
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    color: #996900;
    letter-spacing: 4px;
    margin-top: 5px;
    text-shadow: 0 0 10px rgba(153, 105, 0, 0.3);
}

.panel-header h2 {
    font-size: 24px;
    color: #996900;
    margin: 0;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(153, 105, 0, 0.5);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
}

.close-btn {
    background: none;
    border: none;
    color: #333333;
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.panel-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

/* Floor Plan Section */
.floor-plan-section {
    margin-bottom: 25px;
    background: rgba(153, 105, 0, 0.05);
    border: 1px solid rgba(153, 105, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
    overflow: hidden;
}

.floor-plan-section h3 {
    color: #996900;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.floor-plan-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.floor-plan-image:hover {
    transform: scale(1.02);
}

/* Floor Summary */
.floor-summary {
    background: linear-gradient(135deg, rgba(153, 105, 0, 0.15) 0%, rgba(153, 105, 0, 0.1) 100%);
    border: 1px solid rgba(153, 105, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.summary-label {
    color: #666666;
    font-size: 14px;
    font-weight: 500;
}

.summary-value {
    color: #996900;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(153, 105, 0, 0.5);
}

/* Apartment Cards */
.apartment-card {
    background: rgba(153, 105, 0, 0.05);
    border: 1px solid rgba(153, 105, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.apartment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.apartment-card:hover::before {
    left: 100%;
}

.apartment-card:hover {
    background: rgba(153, 105, 0, 0.15);
    border-color: #996900;
    transform: translateX(5px);
    box-shadow: -5px 5px 20px rgba(153, 105, 0, 0.4);
}

.apartment-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.apartment-card h3 {
    color: #996900;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    flex: 1;
    text-shadow: 0 0 10px rgba(153, 105, 0, 0.3);
}

.unit-count-badge {
    background: linear-gradient(135deg, #996900 0%, #cc8800 100%);
    color: #fff7e6;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 0 15px rgba(153, 105, 0, 0.5);
    text-shadow: none;
}

/* 2D Apartment Render */
.apartment-2d-render {
    width: 100%;
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(153, 105, 0, 0.02);
    border: 1px solid rgba(153, 105, 0, 0.15);
    position: relative;
    transition: all 0.3s ease;
}

.apartment-2d-render:hover {
    border-color: #996900;
    box-shadow: 0 0 20px rgba(153, 105, 0, 0.4);
}

.apartment-2d-render::after {
    content: '🔍 Click to enlarge';
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(153, 105, 0, 0.9);
    color: #fff7e6;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.apartment-2d-render:hover::after {
    opacity: 1;
}

.apartment-2d-render img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.apartment-card:hover .apartment-2d-render img {
    transform: scale(1.05);
}

.card-details {
    margin-bottom: 15px;
}

.card-details p {
    color: #555555;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.card-details strong {
    color: #333333;
    font-weight: 500;
}

.card-action {
    color: #996900;
    font-size: 13px;
    font-weight: 600;
    text-align: right;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.apartment-card:hover .card-action {
    opacity: 1;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
}

.modal-content {
    background: rgba(255, 247, 230, 0.98);
    border: 1px solid rgba(153, 105, 0, 0.3);
    border-radius: 15px;
    max-width: 1200px;
    max-height: 90vh;
    width: 90%;
    position: relative;
    overflow: hidden;
}

.modal-content.small {
    max-width: 500px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.golden-close {
    background: linear-gradient(135deg, #996900 0%, #cc8800 100%);
    color: #fff7e6;
    border: 2px solid #996900;
    box-shadow: 0 0 20px rgba(153, 105, 0, 0.6);
}

.golden-close:hover {
    background: linear-gradient(135deg, #cc8800 0%, #996900 100%);
    box-shadow: 0 0 30px rgba(204, 136, 0, 0.8);
    transform: rotate(90deg) scale(1.1);
}

.modal-body {
    padding: 40px;
    overflow-y: auto;
    max-height: 90vh;
    display: flex;
    gap: 40px;
}

.modal-content.small .modal-body {
    flex-direction: column;
}

/* Amenity Image Modal */
.amenity-modal-content {
    background: rgba(255, 247, 230, 0.98);
    border: 3px solid #996900;
    border-radius: 20px;
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    padding: 20px;
    box-shadow: 0 0 50px rgba(153, 105, 0, 0.5);
}

.amenity-modal-content img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Google Maps Modal */
.maps-modal-content {
    background: rgba(255, 247, 230, 0.98);
    border: 3px solid #996900;
    border-radius: 20px;
    max-width: 1000px;
    width: 90%;
    height: 80vh;
    padding: 20px;
    box-shadow: 0 0 50px rgba(153, 105, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.maps-modal-content .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.maps-modal-content iframe {
    flex: 1;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Gallery Modal */
.gallery-modal-content {
    background: rgba(255, 247, 230, 0.98);
    border: 3px solid #996900;
    border-radius: 20px;
    max-width: 1200px;
    width: 90%;
    max-height: 90vh;
    padding: 30px;
    box-shadow: 0 0 50px rgba(153, 105, 0, 0.5);
    overflow-y: auto;
}

.gallery-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 32px;
    font-weight: bold;
    color: #996900;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(153, 105, 0, 0.6);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding: 10px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(153, 105, 0, 0.3);
    background: rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: #996900;
    box-shadow: 0 0 30px rgba(153, 105, 0, 0.6);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-item-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255, 247, 230, 0.95), transparent);
    color: #996900;
    padding: 15px;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
}

/* Gallery */
.modal-gallery {
    flex: 2;
}

.gallery-main {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.thumbnail {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #00d4ff;
    transform: scale(1.05);
}

/* Modal Info */
.modal-info {
    flex: 1;
}

.modal-info h2 {
    color: #00d4ff;
    margin-bottom: 20px;
    font-size: 28px;
}

.apartment-specs {
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: #b0b0b0;
    font-size: 14px;
}

.spec-value {
    color: #333333;
    font-weight: bold;
    font-size: 14px;
}

.room-list {
    margin-bottom: 30px;
}

.room-list h3 {
    color: #00d4ff;
    margin-bottom: 15px;
    font-size: 18px;
}

.room-item {
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 14px;
}

.cta-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    border: none;
    border-radius: 10px;
    color: #333333;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Apartment Panel - Full Width on Mobile */
    #apartment-panel {
        width: 100%;
        right: -100%;
    }

    /* Modal - Stack Content Vertically */
    .modal-body {
        flex-direction: column;
        padding: 20px;
    }

    .modal-content {
        width: 95%;
        max-width: 95%;
        padding: 20px;
        margin: 10px;
    }

    /* Page Header - Top Left */
    .page-header {
        top: 15px;
        left: 15px;
    }

    .page-header .brand-azure {
        font-size: 24px;
        letter-spacing: 4px;
    }

    .page-header .brand-subtitle {
        font-size: 9px;
        letter-spacing: 2px;
    }

    /* Floor Hotspot Labels - Below Hotspot on Mobile */
    .hotspot-label {
        left: 50%;
        top: auto;
        bottom: -80px;
        transform: translateX(-50%);
        min-width: 180px;
        font-size: 10px;
        padding: 10px 12px;
    }

    .floor-hotspot:hover .hotspot-label {
        left: 50%;
        bottom: -85px;
    }

    .label-floor-name {
        font-size: 14px;
    }

    .label-total-units {
        font-size: 11px;
    }

    .label-breakdown {
        font-size: 9px;
    }

    /* Left Menu - Mobile */
    #left-menu {
        left: 10px;
        padding: 15px 10px;
        gap: 15px;
        border-radius: 15px;
    }

    .menu-item {
        padding: 8px 6px;
        min-width: 50px;
        gap: 5px;
    }

    .menu-icon {
        width: 24px;
        height: 24px;
    }

    .menu-label {
        font-size: 9px;
    }

    /* Amenity Labels - Mobile */
    .amenity-label {
        font-size: 10px;
        padding: 6px 12px;
    }

    /* Gallery Modal - Mobile */
    .gallery-modal-content {
        width: 95%;
        max-width: 95%;
        padding: 20px;
        max-height: 85vh;
    }

    .gallery-title {
        font-size: 24px;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item img {
        height: 200px;
    }

    /* Maps Modal - Mobile */
    .maps-modal-content {
        width: 95%;
        max-width: 95%;
        height: 80vh;
        padding: 15px;
    }

    /* Amenity Modal - Mobile */
    #amenity-modal .modal-content {
        width: 95%;
        max-width: 95%;
        padding: 15px;
    }

    #amenity-image {
        max-height: 70vh;
    }

    /* Contact Button - Mobile */
    #contact-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Brand Header in Panel - Mobile */
    .brand-azure {
        font-size: 36px;
        letter-spacing: 6px;
    }

    .brand-subtitle {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .panel-header h2 {
        font-size: 20px;
    }

    /* Apartment Cards - Mobile */
    .apartment-card {
        padding: 15px;
    }

    .apartment-card h3 {
        font-size: 18px;
    }

    .apartment-card p {
        font-size: 13px;
    }

    .view-details-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .page-header {
        top: 10px;
        left: 10px;
    }

    .page-header .brand-azure {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .page-header .brand-subtitle {
        font-size: 7px;
        letter-spacing: 1px;
    }

    #left-menu {
        left: 5px;
        padding: 10px 8px;
        gap: 10px;
    }

    .menu-item {
        padding: 6px 4px;
        min-width: 40px;
        gap: 3px;
    }

    .menu-icon {
        width: 20px;
        height: 20px;
    }

    .menu-label {
        font-size: 8px;
    }

    .gallery-title {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .brand-azure {
        font-size: 28px;
        letter-spacing: 4px;
    }

    .brand-subtitle {
        font-size: 9px;
        letter-spacing: 2px;
    }

    #contact-btn {
        padding: 10px 15px;
        font-size: 12px;
    }
}

