/* ═══════════════════════════════════════════════════════════
   APARTMENTS.CSS - CLEANED VERSION
   Only styles used in the current HTML
   ═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════
   1. MAGAZINE STYLE HERO GALLERY (PORTRAIT IMAGES)
   ═══════════════════════════════════════════════════════════ */

.hero-gallery-portrait {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 ίσες, επιβλητικές στήλες */
    gap: 20px;
    padding: 30px 5%;
    max-width: 1400px;
    margin: 0 auto;
    height: 65vh; /* Παίρνει το 65% της οθόνης - πολύ εντυπωσιακό */
    min-height: 500px;
    max-height: 700px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Απαλή σκιά */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.05); /* Απαλό, κινηματογραφικό zoom-in στο hover */
}

/* Σκοτεινό σβήσιμο στο κάτω μέρος της τελευταίας φωτογραφίας */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%; 
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 25px;
    pointer-events: none; /* Για να πιάνει το hover η φωτογραφία από πίσω */
}

/* Το κουμπί Airbnb Style */
.btn-view-gallery {
    background: #ffffff;
    color: var(--boho-dark, #1a1a1a);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    pointer-events: auto; /* Για να μπορεί να πατηθεί */
}

.btn-view-gallery:hover {
    background: #f4f1ed;
    transform: translateY(-2px);
}

/* ════ MOBILE SWIPE CAROUSEL (NATIVE APP FEEL) ════ */
@media (max-width: 992px) {
    .hero-gallery-portrait {
        display: flex; /* Το αλλάζουμε από grid σε flex για να σκρολάρει */
        overflow-x: auto;
        scroll-snap-type: x mandatory; /* Μαγκώνει τέλεια σε κάθε φωτογραφία */
        padding: 20px;
        gap: 15px;
        height: 500px; /* Σταθερό ύψος για τα κινητά */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Κρύβει την μπάρα στο Firefox */
    }
    
    .hero-gallery-portrait::-webkit-scrollbar {
        display: none; /* Κρύβει την μπάρα σε Chrome/Safari */
    }
    
    .gallery-item {
        flex: 0 0 85%; /* Κάθε φωτό πιάνει το 85% της οθόνης, ώστε να φαίνεται λίγο η επόμενη και να καταλάβει ο πελάτης ότι πρέπει να κάνει swipe! */
        scroll-snap-align: center;
    }
}

@media (max-width: 576px) {
    .hero-gallery-portrait {
        height: 420px; /* Λίγο πιο κοντό σε πολύ μικρά κινητά */
    }
}

/* ═══════════════════════════════════════════════════════════
   2. APARTMENT DETAILS LAYOUT
   ═══════════════════════════════════════════════════════════ */

.room-container {
    max-width: 1200px;
    margin: 40px auto 80px;
    /* Καταργήσαμε το grid του sidebar */
    display: block; 
    padding: 0 20px;
}

.room-main-info h1 { 
    margin: 15px 0; 
    line-height: 1.1; 
}

.room-section { 
    margin: 30px 0;
}

.room-section h3 {
    margin-bottom: 15px;
    border-bottom: 1px solid #d4a574;
    display: inline-block;
    padding-bottom: 5px;
}

.room-section p {
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 15px;
}

/* ═══════════════════════════════════════════════════════════
   3. APARTMENT HEADER
   ═══════════════════════════════════════════════════════════ */

.apartment-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.15);
}

.apt-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 165, 116, 0.1);
    color: #d4a574;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.apt-category-tag i {
    font-size: 0.85rem;
}

.apartment-header h1 {
    margin: 10px 0 15px;
}

/* Quick Info Bar */
.quick-info-bar {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.quick-info-bar span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.quick-info-bar span i {
    color: #d4a574;
    font-size: 1rem;
}

/* Description */
.description-section {
    margin: 30px 0;
}

.description-section p {
    margin-bottom: 12px;
}

/* Νέα διάταξη: Κείμενο αριστερά - Facilities δεξιά */
.description-and-facilities-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* 2 στήλες */
    gap: 50px;
    margin: 40px 0;
    align-items: start;
}

