.contact-section {
    padding: 60px;
}

.contact-info {
    padding-right: 40px;
}

.row {
    --bs-gutter-x: 1rem !important;
}

.contact-info h2 {
    font-family: var(--serif);
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--ink);
}

    .contact-info h2 em {
        color: var(--gold);
        font-style: normal;
    }

.contact-info p {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 25px;
}

.contact-details {
    margin-top: 20px;
    font-size: 14px;
}

    .contact-details div {
        margin-bottom: 12px;
        display: flex;
        gap: 10px;
        align-items: center;
        color: var(--muted);
    }

        .contact-details div a {
            font-size: 1.05rem;
            color: var(--muted);
            text-decoration: none;
            transition: 0.3s;
        }

            .contact-details div a:hover {
                color: var(--gold);
            }

    .contact-details i {
        color: var(--gold);
    }

.contact-form-wrap {
    padding-left: 20px;
}

.contact-form .form-control {
    background: transparent;
    border: 1px solid var(--muted);
    color: var(--ink);
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 0;
    outline: none;
}

    .contact-form .form-control::placeholder {
        color: var(--muted);
        opacity: 0.8;
    }

    .contact-form .form-control:focus {
        border-color: var(--gold);
        box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.15);
    }

.contact-form textarea {
    resize: none;
    min-height: 140px;
}

.btn-primary {
    background: var(--gold);
    color: #000;
    font-weight: 600;
    padding: 12px 22px;
    border: none;
    transition: 0.3s;
}

    .btn-primary:hover {
        filter: brightness(0.95);
    }

@media (max-width: 992px) {
    .contact-section {
        padding: 50px 20px;
    }

    .contact-info {
        padding-right: 0;
        text-align: center;
    }

        .contact-info h2 {
            font-size: 25px;
        }

    .contact-form-wrap {
        padding-left: 0;
        margin-top: 20px;
    }

    .contact-info p {
        text-align: justify;
        hyphens: auto;
    }

    .row {
        --bs-gutter-x: 0rem !important;
    }
}
