/* ===========================
   CONTACT HERO SECTION
   =========================== */

.contact-hero {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #1E41AF 0%, #1E41AF 100%);
    color: white;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
}

.contact-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.contact-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: white;
    top: -150px;
    right: -150px;
    animation: float 8s ease-in-out infinite;
}

.contact-shape.shape-2 {
    width: 250px;
    height: 250px;
    background: white;
    bottom: -80px;
    left: 5%;
    animation: float 10s ease-in-out infinite reverse;
}

.contact-shape.shape-3 {
    width: 180px;
    height: 180px;
    background: white;
    top: 40%;
    right: 15%;
    animation: float 9s ease-in-out infinite;
}

.contact-shape.shape-4 {
    width: 120px;
    height: 120px;
    background: white;
    bottom: 20%;
    left: 20%;
    animation: float 11s ease-in-out infinite 1s;
}

.contact-shape.shape-5 {
    width: 100px;
    height: 100px;
    background: white;
    top: 10%;
    left: 10%;
    animation: float 7s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-hero-badge i {
    font-size: 16px;
}

.contact-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    animation: fadeInDown 0.8s ease 0.1s both;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 18px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-title {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-subtitle {
        font-size: 16px;
    }
    
    .contact-shape.shape-1 {
        width: 300px;
        height: 300px;
    }
    
    .contact-shape.shape-2 {
        width: 200px;
        height: 200px;
    }
    
    .contact-shape.shape-3 {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 60px 0;
    }

    .contact-hero-badge {
        font-size: 12px;
        padding: 10px 16px;
    }

    .contact-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .contact-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .contact-shape.shape-1 {
        width: 250px;
        height: 250px;
    }
    
    .contact-shape.shape-2 {
        width: 150px;
        height: 150px;
    }
    
    .contact-shape.shape-3 {
        width: 120px;
        height: 120px;
    }
    
    .contact-shape.shape-4 {
        width: 100px;
        height: 100px;
    }
    
    .contact-shape.shape-5 {
        width: 80px;
        height: 80px;
    }
}