/* Προσαρμογή του υπάρχοντος Section 4 για να μπει στη στήλη */
.description-and-facilities-wrapper .facilities-section {
    margin: 0; /* Αφαιρούμε τα εξωτερικά περιθώρια */
}

.description-and-facilities-wrapper .facilities-columns {
    grid-template-columns: 1fr 1fr; /* 2 στήλες μέσα στο μικρό κουτί */
}

/* ═══════════════════════════════════════════════════════════
   4. POPULAR FACILITIES
   ═══════════════════════════════════════════════════════════ */

.facilities-section {
    margin: 35px 0;
    padding: 40px;
    background: #F4F1ED;
    border-radius: 8px;
    border: 1px solid rgba(212, 165, 116, 0.15);
}

.facilities-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--boho-dark);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #d4a574;
    padding-bottom: 10px;
    display: inline-block;
}

.facilities-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.facility-category {
    display: flex;
    align-items: center;
    gap: 12px;
}

.facility-cat-icon {
    color: #d4a574 !important; /* Εδώ είναι το Boho χρώμα σου! */
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

.facility-category span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem; /* Λίγο πιο μεγάλα γράμματα για να διαβάζονται ωραία */
    color: var(--text-gray);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   5. DETAILED AMENITIES - 3 COLUMN GRID
   ═══════════════════════════════════════════════════════════ */

.amenities-detailed {
    margin: 40px 0;
}

.amenities-detailed > h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--boho-dark);
    border-bottom: 2px solid #d4a574;
    padding-bottom: 10px;
}

.amenities-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.amenity-category-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(212, 165, 116, 0.15);
    transition: all 0.3s ease;
}

.amenity-category-card:hover {
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.1);
    transform: translateY(-2px);
}

.amenity-category-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--boho-dark);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.amenity-category-card h4 i {
    color: #d4a574;
    font-size: 1.1rem;
}

.amenity-category-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.amenity-category-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-gray);
    padding: 8px 0;
    line-height: 1.4;
}

.amenity-category-card ul li i {
    color: #28a745;
    font-size: 0.75rem;
    min-width: 14px;
}



/* ═══════════════════════════════════════════════════════════
   7. PREMIUM FIXED CALENDAR - CLEAN CSS VERSION
   ═══════════════════════════════════════════════════════════ */

.calendar-booking-section {
    margin: 80px 0;
    padding: 60px 0;
    border-top: 1px solid rgba(212, 165, 116, 0.1);
}

.calendar-header-main {
    text-align: center;
    margin-bottom: 50px;
}

.calendar-header-main .subtitle {
    color: #d4a574;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    display: block;
}

.calendar-header-main h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin-top: 10px;
    color: #1a1a1a;
}

.calendar-header-main .divider {
    width: 60px;
    height: 2px;
    background: #d4a574;
    margin: 20px auto;
}

.premium-calendar-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr; /* Δίνουμε περισσότερο χώρο (1.4) στο ημερολόγιο */
    gap: 60px; /* Πιο μεγάλη απόσταση ανάμεσα στο ημερολόγιο και τα κουμπιά */
    max-width: 1000px; /* Ανοίγουμε το συνολικό πλάτος για να αναπνέει */
    margin: 0 auto;
    padding: 50px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.08); /* Απαλή premium σκιά */
    border: 1px solid rgba(212, 165, 116, 0.15);
    align-items: center; /* Κεντράρισμα κάθετα */
}

/* Header Ημερολογίου (Μήνας - Βελάκια) */
.cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 10px;
}

.cal-nav-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #d4a574;
    cursor: pointer;
    transition: 0.3s;
}

.cal-nav-btn:hover:not(:disabled) {
    transform: scale(1.2);
}

.cal-nav-btn:disabled {
    color: #eee;
    pointer-events: none;
}

.cal-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--boho-dark);
}

/* ΔΙΟΡΘΩΣΗ ΓΙΑ ΤΗ ΛΙΣΤΑ ΜΗΝΩΝ ΠΟΥ ΦΑΙΝΕΤΑΙ ΣΤΗ ΦΩΤΟ */
.cal-dropdown-menu, .cal-list, .calendar-wrapper ul {
    display: none !important;
}

