/* --- HERO SLIDER --- */
.hero-slider-section {
    position: relative;
    height: 85vh; /* Adjust height based on preference */
    min-height: 600px;
    background-color: #f0f0f0; /* Placeholder color */
    overflow: hidden;
    /* Important: Pull it up behind the header */
    margin-top: -85px; 
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slide styling */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out;
}

/* The Active slide shows */
.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Dark overlay on images to make text readable */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35); /* Slightly darker for better contrast */
    display: flex;
    align-items: center;
}

/* Slide Text Content */
.slide-content {
    color: #ffffff;
    padding-top: 80px; /* Push down slightly from header */
}

.slide-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 700px;
}

/* Gold separator line */
.separator-left-gold {
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin-bottom: 25px;
}

.slide-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* Gold Button */
.btn-gold {
    display: inline-block;
    background-color: var(--accent-gold);
    color: #ffffff;
    padding: 15px 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-gold:hover {
    background-color: var(--hover-gold);
    transform: translateY(-2px);
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2.5rem;
    cursor: pointer;
    padding: 20px;
    z-index: 10;
    transition: color 0.3s;
}

.slider-arrow:hover {
    color: var(--accent-gold);
}

.prev-arrow { left: 20px; }
.next-arrow { right: 20px; }


/* --- BOOKING BAR --- */
.booking-bar-section {
    position: relative;
    z-index: 100;
    margin-top: -60px; 
    padding-bottom: 40px;
}

.booking-bar-container {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: grid;
    /* Grid: [Dates (2 cols)] [Guests] [Apartment] [Button] */
    grid-template-columns: 2fr 1fr 1fr 1fr; 
    min-height: 120px;
    border-radius: 4px; /* Optional: Slight rounding */
    position: relative;
}

/* Date Group Wrapper (Wraps Check-in & Check-out) */
.booking-group.date-group {
    display: flex;
    position: relative; /* For calendar positioning */
}

/* Ensure items inside group share width */
.booking-group .booking-item {
    flex: 1;
}

/* Individual Item Styles */
.booking-item {
    padding: 20px 15px; 
    display: flex;
    align-items: center;
    border-right: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s;
    position: relative; /* Needed for absolute dropdowns */
}

.booking-item:not(.booking-btn-container):hover {
    background-color: #fcfcfc;
}

.booking-icon {
    font-size: 1.5rem; /* Slightly smaller icon */
    color: var(--accent-gold);
    margin-right: 15px;
}

.booking-details {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.booking-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.booking-value {
    font-size: 0.95rem;
    color: var(--light-text);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* Book Now Button Container */
.booking-btn-container {
    padding: 0;
    border-right: none;
}

.btn-book-now {
    width: 100%;
    height: 100%;
    background-color: var(--accent-gold);
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-book-now:hover {
    background-color: var(--hover-gold);
}


/* --- DROPDOWNS (Guests, Apartments & Calendar) --- */
.booking-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
    border-top: 3px solid var(--accent-gold); /* Matches Global Theme */
    padding: 20px;
    z-index: 200;
    display: none;
    cursor: default;
}

.booking-dropdown.active {
    display: block;
    animation: fadeIn 0.2s ease-in-out;
}

/* CALENDAR POPUP SPECIFIC */
.calendar-popup {
    width: 100%;
    min-width: 450px; /* Wider to fit your custom calendar design */
    padding: 10px;
}

/* --- YOUR CUSTOM APARTMENT CALENDAR STYLE (Premium Ported to Home) --- */

/* Wrapper */
.calendar-wrapper {
    background: #fff;
    border: none; 
    box-shadow: none;
    padding: 10px;
    font-family: 'Montserrat', 'Open Sans', sans-serif; /* Prioritizing Premium Font */
    user-select: none;
    position: relative;
    width: 100%;
}

/* 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: var(--accent-gold); 
    cursor: pointer;
    padding: 5px 10px;
    transition: 0.3s ease;
}

.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-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-text);
    cursor: pointer;
    position: relative;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.3s;
}

.cal-title:hover {
    background: #f9f9f9;
}

.cal-title::after {
    content: '\25BC';
    font-size: 0.6rem;
    margin-left: 8px;
    color: var(--accent-gold);
    vertical-align: middle;
}

/* --- CALENDAR DROPDOWN (Month/Year Selection) --- */
.cal-dropdown-menu {
    position: absolute;
    top: 50px; 
    left: 50%;
    transform: translateX(-50%);
    width: 280px; 
    height: 250px;
    background: #ffffff;
    z-index: 50;
    display: none; 
    grid-template-columns: 1fr 1fr; 
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    overflow: hidden;
}

.cal-dropdown-menu.active {
    display: grid;
}

/* Scrollable Lists */
.cal-list {
    list-style: none;
    max-height: 100%;
    overflow-y: auto;
    padding: 0;
    margin: 0;
}

.cal-list:first-child {
    border-right: 1px solid #f0f0f0;
}

.cal-list li {
    padding: 10px;
    cursor: pointer;
    text-align: center;
    font-size: 0.9rem;
    color: var(--primary-text);
    transition: all 0.2s;
    border-bottom: 1px solid #fafafa;
}

.cal-list li:hover {
    background-color: #f9f9f9;
    color: var(--accent-gold);
}

.cal-list li.current {
    font-weight: 700;
    color: var(--accent-gold);
    background-color: #fff;
}

/* Grid - IMPORTED PREMIUM STYLES */
.cal-grid {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important; /* 7 Columns */
    gap: 10px !important;
    text-align: center;
}

/* Day Cells & Labels - IMPORTED PREMIUM STYLES */
.cal-day, .cal-day-label {
    aspect-ratio: 1/1; /* Makes them perfect circles */
    height: auto; /* Overriding previous fixed height */
    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;
    color: var(--primary-text);
}

.cal-day-label {
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 0; /* Overriding previous margin */
}

.cal-day:hover:not(.empty):not(.disabled):not(.unavailable) {
    background: #f4f1ed !important;
    color: var(--accent-gold) !important;
}

/* Disabled & Unavailable Dates */
.cal-day.disabled, 
.cal-day.unavailable {
    color: #ccc !important;
    background: transparent !important;
    text-decoration: line-through;
    pointer-events: none;
    opacity: 0.5;
}

/* Selected Dates (Check-in / Check-out) */
.cal-day.selected {
    background: var(--accent-gold) !important;
    color: white !important;
    box-shadow: 0 4px 10px rgba(212, 165, 116, 0.4); /* Premium Shadow */
    font-weight: bold;
}

/* Overriding the square corners for start/end in premium circular design */
.cal-day.selected.start,
.cal-day.selected.end {
    border-radius: 50% !important; 
}

/* Range (Dates in between) */
.cal-day.range {
    background: rgba(212, 165, 116, 0.15) !important; /* Soft Boho background */
    color: var(--accent-gold) !important;
    border-radius: 0 !important; /* Connects the circles visually */
    opacity: 1;
}


/* --- GUEST STEPPER STYLE (Matches your Apartment Page) --- */
.guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
}

.guest-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.guest-label-group {
    display: flex;
    flex-direction: column;
}

.g-type {
    font-weight: 600;
    color: var(--primary-text);
    font-size: 1rem;
}

.g-age {
    font-size: 0.8rem;
    color: #999;
    margin-top: 3px;
}

.guest-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 5px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    min-width: 120px;
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--accent-gold);
    background: transparent;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
}

