/* Contact Page Styles - AI Revolution Theme */

:root {
    --purple: #5B2EFF;
    --indigo: #3B1CFF;
    --neon-blue: #00CFFF;
    --dark-bg: #0E0F1A;
    --dark-secondary: #16172D;
    --dark-tertiary: #1F2141;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: #e0e0e0;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, var(--neon-blue), var(--purple));
    padding: 100px 50px;
    text-align: center;
    color: white;
    margin-top: 60px;
}

header h1 {
    font-size: 56px;
    font-weight: 800;
    margin: 0;
    animation: fadeInDown 0.8s ease-out;
}

header p {
    font-size: 18px;
    margin-top: 10px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@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);
    }
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 50px;
}

main section {
    margin-bottom: 60px;
}

main h2 {
    font-size: 42px;
    color: var(--neon-blue);
    margin-bottom: 30px;
    font-weight: 800;
}

main h3 {
    color: #ffffff;
    font-size: 18px;
}

main p {
    font-size: 16px;
    line-height: 1.8;
    color: #b0b0b0;
}

/* Contact Info Cards */
main section:first-child > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

main section:first-child > div > div {
    background: var(--dark-secondary);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(0, 207, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

main section:first-child > div > div:hover {
    border-color: var(--neon-blue);
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 207, 255, 0.3);
}
    box-shadow: 0 0 30px rgba(0, 207, 255, 0.2);
}

main section:first-child > div > div i {
    font-size: 36px;
    color: var(--neon-blue);
    margin-bottom: 15px;
}

main section:first-child > div > div:nth-child(2) i {
    color: var(--purple);
}

main section:first-child > div > div:nth-child(3) i {
    color: var(--indigo);
}

/* Contact Form & AI Support Section */
main section:last-of-type {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Contact Form */
.contact-form {
    background: var(--dark-secondary);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(91, 46, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form h3 {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #e0e0e0;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: var(--dark-bg);
    border: 1px solid rgba(0, 207, 255, 0.2);
    border-radius: 6px;
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 207, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--purple), var(--indigo));
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(91, 46, 255, 0.35);
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 207, 255, 0.5);
}

.submit-btn:active {
    transform: translateY(-2px);
}

/* AI Support Section */
.ai-support {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.support-feature {
    background: var(--da ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.support-feature:hover {
    border-color: var(--neon-blue);
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 207, 255, 0.3
.support-feature:hover {
    border-color: var(--neon-blue);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 207, 255, 0.2);
}

.support-feature i {
    font-size: 28px;
    color: var(--neon-blue);
    margin-bottom: 12px;
}

.support-feature h4 {
    color: #ffffff;
    margin-bottom: 8px;
}

.support-feature p {
    color: #a0a0a0;
    font-size: 14px;
    margin: 0;
}

/* Footer */
footer {
    background: linear-gradient(135deg, rgba(14, 15, 26, 0.9), rgba(91, 46, 255, 0.1));
    padding: 40px 50px;
    text-align: center;
    border-top: 1px solid rgba(91, 46, 255, 0.2);
    margin-top: 80px;
}

footer p {
    color: #b0b0b0;
    font-size: 14px;
}

footer a {
    color: var(--neon-blue);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #0099cc;
}

/* Responsive Design */
@media (max-width: 768px) {
    main {
        padding: 40px 20px;
    }

    header {
        padding: 80px 20px;
    }

    header h1 {
        font-size: 36px;
    }

    header p {
        font-size: 16px;
    }

    main h2 {
        font-size: 32px;
    }

    main section:last-of-type {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form,
    .support-feature {
        padding: 25px;
    }

    footer {
        padding: 30px 20px;
    }
}
    color: #ccc;
}