/* ΕΠΙΒΟΛΗ GRID ΣΤΙΣ ΗΜΕΡΟΜΗΝΙΕΣ */
.cal-grid {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important; /* 7 ΣΤΗΛΕΣ */
    gap: 10px !important;
    text-align: center;
}

.cal-day, .cal-day-label {
    aspect-ratio: 1/1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    border-radius: 50% !important;
    transition: 0.3s ease;
}

.cal-day {
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.cal-day-label {
    font-weight: 700;
    color: #d4a574;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.cal-day:hover:not(.empty):not(.disabled):not(.unavailable) {
    background: #f4f1ed !important;
    color: #d4a574 !important;
}

/* Μη διαθέσιμες ημερομηνίες και παρελθόν */
.cal-day.disabled, 
.cal-day.unavailable {
    color: #ccc !important;
    background: transparent !important;
    text-decoration: line-through;
    pointer-events: none; /* Δεν μπορεί να το πατήσει ο χρήστης */
    opacity: 0.5;
}

/* Επιλεγμένη ημερομηνία (Check-in / Check-out) */
.cal-day.selected {
    background: #d4a574 !important;
    color: white !important;
    box-shadow: 0 4px 10px rgba(212, 165, 116, 0.4);
    font-weight: bold;
}

/* Ενδιάμεσες ημερομηνίες (Range) */
.cal-day.range {
    background: rgba(212, 165, 116, 0.15) !important;
    color: #d4a574 !important;
    border-radius: 0 !important; /* Κάνει το ενδιάμεσο να φαίνεται σαν συνεχιζόμενη γραμμή */
}

.selection-card {
    background: transparent;
    padding: 0;
    border: none;
    position: static; /* Αφαίρεση του sticky */
}

/* Styling για το Label των Επισκεπτών ("Guests") */
.selection-row label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--boho-dark, #1a1a1a); /* Σκούρο ανθρακί για το κείμενο */
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Boho χρώμα ΜΟΝΟ στο εικονίδιο δίπλα στο Guests */
.selection-row label i {
    color: #d4a574; 
    font-size: 1.1rem;
}

.guest-stepper-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    margin-top: 10px;
}

.guest-stepper-premium button {
    border: none;
    background: none;
    cursor: pointer;
    color: #d4a574;
    font-size: 1rem;
}

/* Ο αριθμός των ατόμων μέσα στο stepper */
.guest-stepper-premium input {
    color: var(--boho-dark, #1a1a1a) !important;
    font-size: 1.1rem; /* Λίγο μεγαλύτερο για να διαβάζεται τέλεια */
}

.btn-whatsapp-premium {
    background: #25D366 !important;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 30px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    transition: 0.3s;
}

.btn-whatsapp-premium:hover {
    transform: translateY(-3px);
}

/* Απενεργοποιημένο WhatsApp Button μέχρι να διαλέξει ημερομηνίες */
.disabled-link {
    opacity: 0.5;
    pointer-events: none;
    filter: grayscale(100%);
}

/* Premium Trust Mark (Instagram Style) - Διακριτική Έκδοση */
.trust-mark-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Φέραμε πιο κοντά το εικονίδιο με το κείμενο */
    margin-top: 15px; /* Λιγότερο κενό από το κουμπί του WhatsApp */
    padding-top: 12px;
    border-top: 1px solid rgba(212, 165, 116, 0.2); /* Πολύ πιο αχνή, συνεχόμενη γραμμή */
}

/* Πολύ μικρότερο verified badge */
.trust-icon.verified-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px; /* Μικρύναμε αισθητά το πλάτος */
    height: 24px; /* Μικρύναμε αισθητά το ύψος */
    background: transparent; 
}

.trust-icon.verified-badge .fa-stack {
    font-size: 0.75rem; /* Διακριτικό μέγεθος στο σηματάκι */
}

.trust-mark-premium .trust-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.trust-mark-premium .trust-text strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem; /* Μικρύναμε τον τίτλο */
    font-weight: 600; /* Το κάναμε λιγότερο "βαρύ" (από 700 σε 600) */
    color: #444; /* Πιο μαλακό σκούρο γκρι αντί για μαύρο */
    letter-spacing: 0.3px;
    margin-bottom: 0px;
}

