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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0c0a09 0%, #1c1917 50%, #292524 100%);
    min-height: 100vh;
    color: #fff;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 15px;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
    margin-bottom: 15px;
    flex-shrink: 0;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 5px;
    background: linear-gradient(90deg, #06b6d4, #8b5cf6, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 15px;
}

/* User Tabs */
.user-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.user-tab {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #94a3b8;
}

.user-tab:hover {
    background: rgba(255, 255, 255, 0.12);
}

.user-tab.active {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.user-tab[data-user="frankie"].active {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-color: #60a5fa;
}

.user-tab[data-user="reanne"].active {
    background: linear-gradient(135deg, #ec4899, #db2777);
    border-color: #f9a8d4;
}

.user-tab[data-user="lucas"].active {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: #6ee7b7;
}

.user-tab[data-user="luna"].active {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-color: #fbbf24;
}

.user-icon {
    font-size: 1.1rem;
}

.user-name {
    font-weight: 600;
}

.user-count {
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: bold;
    min-width: 24px;
    text-align: center;
}

.user-tab.active .user-count {
    background: rgba(255, 255, 255, 0.25);
}

.stats {
    background: rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

#visited-count {
    color: #4ade80;
    font-weight: bold;
    font-size: 1.2rem;
}

.main-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 20px;
    align-items: stretch;
    flex: 1;
    min-height: 0;
}

/* Map Container */
.map-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.map-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    cursor: grab;
}

.map-wrapper:active {
    cursor: grabbing;
}

#world-map {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.1s ease-out;
    transform-origin: center center;
}

/* Zoom Controls */
.zoom-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 100;
}

.zoom-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-btn:hover {
    background: rgba(0, 212, 255, 0.6);
}

.zoom-level {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 3px 0;
}

/* Map Dots */
.map-dot {
    cursor: pointer;
}

.map-dot circle.dot-outer {
    fill: #f472b6;
    opacity: 0.3;
    vector-effect: non-scaling-stroke;
}

.map-dot circle.dot-inner {
    fill: #f472b6;
    vector-effect: non-scaling-stroke;
}

.map-dot circle {
    vector-effect: non-scaling-stroke;
}

.place-label {
    fill: #ffffff;
    font-size: 10px;
    font-weight: 600;
    pointer-events: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.6);
    opacity: 0.9;
}

.label-connector {
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 1;
    pointer-events: none;
    stroke-dasharray: 2, 2;
}

.user-indicator {
    pointer-events: none;
    opacity: 0.9;
}

/* User-specific colors for visited dots */
.map-dot.visited-frankie circle.dot-outer {
    fill: #60a5fa;
}

.map-dot.visited-frankie circle.dot-inner {
    fill: #3b82f6;
}

.map-dot.visited-reanne circle.dot-outer {
    fill: #f9a8d4;
}

.map-dot.visited-reanne circle.dot-inner {
    fill: #ec4899;
}

.map-dot.visited-lucas circle.dot-outer {
    fill: #6ee7b7;
}

.map-dot.visited-lucas circle.dot-inner {
    fill: #10b981;
}

.map-dot.visited-luna circle.dot-outer {
    fill: #fbbf24;
}

.map-dot.visited-luna circle.dot-inner {
    fill: #f59e0b;
}

/* Default visited (fallback) */
.map-dot.visited circle.dot-outer {
    fill: #4ade80;
}

.map-dot.visited circle.dot-inner {
    fill: #4ade80;
}

.map-dot:not(.visited) circle.dot-outer {
    animation: pulse 2s ease-in-out infinite;
}

.map-dot:not(.visited) circle.dot-inner {
    animation: flash 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        r: 8;
        opacity: 0.3;
    }
    50% {
        r: 15;
        opacity: 0.1;
    }
}

@keyframes flash {
    0%, 100% {
        opacity: 1;
        r: 5;
    }
    50% {
        opacity: 0.5;
        r: 6;
    }
}

.map-dot:hover circle.dot-outer {
    r: 20 !important;
    opacity: 0.4 !important;
}

