:root {
    --pink-light-1: #fcd1e0;
    --pink-light-2: #f9a4c6;
    --pink-mid-1:   #fb75ae;
    --pink-mid-2:   #fa4d99;
    --pink-brand:   #f01e89;
    --pink-dark-1:  #c71871;
    --pink-dark-2:  #af1c6c;

    --gray-bg:      #f6f6f6;
    --gray-dark:    #484848;
}

body {
    background-color: var(--gray-bg) !important;
}

.hero-contact-section {
    background-color: var(--pink-light-1);
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.hero-title {
    color: var(--pink-dark-1);
    font-weight: 800;
    font-size: 2.6rem;
}

.hero-subtitle {
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

.main-contact-wrapper {
    background-color: var(--gray-bg);
}

.contact-info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.contact-info-cards .contact-card {
    background: var(--pink-light-1);
    border: none;
    border-radius: 16px;
    padding: 20px 15px;
    flex: 1 1 calc(50% - 16px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-info-cards .contact-card:hover {
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-info-cards .contact-card .icon {
    color: var(--pink-dark-1);
}

.contact-info-cards .contact-card .label {
    color: var(--pink-dark-1);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
}

.contact-info-cards .contact-card .small {
    color: #4a4a4a;
    font-weight: 600;
    font-size: 0.85rem;
}

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

.address-text {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #7f7f7f !important;
}

.contact-form-container {
    background-color: transparent;
    padding: 10px;
}

.form-title {
    color: var(--pink-dark-1);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-description {
    color: #7f7f7f;
    font-size: 0.85rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.custom-label {
    font-size: 0.85rem;
    color: #595959;
    font-weight: 600;
    margin-bottom: 6px;
}

.custom-input-group {
    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    overflow: hidden;
}

.custom-input-group .input-group-text {
    background: transparent;
    border: none;
    color: var(--pink-dark-1);
    padding-left: 14px;
    padding-right: 8px;
}

.custom-input-group .form-control,
.custom-input-group .custom-select {
    border: none;
    box-shadow: none !important;
    height: 42px;
    font-size: 0.9rem;
    color: #353535;
}

.custom-textarea {
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    padding: 12px;
    box-shadow: none !important;
    resize: none;
}

.btn-enrollu-submit {
    background-color: var(--pink-dark-1);
    color: #ffffff;
    font-weight: 700;
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}

.btn-enrollu-submit:hover {
    background-color: var(--pink-dark-2);
    color: #ffffff;
}

.contact-footer {
    background-color: var(--pink-dark-1);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    position: relative;
    color: #ffffff;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.footer-badge-container {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.footer-badge-icon {
    background-color: var(--pink-mid-2);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.85;
    text-decoration: none;
    color: #ffffff;
}

.footer-links .divider {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 12px;
    font-weight: 300;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.footer-social-icons .social-btn {
    background-color: #ffffff;
    color: var(--pink-dark-1);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-social-icons .social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    color: var(--pink-brand);
}

.footer-bottom-bar {
    background-color: var(--pink-dark-2);
    margin-top: 15px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.footer-address-text {
    color: var(--pink-light-1);
    font-size: 0.8rem;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.95;
}

@media (max-width: 767px) {
    .contact-info-cards .contact-card {
        flex: 1 1 100%;
    }
    .contact-footer {
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
    }
    .footer-links a {
        display: inline-block;
        margin: 4px 0;
    }
    .footer-links .divider {
        margin: 0 6px;
    }
}