.trust-mark-premium .trust-text span {
    font-size: 0.65rem; /* Πολύ διακριτικό το μικρό κείμενο */
    color: #999; /* Πιο αχνό γκρι για να μην τραβάει το μάτι */
}

/* Το κάνουμε τέλειο στο κινητό (το ένα κάτω από το άλλο) */
@media (max-width: 768px) {
    .premium-calendar-container { 
        grid-template-columns: 1fr; 
        padding: 25px;
        gap: 30px;
        border-radius: 12px;
    }
}




/* ═══════════════════════════════════════════════════════════
   9. RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
    .amenities-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .room-container { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    
    .booking-sidebar { 
        position: relative; 
        top: 0; 
        order: 2; 
    }
    
    .room-main-info { 
        order: 1; 
    }
    
    .room-gallery-grid { 
        grid-template-columns: 1fr; 
        grid-template-rows: auto; 
        padding: 20px 5%; 
    }
    
    .main-img, .side-img-1, .side-img-2 { 
        grid-row: auto; 
        grid-column: auto; 
        height: 300px; 
    }
    
    .facilities-columns { 
        grid-template-columns: repeat(2, 1fr); 
    }
	
	.description-and-facilities-wrapper {
        grid-template-columns: 1fr; /* Στο κινητό το ένα κάτω από το άλλο */
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .quick-info-bar { 
        gap: 15px; 
    }
    
    .quick-info-bar span { 
        font-size: 0.85rem; 
    }
    
    .facilities-section { 
        padding: 20px; 
    }
    
    .amenities-grid-3col {
        grid-template-columns: 1fr;
    }
    
    .amenity-category-card { 
        padding: 20px; 
    }
    
    .carousel-header h2 { 
        font-size: 2.6rem; 
    }
    
    .slide-image-wrapper { 
        width: 480px; 
        height: 320px; 
        border-radius: 12px; 
    }
    
    .slide-info { 
        width: 480px; 
        margin-top: 20px; 
    }
    
    .nav-arrow { 
        width: 48px; 
        height: 48px; 
        font-size: 1.1rem; 
    }
    
    .nav-arrow.prev { left: 15px; }
    .nav-arrow.next { right: 15px; }
    
    .carousel-pagination { width: 240px; }
    .slide-title { font-size: 1.8rem; }
}

@media (max-width: 600px) {
    .facilities-columns { 
        grid-template-columns: 1fr; 
        gap: 15px; 
    }
    
    .slide-image-wrapper { 
        width: 380px; 
        height: 260px; 
    }
    
    .slide-info { 
        width: 380px; 
    }
    
    .slide-title { 
        font-size: 1.6rem; 
    }
}

@media (max-width: 576px) {
    .room-gallery-grid { 
        gap: 10px; 
    }
    
    .main-img, .side-img-1, .side-img-2 { 
        height: 250px; 
    }
    
    .room-main-info h1 { 
        font-size: 2.5rem; 
    }
    
    .apartment-header { 
        margin-bottom: 20px; 
    }
    
    .quick-info-bar { 
        flex-direction: column; 
        gap: 10px; 
    }
    
    .facilities-section { 
        padding: 15px; 
        margin: 25px -20px; 
        border-radius: 0; 
    }
    
    .amenity-category-card { 
        padding: 15px; 
        margin-bottom: 20px; 
    }
    
    .amenity-category-card h4 { 
        font-size: 0.95rem; 
    }
}

@media (max-width: 480px) {
    .slide-image-wrapper { 
        width: 320px; 
        height: 220px; 
        border-radius: 10px; 
    }
    
    .slide-info { 
        width: 320px; 
        margin-top: 18px; 
        gap: 15px; 
    }
    
    .carousel-header h2 { 
        font-size: 2rem; 
    }
    
    .nav-arrow { 
        width: 42px; 
        height: 42px; 
        font-size: 1rem; 
    }
    
    .nav-arrow.prev { left: 10px; }
    .nav-arrow.next { right: 10px; }
    
    .carousel-pagination { width: 200px; }
    .slide-title { font-size: 1.4rem; }
    .slide-number { font-size: 0.65rem; padding: 6px 12px; }
}







