﻿/* Sidebar Map Center & Grayscale */
.side-map-center {
    display: flex;
    margin-bottom: 15px;
}

.grayscale-map {
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.grayscale-map:hover {
    filter: grayscale(0%);
}

/* Messaging Buttons (Gray Style) */
.messaging-links {
    display: flex;
    gap: 12px;
    margin: 15px 0;
}

.msg-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #333; /* Σκούρο γκρι */
    color: #999 !important; /* Γκρι κείμενο/icon */
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
    border: 1px solid #444;
    transition: all 0.3s ease;
}

.msg-btn svg { transition: transform 0.3s; }

/* Container για το δίστηλο */
.contact-grid-container {
    display: flex;
    flex-wrap: wrap; /* Επιτρέπει το σπάσιμο σε mobile */
    gap: 30px;
    align-items: flex-start;
    margin: 20px 0;
}

/* Στήλη Κουμπιών */
.column-messaging {
    flex: 0 0 200px; /* Σταθερό πλάτος στο desktop */
}

.messaging-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Στήλη Φόρμας */
.column-form {
    flex: 1; /* Παίρνει τον υπόλοιπο χώρο */
    min-width: 280px;
}

/* Messaging Buttons (Gray Style) */
.msg-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: #333;
    color: #999 !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
    border: 1px solid #444;
    transition: all 0.3s ease;
}

/* Hover Colors */
.msg-btn.whatsapp:hover { background: #25D366; color: #fff !important; border-color: #25D366; }
.msg-btn.viber:hover { background: #7360F2; color: #fff !important; border-color: #7360F2; }

/* Submit Button Right & Gray */
.submit-btn.btn-right {
    display: block;
    margin-left: auto;
    background: #333;
    color: #999;
    border: 1px solid #444;
    padding: 10px 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.submit-btn.btn-right:hover {
    background: #3b265a;
    color: #fff;
    border-color: #3b265a;
}

/* Mobile Adjustments */
@media screen and (max-width: 600px) {
    .contact-grid-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .column-messaging, .column-form {
        flex: 1 1 100%;
        width: 100%;
    }

    .messaging-links-vertical {
        flex-direction: row; /* Στο κινητό τα κουμπιά μπαίνουν δίπλα-δίπλα */
    }
    
    .msg-btn {
        flex: 1;
    }
}

/* Weather Widget Grayscale */
.weather-iframe {
    width: 100%;
    height: 520px;
    border: none;
    filter: grayscale(90%);
    border-radius: 8px;
}











/* Layout Σειράς */
.form-row {
    display: flex;
    gap: 15px; /* Απόσταση μεταξύ Name και Email */
    margin-bottom: 15px;
}

.flex-fill {
    flex: 1; /* Μοιράζει το χώρο 50-50 */
}

/* Styling των Inputs */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #f4f4f4; /* Ανοιχτό γκρι όπως στη φωτό */
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
}

/* Hover & Focus εφέ */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #3b265a; /* Το μωβ της Ministry */
    background-color: #fff;
}

/* Placeholder Styling */
.contact-form ::placeholder {
    color: #999;
    opacity: 1;
}

.captcha-wrapper {
    margin-bottom: 15px;
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end; /* Για να στοιχιστεί δεξιά πάνω από το κουμπί */
}

/* Κουμπί Αποστολή */
.form-actions {
    display: flex;
    justify-content: flex-end; /* Σπρώχνει το κουμπί τέρμα δεξιά */
    margin-top: 10px;
}

.submit-btn.btn-right {
    background-color: #444; /* Σκούρο γκρι αρχικά */
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.submit-btn.btn-right:hover {
    background-color: #3b265a; /* Μωβ στο hover */
}

/* Mobile: Σπάσιμο σε μία στήλη */
@media screen and (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}


/* Styling για το Popup ώστε να ταιριάζει με το sidebar */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Πιο σκούρο overlay για έμφαση */
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px); /* Εφέ θολώματος στο παρασκήνιο */
}

.popup-content {
    background: #f4f4f4; /* Το ανοιχτό γκρι της φόρμας σου */
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 1px solid #ddd;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.popup-icon {
    font-size: 60px;
    margin-bottom: 20px;
    /* Χρώμα που ταιριάζει με το "Viber" ή το "WhatsApp" στο hover */
}

.popup-content h2 { 
    color: #3b265a; /* Το μωβ της εταιρείας */
    font-size: 24px;
    margin-bottom: 10px;
}

.popup-content p { 
    color: #555; 
    font-size: 15px;
    line-height: 1.5;
}

.popup-btn {
    background: #444; /* Γκρι κουμπί όπως το αρχικό Submit */
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 25px;
    transition: background 0.3s;
}

.popup-btn:hover { 
    background: #3b265a; /* Μωβ στο hover για ομοιομορφία */
}