:root {
    --primary: #A6587C;
    --primary-dark: #7D405C;
    --secondary: #F8F1F5;
    --accent: #E8C8D8;
    --text: #333333;
    --light-text: #777777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    animation: fadeIn 0.8s ease-out;
}

#contact-heading {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

#contact-heading::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(30deg);
}

.contact-container h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.contact-container h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

.header-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.contact-section h2 {
    color: var(--primary-dark);
    margin: 25px 0 20px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 10px;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    border-radius: 3px;
}

.contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 30px;
}

.contact-info-c,
.bank-info {
    flex: 1;
    min-width: 450px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-c:hover,
.bank-info:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.contact-info-c::before,
.bank-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
}

.info-group {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.info-icon {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 3px;
}

.info-content {
    flex: 1;
}

.info-label {
    font-weight: 600;
    color: var(--primary-dark);
    display: block;
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.info-value {
    color: var(--light-text);
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    background-color: white;
    color: var(--primary-dark);
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(166, 88, 124, 0.2);
}

.contact-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.contact-btn:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(166, 88, 124, 0.2);
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    border-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

.email-link {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    word-break: break-all;
}

.email-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-container{
        padding: 10px;
    }
    .contact-info-c{
        padding: 20px 10px;
    }
    .bank-info{
        padding: 20px 10px;
    }
    .contact-section h1 {
        font-size: 2.2rem;
    }

    .header-subtitle {
        font-size: 1rem;
    }

    .contact-section {
        flex-direction: column;
        gap: 20px;
    }

    .contact-info-c,
    .bank-info {
        min-width: 100%;
    }

    .contact-section h2 {
        font-size: 1.6rem;
    }

    .contact-methods {
        flex-direction: column;
    }

    .map-container {
        height: 300px;
    }
}