/* ═══════════════════════════════════════════════════════════
   CALENDAR & BOOKING IN MAIN FLOW
   ═══════════════════════════════════════════════════════════ */

.calendar-booking-section {
    margin: 50px 0;
    padding: 40px;
    background: #ffffff;
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 8px;
}

.calendar-booking-section h3 {
    font-size: 1.5rem;
    margin-bottom: 35px;
    color: var(--boho-dark);
    border-bottom: 2px solid #d4a574;
    padding-bottom: 10px;
}

.calendar-booking-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Calendar Block */
.calendar-block {
    display: flex;
    flex-direction: column;
}

.calendar-block label,
.guests-block label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--boho-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Guests Block */
.guests-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.guests-block .guest-stepper {
    margin-top: auto;
}

/* WhatsApp CTA Block */
.whatsapp-cta-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.btn-whatsapp-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25D366 !important;
    color: white !important;
    border: none !important;
    width: 100%;
    padding: 18px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-main:hover {
    background: #128C7E !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-cta-block .disclaimer {
    font-size: 0.7rem;
    color: #999;
    text-align: center;
    margin-top: 12px;
    font-style: italic;
}



/* ═══════════════════════════════════════════════════════════
   RESPONSIVE - CALENDAR IN FLOW
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .calendar-booking-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .whatsapp-cta-block {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .calendar-booking-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .calendar-booking-section {
        padding: 25px 20px;
    }
    
    .booking-card-simple {
        position: relative;
        top: 0;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .calendar-booking-section {
        padding: 20px 15px;
        margin: 30px -20px;
        border-radius: 0;
    }
    
    .price-info {
        padding: 20px 15px;
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    .contact-btn {
        padding: 12px 16px;
        font-size: 0.8rem;
    }
}















/* ═══════════════════════════════════════════════════════════
   PREMIUM LIGHTBOX GALLERY MODAL
   ═══════════════════════════════════════════════════════════ */
.premium-modal {
    display: none; /* Αρχικά είναι κρυφό */
    position: fixed;
    z-index: 99999; /* Για να είναι πάνω από όλα (και το header) */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.95); /* Σχεδόν μαύρο */
    backdrop-filter: blur(8px); /* Τέλειο θόλωμα στο φόντο */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 1;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
    user-select: none;
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s;
    line-height: 1;
}

.close-modal:hover {
    color: #d4a574;
}

/* ════ Κλειδωμένα Βελάκια στην Οθόνη ════ */
.modal-nav {
    position: fixed; /* ΑΥΤΟ ΕΙΝΑΙ ΤΟ ΜΥΣΤΙΚΟ: Κλειδώνει στην οθόνη, όχι στην εικόνα */
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100001; /* Φροντίζουμε να είναι πάντα πάνω από όλα */
}

.modal-nav:hover {
    background: #d4a574;
    border-color: #d4a574;
    transform: translateY(-50%) scale(1.1);
}

/* Τα καρφώνουμε αριστερά και δεξιά στην οθόνη */
.prev-img { left: 40px; }
.next-img { right: 40px; }

/* Ο μετρητής των φωτογραφιών (π.χ. 1 / 16) */
.modal-counter,
.modal-counter span {
    color: #ffffff !important; /* Το κάνουμε ολόλευκο! */
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    margin-top: 20px;
    font-size: 0.95rem; 
    font-weight: 600;
    opacity: 0.9;
    z-index: 100001;
}

/* Responsive για να μην βγαίνουν εκτός οθόνης στο κινητό */
@media (max-width: 900px) {
    .prev-img { left: 15px; }
    .next-img { right: 15px; }
    .close-modal { top: 15px; right: 20px; }
}


/* Disabled Button State (Faded + Unclickable) */
.step-btn.disabled {
    opacity: 0.2;       /* Very faint */
    cursor: not-allowed;
    pointer-events: none; /* Prevents clicking */
}

/* Dimmed Row State (When Children option is not available) */
.selection-row.dimmed {
    opacity: 0.4;
    transition: opacity 0.3s ease;
}