/* ==========================================================================
   CONTAINER 1: CONTACT HERO (92vh Height για απόλυτη συνοχή)
   ========================================================================== */
.contact-hero-section {
    position: relative; 
    height: 92vh; 
    min-height: 650px;
    background-image: url('../images/hero.contact.webp');
    background-size: cover; 
    background-position: center;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 0 24px;
}

.contact-hero-section::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 35%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    z-index: 2;
}

.contact-hero-content { position: relative; max-width: 700px; text-align: center; color: white; z-index: 5; }
.contact-hero-subtitle { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: #dfc49f; display: block; margin-bottom: 20px; }
.contact-hero-title { font-family: var(--font-heading); font-size: 52px; font-weight: 400; line-height: 1.15; margin-bottom: 24px; }
.contact-hero-description { font-size: 16px; line-height: 1.6; margin-bottom: 36px; opacity: 0.95; }

/* ==========================================================================
   SHARED DESIGN ELEMENTS
   ========================================================================== */
.section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--text-main);
    margin-bottom: 20px;
}

.section-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    display: block;
    margin-bottom: 12px;
}

/* ==========================================================================
   CONTAINER 2: CONTACT GRID SECTION (Pure White Background)
   ========================================================================== */
.contact-grid-section { background-color: white; padding: 120px 0; }
.contact-main-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 50px; margin-top: 50px; }

/* Custom Ασύμμετρες Γωνίες Καρτών βάσει του visual identity */
.card-corner-top-left { border-radius: 80px 12px 12px 12px; }
.card-corner-bottom-right { border-radius: 12px 12px 80px 12px; }
.card-corner-diagonal { border-radius: 80px 12px 80px 12px; }

/* Αριστερή Κάρτα: Πληροφορίες */
.contact-info-card {
    background-color: var(--bg-sand);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.01);
}

.info-block { display: flex; gap: 20px; align-items: flex-start; }
.info-block span { color: var(--color-primary); font-size: 26px; font-weight: 300; margin-top: 2px; }
.info-block h5 { font-family: var(--font-heading); font-size: 18px; color: var(--text-main); margin-bottom: 6px; font-weight: 400; }
.info-block p { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; }

/* Δεξιά Κάρτα: Φόρμα */
.contact-form-card {
    background-color: var(--surface-container-lowest);
    border: 1px solid rgba(0,0,0,0.04);
    padding: 60px 50px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.02);
}

.minimal-contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row-two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-main); }

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    background-color: rgba(0, 0, 0, 0.01);
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--text-main);
    border-radius: 4px;
    transition: border-color 0.3s, background-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: white;
}

/* Premium Κουμπί Αποστολής */
.contact-submit-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-primary);
    color: white;
    padding: 16px 36px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 69, 129, 0.15);
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    margin-top: 10px;
}

.contact-submit-btn span { font-size: 20px; transition: transform 0.3s; }
.contact-submit-btn:hover {
    background-color: #003360;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(0, 69, 129, 0.25);
}
.contact-submit-btn:hover span { transform: translateX(5px); }

/* ==========================================================================
   CONTAINER 3: INTERACTIVE MAP SECTION (Soft Sand Background)
   ========================================================================== */
.contact-map-section { background-color: var(--bg-sand); padding: 110px 0; }
.map-section-desc { font-size: 15px; color: var(--text-muted); line-height: 1.6; max-width: 500px; margin: 0; text-align: left; }

.map-wrapper {
    width: 100%;
    height: 480px;
    overflow: hidden;
    margin-top: 50px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.04);
}
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(1) contrast(1.05) opacity(0.9); /* Premium, μινιμαλιστικό φιλτράρισμα χάρτη */
    transition: filter 0.5s ease;
}
.map-wrapper:hover iframe {
    filter: grayscale(0.2) contrast(1) opacity(1);
}

/* ==========================================================================
   RESPONSIVE LAYOUT FOR CONTACT
   ========================================================================== */
@media (max-width: 1024px) {
    .contact-main-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-info-card { padding: 45px 30px; }
    .contact-form-card { padding: 45px 30px; }
    
    /* Reset γωνιών σε mobile */
    .card-corner-top-left, .card-corner-bottom-right, .card-corner-diagonal { border-radius: 16px; }
}

@media (max-width: 768px) {
    .contact-hero-title { font-size: 36px; }
    .section-title { font-size: 30px; }
    .form-row-two { grid-template-columns: 1fr; gap: 24px; }
    .map-wrapper { height: 350px; }
    .contact-submit-btn { width: 100%; justify-content: center; }
}