﻿/* ========================================
               Contact Us Section - Modern Professional Design
               ======================================== */
.section-contact-modern {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
    overflow: hidden;
}

/* Section Header */
.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.contact-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1A1A1A;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1rem;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD500, #FFC400, #FFD500, transparent);
    border-radius: 1px;
    animation: shimmer 3s ease-in-out infinite;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

/* Contact Card */
.contact-card-modern {
    background: #FFFFFF;
    border: 2px solid #F3F4F6;
    border-radius: 20px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 213, 0, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card-modern:hover {
    transform: translateY(-12px);
    border-color: #FFD500;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.contact-card-modern:hover::before {
    opacity: 1;
}

/* Icon Wrapper */
.contact-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
}

.icon-bg-contact {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.icon-bg-contact.whatsapp {
    background: linear-gradient(135deg, #E0F7E9 0%, #C8F0D8 100%);
}

.icon-bg-contact.facebook {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
}

.contact-card-modern:hover .icon-bg-contact {
    background: linear-gradient(135deg, #FFD500 0%, #FFC400 100%);
    transform: rotate(10deg) scale(1.1);
}

.contact-card-modern:hover .icon-bg-contact.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #1EBE57 100%);
}

.contact-card-modern:hover .icon-bg-contact.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%);
}

.contact-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.contact-card-modern:hover .contact-icon {
    transform: scale(1.15);
}

.contact-icon i {
    color: #1A1A1A;
    font-size: 1.75rem;
    transition: color 0.3s ease;
}

.contact-card-modern:hover .contact-icon i {
    color: #000;
}

/* Card Content */
.contact-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
}

.contact-card-text {
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Contact Button */
.btn-contact-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: #1A1A1A;
    color: #FFD500;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-contact-modern:hover {
    background: #FFD500;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 213, 0, 0.3);
}

.btn-contact-modern.whatsapp {
    background: #25D366;
    color: #FFFFFF;
}

.btn-contact-modern.whatsapp:hover {
    background: #1EBE57;
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-contact-modern.facebook {
    background: #1877F2;
    color: #FFFFFF;
}

.btn-contact-modern.facebook:hover {
    background: #0C63D4;
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

/* Background Decorations */
.contact-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.decoration-blob {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 213, 0, 0.08) 0%, transparent 70%);
}

.decoration-blob.blob-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
}

.decoration-blob.blob-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 991px) {
    .section-contact-modern {
        padding: 80px 0;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .contact-card-modern {
        padding: 1.5rem 1rem;
    }

    .contact-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .contact-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-contact-modern {
        padding: 60px 0;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1.125rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-card-modern {
        padding: 2rem 1.5rem;
    }

    .contact-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .contact-icon i {
        font-size: 1.75rem;
    }

    .contact-card-title {
        font-size: 1.25rem;
    }

    .contact-card-text {
        font-size: 0.9375rem;
    }

    .btn-contact-modern {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
}