/* Enhanced Contact Section */
.contact {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0D47A1 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

/* Background Pattern (Optional subtle detail) */
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 138, 80, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.contact-message {
    flex: 1;
}

.contact-message h2 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-message h2 span {
    color: var(--primary-light);
}

.contact-message p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-benefits {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-benefit-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    color: var(--text-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    min-width: 400px;
    text-align: center;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.contact-card.highlight {
    animation: bounce 0.6s ease;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--secondary-color);
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
    display: inline-block;
}

.branch-info {
    margin-bottom: 30px;
    text-align: center;
}

.branch-name {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 600;
}

.branch-phone {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.branch-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 20px 0;
}

.contact-email {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    color: #555;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-benefits {
        justify-content: center;
    }

    .contact-card {
        min-width: auto;
        width: 100%;
    }
}