.step-circle:hover {
    background: var(--accent-gold);
    color: white;
}

.step-num {
    font-weight: 600;
    font-size: 1rem;
    width: 30px;
    text-align: center;
    color: var(--primary-text);
}

.guest-footer {
    margin-top: 20px;
    text-align: right;
}

.btn-guest-done {
    background: none;
    border: none;
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    cursor: pointer;
}

/* --- APARTMENT LIST --- */
.apt-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.apt-list li {
    padding: 12px 10px;
    border-bottom: 1px solid #f9f9f9;
    cursor: pointer;
    transition: background 0.2s;
}

.apt-list li:last-child {
    border-bottom: none;
}

.apt-list li:hover {
    background-color: #fcfcfc;
}

.apt-list li .apt-name {
    display: block;
    font-weight: 600;
    color: var(--primary-text);
    font-size: 0.95rem;
}

.apt-list li .apt-desc {
    display: block;
    font-size: 0.75rem;
    color: #999;
    margin-top: 2px;
}

.apt-list li.disabled {
    opacity: 0.5;
    pointer-events: none;
    background-color: #f9f9f9;
    cursor: not-allowed;
}

.apt-list li.disabled .apt-name {
    text-decoration: line-through;
    color: #999;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* --- APARTMENT UNAVAILABILITY MESSAGE --- */
.apt-error {
    display: block;
    font-size: 0.75rem;
    color: #e74c3c; /* Alert Red */
    margin-top: 4px;
    font-weight: 600;
    font-style: italic;
}

/* Adjust the disabled state so the red text is still readable */
.apt-list li.disabled {
    opacity: 0.7; /* Less faded so we can read the error */
    cursor: not-allowed;
    background-color: #f9f9f9;
}

.apt-list li.disabled .apt-name,
.apt-list li.disabled .apt-desc {
    opacity: 0.5; /* Fade the name/desc, but keep error bright */
    text-decoration: none; /* Remove strikethrough to keep it clean, or keep it if you prefer */
}

/* --- Reset Button Style --- */
.btn-reset {
    background: none;
    border: none;
    color: #999; /* Grey text */
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: underline;
}

.btn-reset:hover {
    color: #e74c3c; /* Red on hover */
}

/* Update guest footer to allow flex spacing (already inline-styled in HTML, but good to have here) */
.guest-footer {
    display: flex;
    justify-content: space-between; /* Pushes Reset to left, Done to right */
    align-items: center;
    margin-top: 20px;
}




/* =========================================
   MOBILE OPTIMIZATIONS (Max-width: 768px)
   ========================================= */

@media (max-width: 768px) {

    /* 1. RESET LAYOUT & HERO OVERLAP */
    .booking-bar-section {
        margin-top: 0; /* Remove the negative margin overlap */
        padding: 0;    /* Remove padding to flush with edges */
        background: #f4f1ed; /* Match body bg to look seamless */
    }

    .booking-bar-container {
        display: flex;
        flex-direction: column; /* Stack items vertically */
        height: auto;
        box-shadow: none;
        border-radius: 0;
        border-top: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
    }

    /* 2. DATES ROW (Keep Check-in/out side-by-side) */
    .booking-group.date-group {
        display: flex;
        flex-direction: row; /* Force side-by-side */
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
    }

    .booking-group.date-group .booking-item {
        flex: 1; /* Each takes 50% */
        border-right: 1px solid #e0e0e0;
        border-bottom: none;
        padding: 15px 10px; /* Slightly tighter padding */
    }

    .booking-group.date-group .booking-item:last-child {
        border-right: none;
    }

    /* 3. GUESTS & APARTMENT (Full Width Rows) */
    .booking-item {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 20px; /* Larger touch target */
    }

    /* Hide the border of the last item before the button */
    .booking-item:nth-last-child(2) {
        border-bottom: none;
    }

    /* 4. BUTTON (Big & Bold) */
    .booking-btn-container {
        width: 100%;
        height: 80px; /* Taller for easier tapping */
    }

    /* 5. MOBILE MODALS (Transform Dropdowns into Popups) */
    .booking-dropdown {
        position: fixed; /* Detach from the bar */
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%); /* Center perfectly */
        
        width: 90%; /* 90% of screen width */
        max-width: 380px; /* Don't get too wide on tablets */
        max-height: 85vh; /* Prevent overflowing screen height */
        
        border-radius: 12px;
        box-shadow: 0 10px 50px rgba(0,0,0,0.3); /* Deep shadow */
        z-index: 9999; /* Ensure it's on top of everything */
        overflow-y: auto; /* Allow scrolling inside if needed */
        
        /* THE "DARK BACKDROP" TRICK */
        /* This creates a dark overlay behind the popup using shadow */
        box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.6); 
    }

    /* 6. CALENDAR ADJUSTMENTS FOR MOBILE */
    .calendar-popup {
        min-width: auto; /* Remove the rigid 450px width */
        width: 95vw; /* Almost full width */
        padding: 5px;
    }

    .calendar-wrapper {
        padding: 10px 5px; /* Reduce internal padding */
    }

    .cal-day {
        height: 38px; /* Slightly smaller squares */
        font-size: 0.9rem;
    }

    .cal-header {
        margin-bottom: 15px;
    }

    .cal-nav-btn {
        padding: 10px 20px; /* Bigger touch targets for arrows */
    }

    /* 7. HERO SLIDER ADJUSTMENTS */
    .hero-slider-section {
        height: 60vh; /* Shorter hero on mobile */
        min-height: 400px;
    }

    .slide-content h1 {
        font-size: 2.5rem; /* Smaller title */
        padding: 0 15px;
    }
    
    .slide-content p {
        font-size: 1rem;
        padding: 0 15px;
    }
}


