/* ══════════════════════════════════════════
   CONTACT PAGE STYLES — contact.css (GROUNDED & PROFESSIONAL)
   ══════════════════════════════════════════ */

.contact-page-wrapper {
    background-color: #ffffff;
    padding: 2vw 0;
}

.contact-main-section {
    padding-bottom: 2vw;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5vw;
    align-items: start;
}

/* ── Contact Info Column ── */
.info-header {
    margin-bottom: 3vw;
    border-bottom: 2px solid var(--theme-accent);
    display: inline-block;
    padding-bottom: 1vw;
}

.info-subtitle {
    display: block;
    font-size: 1.1vw;
    font-weight: 700;
    color: var(--theme-accent);
    text-transform: uppercase;
    letter-spacing: 0.2vw;
    margin-bottom: 0.8vw;
}

.info-title {
    font-family: 'Marcellus', serif;
    font-size: 3.5vw;
    color: var(--theme-primary);
    margin: 0;
    font-weight: 400;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 2vw;
    margin-top: 2vw;
}

.info-card {
    display: flex;
    gap: 1.5vw;
    align-items: center;
    padding: 1.5vw;
    background: #fcfcfc;
    border: 1px solid #eeeeee;
}

.info-icon {
    width: 3vw;
    height: 3vw;
    color: var(--theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 1.5vw;
    height: 1.5vw;
}

.info-details h3 {
    font-size: 0.8vw;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 0.3vw;
    font-weight: 700;
}

.info-details a,
.info-details p {
    font-size: 1.1vw;
    color: var(--theme-primary);
    font-weight: 600;
    margin: 0;
}

.info-details a:hover {
    color: var(--theme-accent);
}

/* ── Contact Form Column ── */
.form-wrapper {
    background: #ffffff;
    padding: 3.5vw;
    border: 1px solid #eeeeee;
}

.form-title {
    font-family: 'Marcellus', serif;
    font-size: 2vw;
    color: var(--theme-primary);
    margin-bottom: 2.5vw;
    font-weight: 400;
    border-left: 5px solid var(--theme-accent);
    padding-left: 1.5vw;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5vw;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
}

.form-group label {
    font-size: 0.85vw;
    font-weight: 700;
    color: var(--theme-primary);
}

.form-group input,
.form-group textarea {
    padding: 1vw;
    border: 1px solid #dddddd;
    font-family: inherit;
    font-size: 1vw;
    transition: border-color 0.3s;
    background: #ffffff;
}

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

.send-btn {
    background: var(--theme-primary);
    color: #ffffff;
    border: none;
    padding: 1vw 2vw;
    font-size: 1vw;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1vw;
    align-self: flex-start;
    transition: background 0.3s;
}

.send-btn:hover {
    background: var(--theme-accent);
    color: #000;
}

.send-btn svg {
    display: none; /* Removed for "decent" look */
}

/* ── Map Section ── */
.contact-map-section {
    padding-bottom: 3vw;
}

.map-wrapper {
    border: 1px solid #eeeeee;
    padding: 5px;
    background: #fff;
}

/* ── Mobile ── */
@media (max-width: 960px) {
    .contact-grid { grid-template-columns: 1fr; gap: 8vw; }
    .info-title { font-size: 10vw; }
    .info-header { border-bottom-width: 5px; }
    .info-card { padding: 4vw; gap: 4vw; }
    .info-icon { width: 10vw; height: 10vw; }
    .info-icon svg { width: 6vw; height: 6vw; }
    .info-details h3 { font-size: 3vw; }
    .info-details a, .info-details p { font-size: 4.5vw; }
    .form-wrapper { padding: 6vw; }
    .form-title { font-size: 6vw; border-left-width: 10px; }
    .form-row { grid-template-columns: 1fr; gap: 4vw; }
    .form-group label { font-size: 3.5vw; }
    .form-group input, .form-group textarea { font-size: 4vw; padding: 3vw; }
    .send-btn { width: 100%; padding: 4vw; font-size: 4vw; }
    .info-subtitle {
font-size: 4vw;
}
}