/* Contact Hero Section */
.contact-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(180deg, var(--light-blue) 0%, #fff 100%);
    overflow: hidden;
}

.contact-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.15' fill='%230066cc'/%3E%3C/svg%3E");
    background-size: 1200px 150px;
    animation: wave1 20s linear infinite;
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-lead {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, var(--light-blue) 100%);
}

.contact-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(0, 102, 204, 0.1),
        0 1px 2px rgba(0, 102, 204, 0.05);
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 102, 204, 0.15),
        0 2px 4px rgba(0, 102, 204, 0.1);
}

.contact-info {
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 10px 30px rgba(0, 102, 204, 0.1),
        0 1px 2px rgba(0, 102, 204, 0.05);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: white;
    transform: translateX(10px);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-form {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 102, 204, 0.1),
        0 1px 2px rgba(0, 102, 204, 0.05);
}

.form-control {
    border: 1px solid rgba(0, 102, 204, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-blue);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.2);
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 102, 204, 0.3);
}

.location-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
}

.location-card h4 {
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.location-card p {
    color: #666;
    margin-bottom: 1rem;
}

.location-card .map-link {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-card .map-link i {
    transition: transform 0.3s ease;
}

.location-card .map-link:hover i {
    transform: translateX(5px);
}

.contact-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.contact-bubble {
    position: absolute;
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.1) 0%, rgba(0, 102, 204, 0.05) 100%);
    border-radius: 50%;
    animation: bubble 8s ease-in-out infinite;
}

.contact-bubble:nth-child(1) { width: 30px; height: 30px; left: 10%; animation-delay: 0s; }
.contact-bubble:nth-child(2) { width: 15px; height: 15px; left: 30%; animation-delay: 2s; }
.contact-bubble:nth-child(3) { width: 25px; height: 25px; left: 50%; animation-delay: 4s; }
.contact-bubble:nth-child(4) { width: 20px; height: 20px; left: 70%; animation-delay: 6s; }
.contact-bubble:nth-child(5) { width: 35px; height: 35px; left: 90%; animation-delay: 8s; }
