* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #333;
}

.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.lang-btn {
    background-color: #f5f5f5;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s;
}

.lang-btn:hover {
    background-color: #e0e0e0;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 0;
    right: 50px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 5px 10px;
    min-width: auto;
}

.lang-dropdown a {
    padding: 6px 8px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    transition: background-color 0.2s;
    border-radius: 4px;
}

.lang-dropdown a:hover {
    background-color: #24c6dc;
}

.language-switcher.open .lang-dropdown {
    display: flex;
    flex-direction: row;
}

/*----- Header ------*/
header {
    background: url('../images/hero.png') no-repeat center center/cover;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}
header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 16%);
    z-index: 0;
}
header .content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 1rem;
}
header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}
header p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
.booking-btn {
    padding: 0.8rem 1.5rem;
    background-color: #24c6dc;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 2rem;
}

.booking-btn:hover {
    background-color: #187d8a;
}

.booking-form {
    margin-top: 2rem;
    background-color: rgba(255, 255, 255, 0.9); /* πιο καθαρό */
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

input[type="datetime-local" i] {
    font-family: monospace;
    padding-inline-start: 1px;
    cursor: default;
}

.booking-departure {
    display: flex;
    gap: 1rem;
}

.schedule-departure {
    display: flex;
    flex-direction: row;
}

.schedule-departure-pickup {
    display: flex;
    flex-direction: column;
    margin-right: 15px;
}

.schedule-departure-pickup-location {
    margin-bottom: 15px;
}

.schedule-departure-dropoff {
    display: flex;
    flex-direction: column;
}

.schedule-departure-dropoff-location {
    margin-bottom: 15px;
}

.schedule-return {
    display: flex;
    flex-direction: row;
}

.schedule-return-pickup {
    display: flex;
    flex-direction: column;
    margin-right: 15px;
}

.schedule-return-pickup-location {
    margin-bottom: 15px;
}

.schedule-return-dropoff {
    display: flex;
    flex-direction: column;
}

.schedule-return-dropoff-location {
    margin-bottom: 15px;
}

.select-people-road {
    display: flex;
    gap: 2rem;
}

.select-people {
    display: flex;
    flex-direction: column;
}

.booking-form .return-form {
    display: flex; /* αντί για display: contents */
    gap: 1rem;
    min-width: 220px;
}

.booking-form input,
.booking-form select {
    padding: 0.8rem;
    width: 220px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #fff;
    color: #333;
    transition: border 0.3s ease, box-shadow 0.3s ease;
    height: fit-content;
}

.booking-form input:focus,
.booking-form select:focus {
    border-color: #24c6dc;
    box-shadow: 0 0 0 3px rgba(77, 131, 118, 0.23);
    outline: none;
}

.flatpickr-day.selected.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
    background: #24c6dc;
    box-shadow: none;
    color: #fff;
    border-color: #24c6dc;
}

.flatpickr-calendar .animate .open {
    top: 309.234px;
    left: 53.6094px;
    right: auto;
}

.transfer-type-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.radio-option {
    color: #333;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
}

.radio-option input[type="radio"] {
    accent-color: #24c6dc;
    cursor: pointer;
    width: fit-content;
    margin-right: 5px;
}

.trip-visual {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
}

.trip-visual.return {
    display: none;
}

.van-icon {
    width: 30px;
    height: auto;
}

.pin-icon {
    width: 11px;
    height: auto;
}

.van-icon.flipped {
    transform: scaleX(-1); /* Γυρνά το βανάκι ανάποδα */
}

.dashed-line {
    flex-grow: 1;
    height: 2px;
    border-bottom: 1px dashed #999;
    margin: 0 10px;
}
.dashed-divider {
    width: 97%;
    border-top: 1px dashed #999;
}


/*----- Services ------*/
.services-section {
    background-color: #f8f8f8;
    padding: 3rem 1rem;
    text-align: center;
}

.services-section .container {
    max-width: 800px;
    margin: auto;
}

.services-section h2 {
    margin-bottom: 1rem;
}

.services-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 1rem;
}

/*----- Section ------*/
.section {
    padding: 3rem 1rem;
    text-align: center;
}
.destinations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}
.destination-card {
    position: relative;
    height: 180px;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    border-radius: 10px;
    overflow: hidden;
}
.destination-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 0;
}
.destination-card span {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
}

.info-section {
    background-color: #ffffff;
    padding: 3rem 1rem;
}

.info-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.info-box {
    flex: 1 1 400px;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    justify-items: center;
}

.info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #222;
}

.info-box ul {
    list-style: none;
    padding-left: 0;
}

.info-box ul li {
    margin-bottom: 0.7rem;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
}

.info-box ul li::before {
    content: \"\\2713\"; /* checkmark */
    position: absolute;
    left: 0;
    color: #2a8f44;
    font-weight: bold;
}

