
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}
section.contact-section {
    padding: 40px 0;
}
.contact-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 500;
    color: #333333;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.contact-header p {
    font-size: 0.95rem;
    color: #666666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}
.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 37px;
}

.info-meta h2, .contact-form-wrap h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #333333;
    margin-bottom: 10px;
}

.info-desc, .form-sub-txt {
    font-size: 14px;
    color: #666666;
    margin-bottom: 15px;
}

.info-item-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Info Row Cards */
.info-card {
    background: #ffffff;
    border: 1px solid #f5cfc9;
    border-radius: 12px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(229, 147, 138, 0.08);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #fbeee9;
    color: #e68c82;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 4px;
}

.info-text p {
    font-size: 0.85rem;
    color: #666666;
    margin: 0;
}

/* Embedded Map Holder */
.map-holder {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f5cfc9;
    box-shadow: 0 12px 35px rgba(229, 147, 138, 0.06);
}
.contact-form-wrap {
    background: #ffffff;
    border: 1px solid #f5cfc9;
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 12px 35px rgba(229, 147, 138, 0.06);
}

.aura-custom-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 17px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 100%;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333333;
    letter-spacing: 0.5px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 9px 10px;
    border: 1.5px solid #eaeaea;
    border-radius: 8px;
    background-color: #fafafa;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #333333;
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: #b3b3b3;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #e68c82;
    background-color: #ffffff;
}

/* Form Action Button */
.btn-submit {
    display: block;
    width: 100%;
    padding: 9px 0px;
    background-color: #e68c82;
    color: #ffffff;
    border: 1px solid #e68c82;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #ffffff;
    color: #e68c82;
}
@media (max-width: 640px) {
   
    .contact-header {
        margin-bottom: 40px;
    }
    .contact-form-wrap {
        padding: 25px 20px;
    }
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    .info-card {
        padding: 15px;
        gap: 15px;
    }
}