/* Tooltip */
.tooltip {
    position: absolute;
    background: rgba(15, 23, 42, 0.95);
    color: white;
    border-radius: 12px;
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 1000;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -100%);
    margin-top: -20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: tooltipFadeIn 0.2s ease;
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -90%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -100%);
    }
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: rgba(15, 23, 42, 0.95);
}

.tooltip-image {
    width: 220px;
    height: 140px;
    overflow: hidden;
}

.tooltip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tooltip-content {
    padding: 12px 15px;
}

.tooltip .place-name {
    font-weight: bold;
    color: #00d4ff;
    font-size: 1rem;
    margin-bottom: 4px;
}

.tooltip .place-country {
    color: #94a3b8;
    font-size: 0.85rem;
}

.tooltip .click-hint {
    color: #64748b;
    font-size: 0.75rem;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    opacity: 1;
}

.lightbox.closing {
    opacity: 0;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: rgba(15, 23, 42, 0.95);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox.closing .lightbox-content {
    transform: scale(0.9);
}

.lightbox-content img {
    display: block;
    max-width: 80vw;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-info {
    padding: 20px 25px;
    background: rgba(15, 23, 42, 0.95);
}

.lightbox-info h2 {
    color: #00d4ff;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.lightbox-info p {
    color: #94a3b8;
    font-size: 1rem;
}

/* Places Panel */
.places-panel {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    order: -1; /* Move to left side */
}

.search-box {
    margin-bottom: 15px;
}

.search-box input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-box input::placeholder {
    color: #64748b;
}

.search-box input:focus {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.3);
}

.filter-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.filter-btn.active {
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    color: #fff;
}

.places-list {
    list-style: none;
}

.place-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.place-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(-5px);
}

.place-item.visited {
    border-color: rgba(74, 222, 128, 0.3);
}

.place-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #64748b;
    border-radius: 6px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.place-item.visited .place-checkbox {
    background: #4ade80;
    border-color: #4ade80;
}

.place-checkbox::after {
    content: '✓';
    color: #fff;
    font-size: 14px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.place-item.visited .place-checkbox::after {
    opacity: 1;
    transform: scale(1);
}

.place-info {
    flex: 1;
}

.place-info h3 {
    font-size: 1rem;
    margin-bottom: 3px;
    color: #fff;
}

.place-info span {
    font-size: 0.85rem;
    color: #64748b;
}

.place-icon {
    font-size: 1.5rem;
    margin-left: 10px;
}

/* Scrollbar Styling */
.places-panel::-webkit-scrollbar {
    width: 8px;
}

.places-panel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.places-panel::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.places-panel::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

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

    .places-panel {
        max-height: 400px;
    }

    header h1 {
        font-size: 1.8rem;
    }
}

/* Hidden class for filtering */
.hidden {
    display: none !important;
}

/* ============================================
   ADMIN MODE STYLES
   ============================================ */

/* Admin Button */
.admin-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 15px;
    opacity: 0.5;
    transition: all 0.3s ease;
    vertical-align: middle;
}

.admin-btn:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* Admin Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: rgba(15, 23, 42, 0.95);
    padding: 30px 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    min-width: 320px;
}

.modal-content h2 {
    color: #00d4ff;
    margin-bottom: 20px;
    text-align: center;
}

.modal-content input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    margin-bottom: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.modal-content input[type="password"]:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.modal-buttons {
    display: flex;
    gap: 10px;
}

