/* CONTACT HERO */
.contact-hero-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact-hero-heading {
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 12px;
}

.contact-hero-subtext {
    font-size: 18px;
    color: #5a4a35;
    max-width: 520px;
}

/* CONTACT BODY */
.contact-body-section {
    padding-top: 60px;
    padding-bottom: 100px;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: #7c5c2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 18px;
}

.contact-info-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #7c5c2e;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 16px;
    color: #322305;
    font-weight: 500;
}

.contact-info-value a {
    color: #322305;
    text-decoration: none;
}

.contact-info-value a:hover {
    text-decoration: underline;
}

/* FORM */
.contact-form-card {
    background: #fff;
    border-radius: 12px;
    padding: 48px 40px;
    box-shadow: 0 4px 24px rgba(50, 35, 5, 0.08);
}

.contact-form-card .form-group label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #7c5c2e;
    margin-bottom: 6px;
}

.contact-form-card .form-control {
    background: #f6f3ed;
    border: 1px solid #d9cfc2;
    border-radius: 6px;
    color: #322305;
    font-size: 15px;
    padding: 10px 14px;
    height: auto;
}

.contact-form-card .form-control:focus {
    border-color: #7c5c2e;
    box-shadow: 0 0 0 2px rgba(124, 92, 46, 0.15);
    background: #fff;
    outline: none;
}

.contact-form-card textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

.contact-submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
}

/* ALERTS */
.contact-alert {
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 15px;
    margin-bottom: 24px;
}

.contact-alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* RESPONSIVE */
@media screen and (max-width: 767px) {
    .contact-hero-heading {
        font-size: 36px;
        line-height: 46px;
    }

    .contact-form-card {
        padding: 32px 20px;
    }

    .contact-info-col {
        margin-bottom: 40px;
    }
}
