﻿/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */

/* Contact Hero Section */
.contact-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.1) 0%, rgba(15, 10, 21, 0.8) 50%, rgba(15, 10, 21, 1) 100%);
}

    .contact-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(255, 140, 66, 0.2) 0%, transparent 70%);
        pointer-events: none;
        animation: float 8s ease-in-out infinite;
    }

    .contact-hero .hero-content {
        position: relative;
        z-index: 1;
        text-align: center;
        max-width: 800px;
        animation: fadeInUp 1s ease-out;
    }

    .contact-hero h1 {
        font-size: 4rem;
        font-weight: 900;
        margin-bottom: 0.5rem;
        font-family: 'Orbitron', sans-serif;
        letter-spacing: 2px;
        line-height: 1.1;
        animation: fadeInUp 1s ease-out 0.1s both;
        color: var(--accent-cyan);
        text-transform: uppercase;
    }

    .contact-hero .tagline {
        font-size: 1.5rem;
        color: var(--accent-orange);
        margin-bottom: 1rem;
        font-weight: 400;
        animation: fadeInUp 1s ease-out 0.2s both;
        font-family: 'Orbitron', sans-serif;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .contact-hero .description {
        font-size: 1.1rem;
        color: var(--text-secondary);
        margin-bottom: 2rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.8;
        animation: fadeInUp 1s ease-out 0.3s both;
    }

/* Contact Info Section */
.contact-info-section {
    padding: 5rem 2rem;
    background: var(--secondary-dark);
    position: relative;
}

    .contact-info-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    }



.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.08) 0%, rgba(0, 217, 255, 0.05) 100%);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out both;
}

    .info-card:nth-child(1) {
        animation-delay: 0.2s;
    }

    .info-card:nth-child(2) {
        animation-delay: 0.25s;
    }

    .info-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .info-card:nth-child(4) {
        animation-delay: 0.35s;
    }

    .info-card:hover {
        transform: translateY(-8px);
        border-color: var(--accent-cyan);
        box-shadow: 0 15px 40px rgba(0, 217, 255, 0.2);
        background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(255, 140, 66, 0.05) 100%);
    }

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.2rem;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.info-card a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

    .info-card a:hover {
        color: var(--accent-cyan);
        text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
    }

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a0f2e 100%);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .form-header .section-title {
        display: block;
    }

.contact-form {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.08) 0%, rgba(0, 217, 255, 0.05) 100%);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 8px;
    padding: 3rem;
}

.form-group {
    margin-bottom: 2rem;
}

    .form-group label {
        display: block;
        color: var(--accent-cyan);
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0.8rem;
        font-family: 'Orbitron', sans-serif;
        font-weight: 600;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 1rem;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 140, 66, 0.3);
        border-radius: 4px;
        color: var(--text-primary);
        font-family: 'Space Mono', monospace;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent-cyan);
            box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
            background: rgba(0, 217, 255, 0.05);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(200, 184, 216, 0.5);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 150px;
    }

    /* Select Dropdown Styling */
    .form-group select {
        cursor: pointer;
        appearance: none;
        background-color: rgba(0, 0, 0, 0.3) !important;
        color: var(--text-primary) !important;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300d9ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        background-size: 1.5em 1.5em;
        padding-right: 2.5rem;
    }

        .form-group select option {
            background-color: rgba(15, 10, 21, 0.95) !important;
            color: var(--text-primary) !important;
            padding: 0.5rem;
        }

            .form-group select option:checked {
                background: linear-gradient(var(--accent-cyan), var(--accent-cyan)) !important;
                background-color: var(--accent-cyan) !important;
                color: var(--primary-dark) !important;
            }

.form-actions {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

    .form-actions .btn {
        flex: 1;
    }

.form-note {
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1rem;
}

/* Success Message */
.success-message {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.15) 0%, rgba(34, 197, 94, 0.1) 100%);
    border: 2px solid rgba(0, 217, 255, 0.5);
    border-radius: 8px;
    text-align: center;
    margin-top: 2rem;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message h3 {
    color: var(--accent-cyan);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.success-message p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Social Section */
.social-section {
    padding: 5rem 2rem;
    background: var(--secondary-dark);
    position: relative;
}

    .social-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    }

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.08) 0%, rgba(0, 217, 255, 0.05) 100%);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 8px;
    text-decoration: none;
    color: var(--accent-orange);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out both;
}

    .social-link:nth-child(1) {
        animation-delay: 0.2s;
    }

    .social-link:nth-child(2) {
        animation-delay: 0.25s;
    }

    .social-link:nth-child(3) {
        animation-delay: 0.3s;
    }

    .social-link:nth-child(4) {
        animation-delay: 0.35s;
    }

    .social-link:hover {
        transform: translateY(-8px);
        border-color: var(--accent-cyan);
        box-shadow: 0 15px 40px rgba(0, 217, 255, 0.2);
        color: var(--accent-cyan);
    }

.social-icon {
    font-size: 3rem;
    font-weight: 900;
}

.social-link span {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a0f2e 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.08) 0%, rgba(255, 140, 66, 0.05) 100%);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out both;
}

    .faq-item:nth-child(1) {
        animation-delay: 0.2s;
    }

    .faq-item:nth-child(2) {
        animation-delay: 0.25s;
    }

    .faq-item:nth-child(3) {
        animation-delay: 0.3s;
    }

    .faq-item:nth-child(4) {
        animation-delay: 0.35s;
    }

    .faq-item:nth-child(5) {
        animation-delay: 0.4s;
    }

    .faq-item:nth-child(6) {
        animation-delay: 0.45s;
    }

    .faq-item:hover {
        transform: translateY(-5px);
        border-color: var(--accent-orange);
        box-shadow: 0 10px 30px rgba(255, 140, 66, 0.15);
    }

    .faq-item h3 {
        font-size: 1.1rem;
        color: var(--accent-cyan);
        margin-bottom: 1rem;
        font-family: 'Orbitron', sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .faq-item p {
        color: var(--text-secondary);
        font-size: 0.95rem;
        line-height: 1.7;
    }

/* Responsive */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero .tagline {
        font-size: 1.2rem;
    }

    .contact-hero .description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .form-actions {
        flex-direction: column;
    }

        .form-actions .btn {
            width: 100%;
        }

    .info-cards-grid,
    .social-links-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
