/* ==========================================================
   CONTACT PAGE
   ========================================================== */

.lsh-contact-page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.lsh-contact-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.60) 50%, rgba(0,0,0,.35) 100%);
}

.lsh-contact-page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 80px 0;
}

.lsh-contact-page-hero h1 {
    margin: 0 0 16px;
    font-size: 56px;
    color: #f2dfb6;
    font-weight: var(--lsh-hero-title-weight);
}

.lsh-contact-page-hero p {
    margin: 0 0 26px;
    color: #efe5d2;
    font-size: 18px;
}

/* ==========================================================
   GRID
   ========================================================== */

.lsh-contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* ==========================================================
   INFO
   ========================================================== */

.lsh-contact-page-intro {
    margin-bottom: 26px;
    color: var(--lsh-text-soft);
    font-size: 16px;
    line-height: 1.8;
}

.lsh-contact-page-details {
    border-radius: 24px;
}

.lsh-contact-page-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.lsh-contact-page-detail-item:last-child {
    border-bottom: none;
}

.lsh-contact-page-detail-item strong {
    color: var(--lsh-gold-soft);
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lsh-contact-page-detail-item span {
    color: var(--lsh-text);
    font-size: 16px;
}

.lsh-contact-page-actions {
    margin-top: 20px;
}

/* ==========================================================
   FORM
   ========================================================== */

.lsh-contact-page-form-wrap {
    height: 100%;
}

.lsh-contact-page-form {
    width: 100%;
}

/* κάνουμε normalize Contact Form 7 */

.lsh-contact-page-form input,
.lsh-contact-page-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: #0f0f0f;
    border: 1px solid var(--lsh-border);
    border-radius: 12px;
    color: var(--lsh-text);
    font-size: 14px;
    margin-bottom: 14px;
}

.lsh-contact-page-form textarea {
    min-height: 120px;
    resize: vertical;
}

.lsh-contact-page-form input:focus,
.lsh-contact-page-form textarea:focus {
    outline: none;
    border-color: var(--lsh-gold-soft);
}

.lsh-contact-page-form input[type="submit"] {
    background: linear-gradient(135deg, #f0d7a1 0%, var(--lsh-gold) 45%, var(--lsh-gold-deep) 100%);
    color: var(--lsh-button-text);
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s ease;
}

.lsh-contact-page-form input[type="submit"]:hover {
    transform: translateY(-2px);
}

/* ==========================================================
   MAP
   ========================================================== */

.lsh-contact-page-map-wrap {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--lsh-border);
}

.lsh-contact-page-map iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 991px) {
    .lsh-contact-page-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lsh-contact-page-hero h1 {
        font-size: 38px;
    }

    .lsh-contact-page-hero p {
        font-size: 16px;
    }

    .lsh-contact-page-map iframe {
        height: 300px;
    }
}