/* ── CONTACT PAGE CSS ── */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: flex-start;
}

/* Info Column */
.contact-info {
    position: sticky;
    top: 100px;
}

.contact-info h2 {
    font-size: 2.25rem;
    color: var(--tml-navy);
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-info p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.contact-details {
    display: grid;
    gap: 2rem;
}

.detail-item {
    display: flex;
    gap: 1.25rem;
}

.detail-item__icon {
    width: 48px;
    height: 48px;
    background: var(--tml-light);
    color: var(--tml-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-item__icon svg {
    width: 20px;
}

.detail-item__content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--tml-navy);
    margin-bottom: 0.25rem;
}

.detail-item__content span, 
.detail-item__content a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Form Column */
.contact-form-wrapper {
    background: #fff;
    padding: 3.5rem;
    border: 1px solid #eee;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    font-size: 0.825rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--tml-navy);
    margin-bottom: 0.75rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    background: #fcfcfc;
    border: 1px solid #e5e5e5;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--tml-gold);
    background: #fff;
}

textarea.form-control {
    height: 160px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: var(--tml-navy);
    color: #fff;
    border: none;
    padding: 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1a3556;
}

.status-msg {
    padding: 1rem;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 4px;
    margin-bottom: 2rem;
    font-weight: 600;
}

@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .contact-info {
        position: static;
    }
    .contact-form-wrapper {
        padding: 2rem;
    }
}