.footer-alt {
    background-color: #1d1d1d;
    color: #ddd;
    font-size: 0.95rem;
    padding: 3rem 1rem 1rem;
}

.footer-alt-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
    justify-content: space-between;
}

.footer-box {
    flex: 1 1 250px;
}

.footer-box h4 {
    font-size: large;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 130px;
    margin-bottom: 1rem;
}

.footer-posts li {
    margin-bottom: 1rem;
    list-style: none;
}

.mail-tel {
    text-decoration: none;
    color: #dddddd;
}

.mail-tel:hover {
    color: #24c6dc;
}

.map-link {
    display:block;           /* πιάνει όλο το πλάτος */
    inline-size:100%;
    background:#24c6dc;
    color:#fff;
    text-decoration:none;
    text-align:center;
    border-radius:3px;
    cursor:pointer;
    padding:clamp(9px, 1.2vw, 8px) clamp(14px, 3vw, 24px);
}

.map-link:hover {
    filter:brightness(.95);
}
.map-link:focus {
    outline:2px solid #fff;
    outline-offset:2px;
}

.map-embed {
    /*position: relative;*/
    width: 100%;
    aspect-ratio:16/9;
    /*padding-bottom: 56.25%;  16:9 */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.map-embed iframe {
    /*position: absolute; inset: 0;*/
    width: 100%;
    height: 100%;
    /*border: 0;*/
    display:block;
}

.map-embed.map-dark{
    background:#0d0f12
}

.map-embed.map-dark iframe{
    filter: invert(90%) hue-rotate(180deg) saturate(80%) contrast(90%);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 10px;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 10px;
    top: 17px;
    transform: translateY(-50%);
    color: #888;
}

/* Ενιαίο styling για input + textarea */
.newsletter-form input,
.newsletter-form textarea {
    width: 100%;
    padding: 0.6rem 0.6rem 0.6rem 2.2rem; /* χώρος για το icon */
    border: none;
    background-color: #333;
    color: #fff;
    border-radius: 3px;
}

/* Λίγο διαφορετική στοίχιση του icon για textarea ώστε να κάθεται πάνω-αριστερά */
.input-icon.textarea i {
    top: 14px;
    transform: none;
}

/* Κουμπί */
.newsletter-form button {
    background-color: #24c6dc;
    color: white;
    padding: 0.6rem;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 3px;
}

/* Κρύψε το honeypot πεδίο */
.hp-field { display: none; }

.footer-bottom-alt {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #333;
    margin-top: 2rem;
    color: #888;
}

.my-msg {
    display:none;
    margin-top:4px;
    color:#b91c1c;
    font-size:.875rem;
}

@media (max-width: 770px){
    .booking-departure {
        display: flex;
        gap: 1rem;
        flex-direction: column;
    }
    .return-form {
        flex-direction: column;
    }
    .schedule-departure {
        display: flex;
    }
    .select-people-road {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .booking-form-transfer input,
    .booking-form-transfer select,
    .booking-form-transfer label {
        padding: 6px;
    }
    header {
        background-size: cover;
        background-position: 85% center;
    }

}

@media (max-width: 768px) {

    .footer-alt-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-box {
        text-align: center;
    }
    header {
        background-size: cover;
        background-position: 85% center;
    }
}

@media (max-width: 600px) {
    header h1 {
        font-size: 2rem;
        padding-top: 45px;
    }
    .booking-form {
        flex-direction: column;
        align-items: center;
    }
    .booking-form input,
    .booking-form select {
        width: 100%;
    }
    header {
        background-size: cover;
        background-position: 85% center;
    }
}

@media (max-width: 500px) {
    /* build 2025-08-18-12:15 */
    header h1 {
        padding-top: 45px;
    }

    .booking-form input,
    .booking-form select {
        width: 100%;
    }
    .return-form {
        width: 100%;
    }
    .booking-departure {
        display: flex;
        gap: 0.5rem;
        flex-direction: column;
        width: 100%;
    }
    .booking-departure-datetime{
        align-items: normal !important;
    }
    .booking-return-datetime {
        align-items: normal !important;
    }
    .return-form {
        display: flex;
        gap: 0.5rem;
        min-width: 220px;
    }
    .schedule-departure {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .schedule-return {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .schedule-departure-pickup {
        margin: 0;
    }
    .schedule-return-pickup {
        margin: 0;
    }
    .schedule-departure-dropoff-location {
        margin-bottom: 8px;
    }
    .schedule-departure-pickup-location {
        margin-bottom: 8px;
    }
    .schedule-return-dropoff-location {
        margin-bottom: 8px;
    }
    .schedule-return-pickup-location {
        margin-bottom: 8px;
    }
    header {
        background-size: cover;
        background-position: 85% center;
    }
}

@media (max-width: 380px) {
    header h1 {
        padding-top: 45px;
    }

    .booking-form input,
    .booking-form select {
        width: 100%;
    }
}