/* Contact Hero Section */
.contact-hero {
    height: 60vh;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--primary-blue) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 80px;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,166,255,0.1) 0%, rgba(0,0,0,0) 50%);
    animation: rotate 30s linear infinite;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px;
}

.contact-hero h1 {
    font-size: 4rem;
    margin-bottom: 30px;
    color: var(--text-white);
    font-weight: 600;
}

.contact-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 166, 255, 0.1);
    border: 1px solid rgba(0, 166, 255, 0.2);
    border-radius: 50px;
    color: #00A6FF;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Form Section */
.contact-section {
    padding: 60px 20px;
    background: var(--primary-black);
    position: relative;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00A6FF;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0 4px rgba(0, 166, 255, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
    min-height: 150px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.primary {
    width: 100%;
    background: #00A6FF;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.primary:hover {
    background: #0095e8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 166, 255, 0.3);
}

.primary:active {
    transform: translateY(0);
}

.primary i {
    font-size: 1rem;
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.primary:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        height: 50vh;
        margin-top: 60px;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-section {
        padding: 40px 20px;
    }

    .contact-container {
        padding: 30px 20px;
    }

    .primary {
        padding: 14px;
        font-size: 0.85rem;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