.btn-primary,
.btn-secondary {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.error-text {
    color: #f87171;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 10px;
}

/* Edit Toolbar */
.edit-toolbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.edit-mode-label {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.current-place {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.btn-tool {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-tool:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-tool.btn-danger {
    background: rgba(0, 0, 0, 0.3);
}

.btn-tool.btn-danger:hover {
    background: rgba(0, 0, 0, 0.5);
}

/* Edit Mode Body Offset */
body.edit-mode .container {
    margin-top: 60px;
}

/* Editable Dots */
.map-dot.editable {
    cursor: grab;
}

.map-dot.editable:active,
.map-dot.dragging {
    cursor: grabbing;
}

.map-dot.editable circle.dot-outer {
    fill: #fbbf24;
    animation: none !important;
}

.map-dot.editable circle.dot-inner {
    fill: #f59e0b;
    animation: none !important;
}

.map-dot.dragging circle.dot-outer {
    r: 20;
    opacity: 0.5;
}

.map-dot.dragging circle.dot-inner {
    r: 8;
}

/* Edit mode map container */
body.edit-mode .map-container {
    border: 3px dashed #f59e0b;
}

/* Add Place Button */
.btn-tool.btn-add {
    background: linear-gradient(135deg, #10b981, #059669);
}

.btn-tool.btn-add:hover {
    background: linear-gradient(135deg, #059669, #047857);
}

/* Place Form Modal */
.place-form-modal {
    min-width: 400px;
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #94a3b8;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.form-group input::placeholder {
    color: #64748b;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-delete {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-delete:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

/* Edit icon on list items in edit mode */
body.edit-mode .place-item {
    position: relative;
}

body.edit-mode .place-item::after {
    content: '✏️';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    opacity: 0.5;
}

body.edit-mode .place-item:hover::after {
    opacity: 1;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 10px;
        height: auto;
        min-height: 100vh;
    }

    header h1 {
        font-size: 1.4rem;
    }

    .subtitle {
        font-size: 0.85rem;
    }

    .user-tabs {
        gap: 6px;
    }

    .user-tab {
        padding: 6px 10px;
        font-size: 0.8rem;
        gap: 5px;
    }

    .user-icon {
        font-size: 0.9rem;
    }

    .user-name {
        display: none;
    }

    .user-count {
        padding: 2px 6px;
        font-size: 0.75rem;
    }

    .stats {
        padding: 6px 15px;
        font-size: 0.9rem;
    }

    .main-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .map-container {
        min-height: 300px;
        max-height: 50vh;
    }

    .places-panel {
        max-height: 40vh;
        border-radius: 15px;
        padding: 15px;
    }

    .filter-buttons {
        flex-wrap: wrap;
    }

    .filter-btn {
        flex: 1 1 auto;
        min-width: 80px;
        padding: 8px;
        font-size: 0.8rem;
    }

    .place-item {
        padding: 12px;
    }

    .place-info h3 {
        font-size: 0.9rem;
    }

    .place-icon {
        font-size: 1.2rem;
    }

    /* Tooltip on mobile */
    .tooltip {
        max-width: 90vw;
    }

    .tooltip-image {
        width: 180px;
        height: 120px;
    }

    /* Lightbox on mobile */
    .lightbox-content {
        max-width: 95vw;
        max-height: 85vh;
    }

    .lightbox-content img {
        max-width: 95vw;
        max-height: 60vh;
    }

    .lightbox-info {
        padding: 15px;
    }

    .lightbox-info h2 {
        font-size: 1.2rem;
    }

    /* Edit toolbar on mobile */
    .edit-toolbar {
        flex-wrap: wrap;
        padding: 10px 15px;
        gap: 10px;
    }

    .edit-mode-label {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .current-place {
        width: 100%;
        order: 3;
        font-size: 0.85rem;
    }

    .btn-tool {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    body.edit-mode .container {
        margin-top: 80px;
    }

    /* Zoom controls on mobile */
    .zoom-controls {
        bottom: 10px;
        right: 10px;
    }

    .zoom-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    /* Modal on mobile */
    .modal-content {
        margin: 15px;
        padding: 20px;
        min-width: auto;
        max-width: calc(100vw - 30px);
    }

    .place-form-modal {
        min-width: auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-buttons {
        flex-wrap: wrap;
    }

    .btn-primary,
    .btn-secondary,
    .btn-delete {
        flex: 1 1 100%;
        margin-bottom: 8px;
    }

    .btn-delete {
        order: -1;
    }
}

/* ============================================
   STATISTICS DASHBOARD STYLES
   ============================================ */

/* Stats Page Layout */
.stats-page {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.back-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-3px);
}

.stats-content-page {
    padding: 20px 0;
}

.stats-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Stats Modal */
.stats-modal {
    min-width: 700px;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
}

.stats-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.stats-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.stats-content {
    margin-top: 20px;
}

/* Overview Cards */
.stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #00d4ff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Stats Sections */
.stats-section {
    margin-bottom: 30px;
}

.stats-section h3 {
    color: #00d4ff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Chart Container */
.chart-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    max-height: 300px;
}

/* Family Stats */
.family-stat-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}

.family-stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.family-stat-value {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 15px;
}

.shared-places-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.place-badge {
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #00d4ff;
}

.empty-message {
    color: #64748b;
    font-style: italic;
    margin: 10px 0;
}

.family-progress-bar {
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    margin: 15px 0;
}

.family-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #7c3aed);
    transition: width 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    color: #fff;
    font-weight: bold;
}

/* Achievements */
#achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.achievement-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-badge.earned {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
}

.achievement-badge.locked {
    opacity: 0.4;
}

.achievement-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.achievement-name {
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.achievement-desc {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 10px;
}

.achievement-users {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.user-chip {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .stats-modal {
        min-width: auto;
        max-width: 95vw;
        padding: 20px;
    }

    .stats-overview {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-card {
        padding: 15px;
    }

    .stat-icon {
        font-size: 1.5rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    #achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .achievement-badge {
        padding: 15px;
    }

    .achievement-icon {
        font-size: 2rem;
    }

    .chart-container {
        padding: 15px;
        max-height: 250px;
    }
}

/* ============================================
   HAMBURGER MENU
   ============================================ */

.hamburger-menu {
    display: none;
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 2000;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(6, 182, 212, 0.5);
    border-radius: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    background: rgba(6, 182, 212, 0.2);
    border-color: #06b6d4;
}

.hamburger-menu span {
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   SIDEBAR NAVIGATION
   ============================================ */

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 250px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.sidebar-header {
    padding: 0 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    background: linear-gradient(90deg, #06b6d4, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sidebar-subtitle {
    font-size: 0.85rem;
    color: #94a3b8;
}

.sidebar-menu {
    flex: 1;
    padding: 20px 0;
}

/* Menu Groups (Collapsible) */
.menu-group {
    margin-bottom: 5px;
}

.menu-parent {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 12px;
}

.menu-parent:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.menu-arrow {
    margin-left: auto;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.menu-group.expanded .menu-arrow {
    transform: rotate(180deg);
}

.menu-children {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.menu-children.active,
.menu-group.expanded .menu-children {
    max-height: 500px;
}

.menu-child {
    display: flex;
    align-items: center;
    padding: 10px 20px 10px 52px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.menu-child:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding-left: 56px;
}

.menu-child.active {
    color: #06b6d4;
    background: rgba(6, 182, 212, 0.1);
    border-left: 3px solid #06b6d4;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 25px;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.menu-item:hover:not(.disabled) {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.menu-item.active {
    background: rgba(6, 182, 212, 0.15);
    color: #06b6d4;
    border-left: 3px solid #06b6d4;
}

.menu-item.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.menu-icon {
    font-size: 1.3rem;
}

.menu-label {
    flex: 1;
    font-weight: 500;
}

.coming-soon {
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
}

.sidebar-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.family-members {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.member {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
}

.main-wrapper {
    margin-left: 250px;
    min-height: 100vh;
}

/* ============================================
   WELCOME PAGE
   ============================================ */

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

.welcome-header {
    text-align: center;
    margin-bottom: 50px;
}

.welcome-title {
    font-size: 3rem;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #06b6d4, #8b5cf6, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.welcome-subtitle {
    font-size: 1.3rem;
    color: #94a3b8;
}

.welcome-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:not(.disabled):hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-5px);
}

.feature-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.feature-cta {
    color: #06b6d4;
    font-weight: 600;
    align-self: flex-start;
}

.feature-badge {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    align-self: flex-start;
}

.welcome-stats {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.welcome-stats h2 {
    color: #06b6d4;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.progress-summary {
    display: grid;
    gap: 20px;
}

.progress-item {
    display: grid;
    grid-template-columns: 100px 1fr 100px;
    align-items: center;
    gap: 15px;
}

.progress-label {
    font-weight: 600;
    color: #fff;
}

.progress-bar-mini {
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill-mini {
    height: 100%;
    transition: width 0.5s ease;
}

.progress-count {
    text-align: right;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Show hamburger menu */
    .hamburger-menu {
        display: flex;
    }

    /* Hide sidebar by default */
    .sidebar {
        transform: translateX(-100%);
        width: 250px;
        z-index: 1500;
    }

    /* Show sidebar when active */
    .sidebar.active {
        transform: translateX(0);
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
    }

    /* Show all labels when sidebar is open */
    .sidebar.active .menu-label,
    .sidebar.active .sidebar-subtitle,
    .sidebar.active .coming-soon {
        display: block;
    }

    /* Remove left margin from content */
    .main-wrapper {
        margin-left: 0;
    }

    /* Add backdrop when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1400;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .welcome-title {
        font-size: 2rem;
    }

    .welcome-subtitle {
        font-size: 1rem;
    }

    .progress-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .progress-count {
        text-align: left;
    }
}

/* ============================================
   COMPACT STATS PAGE LAYOUT
   ============================================ */

.stats-page-compact {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #06b6d4, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-overview-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.stat-card-mini {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-mini-label {
    font-size: 0.85rem;
    color: #94a3b8;
}

.stat-mini-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #06b6d4;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stats-section-compact {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
}

.stats-section-compact h3 {
    color: #06b6d4;
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-container-compact {
    background: transparent;
    padding: 10px;
    max-height: 280px;
}

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

@media (max-width: 768px) {
    .stats-overview-compact {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-page-compact {
        padding: 15px;
    }
}

/* ============================================
   PROPERTY PAGE STYLES
   ============================================ */

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

.property-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.property-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #06b6d4, #8b5cf6, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.property-location {
    font-size: 1.2rem;
    color: #06b6d4;
    margin-bottom: 8px;
}

.property-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

/* Hero Section */
.property-hero {
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
}

.hero-image-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(139, 92, 246, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Quick Info Cards */
.property-quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.info-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Property Sections */
.property-section {
    margin-bottom: 50px;
}

.property-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
    border-bottom: 2px solid rgba(6, 182, 212, 0.5);
    padding-bottom: 10px;
}

.property-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.amenity-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.amenity-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.amenity-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.amenity-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #06b6d4;
}

.amenity-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.filter-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 600;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: rgba(6, 182, 212, 0.2);
    border-color: #06b6d4;
    color: #06b6d4;
}

.filter-btn .count {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-left: 5px;
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 15px;
    font-weight: 600;
    text-align: center;
}

/* Accommodation Cards */
.accommodation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.accommodation-card {
    background: rgba(255, 255, 255, 0.06);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.accommodation-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #8b5cf6;
}

.accommodation-card p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

.accommodation-card li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.accommodation-card li:before {
    content: "✓ ";
    color: #10b981;
    font-weight: bold;
    margin-right: 8px;
}

/* Location & Contact */
.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.location-details h3,
.location-links h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #f59e0b;
}

.location-details p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.location-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.external-link {
    display: block;
    padding: 15px 20px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 8px;
    color: #06b6d4;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.external-link:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateX(5px);
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.benefit-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-category.highlight {
    background: rgba(6, 182, 212, 0.08);
    border-color: rgba(6, 182, 212, 0.3);
}

.benefit-category h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #06b6d4;
}

.benefit-category.highlight h3 {
    color: #f59e0b;
}

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

.benefit-category li {
    padding: 8px 0;
    padding-left: 25px;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.benefit-category li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.benefit-category.highlight li:before {
    content: "⭐";
}

.benefits-note {
    margin-top: 25px;
    padding: 20px;
    background: rgba(139, 92, 246, 0.1);
    border-left: 4px solid #8b5cf6;
    border-radius: 8px;
}

.benefits-note p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .property-container {
        padding: 15px;
    }

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

    .property-header h1 {
        font-size: 1.8rem;
    }

    .property-location {
        font-size: 1rem;
    }

    .hero-image-placeholder {
        height: 250px;
    }

    .property-quick-info {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-item {
        height: 180px;
    }

    .accommodation-cards {
        grid-template-columns: 1fr;
    }

    .location-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .property-section h2 {
        font-size: 1.5rem;
    }
}