/* =========================================
   NEW SECTIONS: APARTMENTS & FACILITIES
   ========================================= */

/* --- SHARED SECTION STYLES --- */
.apartments-preview-section,
.facilities-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.facilities-section {
    background-color: #faf9f7; /* Very subtle difference for separation */
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--primary-text);
    margin-bottom: 15px;
}

.separator-center-gold {
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 0 auto 25px;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.8;
}

/* --- APARTMENTS GRID --- */
.apartments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.apt-preview-card {
    position: relative;
    background: #fff;
    overflow: hidden;
    height: auto;
    border-radius: 4px;
}

.apt-img-container {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 4px;
}

.apt-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.apt-preview-card:hover .apt-img-container img {
    transform: scale(1.05);
}

/* Overlay Title (Bottom Left) */
.apt-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    pointer-events: none;
    z-index: 2;
}

.apt-title-overlay {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 500;
    font-family: 'Cormorant Garamond', serif; /* Matching your headings */
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Details Button (Bottom Right - Replaces Price) */
.btn-apt-details-corner {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    
    background-color: var(--accent-gold);
    color: #ffffff;
    
    padding: 10px 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-apt-details-corner:hover {
    background-color: var(--hover-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .apartments-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .apt-img-container {
        height: 280px;
    }
    .apt-title-overlay {
        font-size: 1.2rem;
    }
    .btn-apt-details-corner {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

/* --- FACILITIES GRID --- */
.facilities-grid-home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.facility-item-home {
    padding: 20px;
}

.icon-box {
    font-size: 2.5rem;
    color: #c5a065; /* Icon Gold Color */
    margin-bottom: 20px;
}

.facility-item-home h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--primary-text);
}

.facility-item-home p {
    font-size: 0.9rem;
    color: var(--light-text);
    line-height: 1.6;
}

/* =========================================
   MOBILE RESPONSIVENESS (Add to existing media queries)
   ========================================= */

@media (max-width: 992px) {
    .apartments-grid {
        grid-template-columns: 1fr; /* Stack apartments */
        gap: 60px;
    }
    
    .facilities-grid-home {
        grid-template-columns: repeat(2, 1fr); /* 2x2 Grid */
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .facilities-grid-home {
        grid-template-columns: 1fr; /* Stack facilities */
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .apt-img-container {
        height: 280px;
    }
    
    .apt-title-overlay {
        font-size: 1.2rem;
    }
}







/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS (GOOGLE REVIEWS) - FINAL OPTIMIZED
   ═══════════════════════════════════════════════════════════ */
.testimonials-section {
    padding: 100px 0;
    background-color: #faf9f7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    align-items: stretch; /* Κρίσιμο: Αναγκάζει όλες τις κάρτες να έχουν το ίδιο ύψος */
}

.testimonial-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%; /* Γεμίζει το ύψος του grid */
	transition: transform 0.5s ease-out, box-shadow 0.5s ease-out;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.reviewer-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--accent-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-meta {
    text-align: left;
}

.reviewer-name {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-text);
    margin-bottom: 2px;
}

.testimonial-card .stars {
    color: #f1c40f;
    font-size: 0.8rem;
    display: flex;
    gap: 2px;
}

.review-text {
    font-style: italic;
    color: var(--light-text);
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: left;
    margin-bottom: 20px;
    flex-grow: 1; /* Κάνει το κείμενο να "σπρώχνει" την ημερομηνία στο κάτω μέρος */
}

.review-date {
    display: block;
    font-size: 0.8rem;
    color: #b0b0b0;
    margin-top: auto; /* Κλειδώνει την ημερομηνία τέρμα κάτω στην κάρτα */
    text-align: left;
}

/* Google Trust Badge (Bottom) */
.google-badge-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #edebe8;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-text);
}

.stars-mini {
    color: #f1c40f;
    font-size: 1rem;
    display: flex;
    gap: 3px;
}

.rating-count {
    color: #888;
    font-size: 0.9rem;
}

.google-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.google-btn:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-color: #4285F4;
}

.google-btn img {
    height: 18px;
    width: 18px;
    display: block;
    object-fit: contain;
}

.google-btn span {
    font-weight: 600;
    color: #5f6368;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card { padding: 30px; }
    .testimonials-section { padding: 70px 0; }
}






/* =========================================
   AMMITIS BEACH SECTION
   ========================================= */
.ammitis-beach-section {
    padding: 80px 20px;
    background-color: #fcfbf9; /* Ένα πολύ απαλό, ζεστό χρώμα για φόντο */
}

.beach-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.beach-text {
    flex: 1;
}

.beach-text .subtitle {
    color: #d4a574;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.beach-text h2 {
    font-size: 32px;
    font-weight: 400;
    color: var(--primary-text);
    margin-bottom: 20px;
}

.beach-text p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.beach-image-wrapper {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1); /* Απαλή σκιά */
}

.beach-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease; /* Ωραίο εφέ όταν πάει το ποντίκι πάνω */
}

.beach-image-wrapper:hover img {
    transform: scale(1.05); /* Ζουμάρει ελαφρώς */
}

/* Για κινητά και tablet */
@media (max-width: 768px) {
    .beach-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .beach-text .separator-left {
        margin: 0 auto 20px auto; /* Κεντράρει τη γραμμή στο κινητό */
    }
}