/* ===== CONTACT PAGE ===== */

.contact-hero {
    height: 40vh;
    margin-top: 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #1a2a2e 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}

.contact-main {
    padding: 80px 0;
    background: var(--primary-black);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-info {
    animation: fadeInLeft 0.8s ease;
}

.info-title {
    font-size: 36px;
    font-weight: 800;
    color: #0ea5e9;
    margin-bottom: 20px;
}

.info-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: #0ea5e9;
    background: rgba(14, 165, 233, 0.05);
    transform: translateX(5px);
}

.method-icon {
    font-size: 36px;
    min-width: 50px;
}

.method-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 5px;
}

.method-content p {
    font-size: 16px;
    color: var(--text-gray);
}

.social-links {
    margin-top: 40px;
}

.social-links h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(14, 165, 233, 0.1);
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #0ea5e9;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
}

.contact-form-wrapper {
    animation: fadeInRight 0.8s ease;
}

.contact-form {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(14, 165, 233, 0.2);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #0ea5e9;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 14px;
    color: var(--text-gray);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(14, 165, 233, 0.3);
    border-radius: 12px;
    font-size: 16px;
    color: var(--text-white);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-gray);
    color: var(--text-white);
}

.btn-submit {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-black);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.5);
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10b981;
    color: #10b981;
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
    color: #ef4444;
    display: block;
}

.faq-section {
    margin-top: 100px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #0ea5e9;
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #0ea5e9;
    background: rgba(14, 165, 233, 0.05);
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        animation: fadeInUp 0.8s ease;
    }

    .contact-form-wrapper {
        animation: fadeInUp 0.8s ease 0.2s both;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .info-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 32px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}