﻿.contact-hero {
    background: linear-gradient(135deg, #ebc346 0%, #ff6b35 100%);
    position: relative;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

    .floating-shapes .shape {
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        animation: float 6s ease-in-out infinite;
    }

        .floating-shapes .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-shapes .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            border-radius: 30%;
            top: 60%;
            left: 80%;
            animation-delay: 2s;
        }

        .floating-shapes .shape:nth-child(3) {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            top: 80%;
            left: 20%;
            animation-delay: 4s;
        }

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.contact-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    overflow: hidden;
    position: relative;
}

    .contact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .contact-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.5s;
    }

    .contact-card:hover::before {
        left: 100%;
    }

.contact-icon {
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotateY(360deg);
    color: #764ba2;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

    .fade-in-up:nth-child(1) {
        animation-delay: 0.1s;
    }

    .fade-in-up:nth-child(2) {
        animation-delay: 0.2s;
    }

    .fade-in-up:nth-child(3) {
        animation-delay: 0.3s;
    }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    padding: 12px 16px;
}

    .form-control:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
        transform: translateY(-2px);
    }

.btn-primary {
    background: linear-gradient(135deg, #ecc647 0%, #ff6b35 100%);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
    }

.stats-counter {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

    .stats-counter:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.stats-number,
.stats-number-static {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e37747;
    display: block;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}
