/* ==========================================
    CONTACT PAGE — Premium Styles
========================================== */

/* --- Info Cards --- */
.contact-info-cards{
    margin-top: -130px;
}
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 14px;
    padding: 30px 28px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.contact-card-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

.contact-info-cards .col-lg-4:nth-child(1) .contact-card-icon {
    background: linear-gradient(135deg, #13294b, #ea5650);
}

.contact-info-cards .col-lg-4:nth-child(2) .contact-card-icon {
    background: linear-gradient(135deg, #13294b, #ea5650);
}

.contact-info-cards .col-lg-4:nth-child(3) .contact-card-icon {
    background: linear-gradient(135deg, #13294b, #ea5650);
}

.contact-card-body h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    color: #37404d;
    margin-bottom: 8px;
}

.contact-card-body a {
    display: block;
    font-size: 14px;
    color: #535353;
    transition: color 0.25s;
    line-height: 1.8;
}

.contact-card-body a:hover {
    color: #c8a96e;
}

.contact-card-body p {
    font-size: 14px;
    margin: 0;
    line-height: 1.7;
    color: #535353;
}

/* --- Form Section --- */
.contact-form-wrap {
    background: #fff;
    border-radius: 14px;
    padding: 40px 38px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.contact-form-wrap h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    color: #37404d;
    margin-bottom: 6px;
}

.contact-form-wrap label {
    font-size: 13px;
    font-weight: 600;
    color: #37404d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: block;
}

.contact-input {
    border: 1px solid #e0dbd3;
    border-radius: 8px;
    padding: 0 16px;
    height: 48px;
    line-height: 48px;
    font-size: 14px;
    font-family: 'Graphie', sans-serif;
    color: #37404d;
    background: #faf9f7;
    transition: border-color 0.25s, box-shadow 0.25s;
    width: 100%;
    box-sizing: border-box;
    display: block;
    -webkit-appearance: none;
    appearance: none;
}

select.contact-input {
    height: 48px !important; 
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ea5650' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.contact-input:focus {
    outline: none;
    border-color: #c8a96e;
    box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.15);
    background-color: #fff;
}

textarea.contact-input {
    height: auto;
    padding: 12px 16px;
    line-height: 1.6;
    resize: vertical;
}

.contact-submit-btn {
    width: 100%;
    letter-spacing: 1.5px;
    padding: 14px 30px;
    font-size: 14px;
}

/* --- Map Section --- */
.contact-map-wrap {
    background: #fff;
    border-radius: 14px;
    padding: 40px 38px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.contact-map-wrap h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    color: #37404d;
    margin-bottom: 6px;
}

.contact-map-embed {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.quick-info-item {
    display: flex;
    align-items: start;
    gap: 14px;
}

.quick-info-item i {
    font-size: 22px;
    color: #13294b;
    flex-shrink: 0;
}

.quick-info-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #37404d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-info-item span {
    font-size: 14px;
    color: #535353;
}

/* Responsive tweaks */
@media (max-width: 767px) {

    .contact-form-wrap,
    .contact-map-wrap {
        padding: 28px 20px;
    }
}

.contact-page-contact-from-wrapper .wpcf7-form-control-wrap {
    display: inline-block;
    width: 100%;
}

.contact-page-contact-from-wrapper .wpcf7-form-control-wrap input,
.contact-page-contact-from-wrapper .wpcf7-form-control-wrap textarea,
.contact-page-contact-from-wrapper .wpcf7-form-control-wrap select {
    width: 100%;
}