/* Contact Hero */
.contact-hero {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 60px;
}

.contact-hero-title {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: bold;
}

body.light .contact-hero-title {
    color: #1a1a1a;
}

body.dark .contact-hero-title {
    color: #ffffff;
}

.contact-hero-description {
    font-size: 20px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

body.light .contact-hero-description {
    color: #4a5568;
}

body.dark .contact-hero-description {
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Info Cards */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 80px;
}

.info-card {
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body.light .info-card {
    background: #f7fafc;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

body.light .info-card:hover {
    background: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

body.dark .info-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark .info-card:hover {
    background: #252525;
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: rgba(59, 130, 246, 0.1);
    color: rgba(59, 130, 246, 0.9);
}

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

body.light .info-card h3 {
    color: #1a1a1a;
}

body.dark .info-card h3 {
    color: #ffffff;
}

.info-card p {
    font-size: 16px;
    margin-bottom: 15px;
}

body.light .info-card p {
    color: #4a5568;
}

body.dark .info-card p {
    color: rgba(255, 255, 255, 0.8);
}

.info-link {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: rgba(59, 130, 246, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-link:hover {
    color: rgba(59, 130, 246, 1);
    transform: translateX(5px);
}

/* Contact Form Section */
.contact-form-section {
    margin-bottom: 80px;
}

.contact-form-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body.light .contact-form-main {
    background: #f7fafc;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

body.dark .contact-form-main {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.required {
    color: #ef4444;
    margin-left: 4px;
}

.submit-btn {
    font-family: 'Geist Mono', monospace;
    background: rgba(59, 130, 246, 0.9);
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: rgba(59, 130, 246, 1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Social Section */
.social-section {
    margin-bottom: 80px;
}

.social-description {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

body.light .social-description {
    color: #4a5568;
}

body.dark .social-description {
    color: rgba(255, 255, 255, 0.8);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body.light .social-card {
    background: #f7fafc;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

body.light .social-card:hover {
    background: #ffffff;
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

body.dark .social-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark .social-card:hover {
    background: #252525;
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: rgba(59, 130, 246, 0.1);
    color: rgba(59, 130, 246, 0.9);
    flex-shrink: 0;
}

.social-info {
    flex-grow: 1;
}

.social-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

body.light .social-info h4 {
    color: #1a1a1a;
}

body.dark .social-info h4 {
    color: #ffffff;
}

.social-info p {
    font-size: 14px;
}

body.light .social-info p {
    color: #4a5568;
}

body.dark .social-info p {
    color: rgba(255, 255, 255, 0.7);
}

.social-arrow {
    font-size: 20px;
    transition: all 0.3s ease;
}

body.light .social-arrow {
    color: #718096;
}

body.dark .social-arrow {
    color: rgba(255, 255, 255, 0.6);
}

.social-card:hover .social-arrow {
    color: rgba(59, 130, 246, 0.9);
    transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
    margin-bottom: 80px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.faq-item {
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body.light .faq-item {
    background: #f7fafc;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

body.light .faq-item:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

body.dark .faq-item {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark .faq-item:hover {
    background: #252525;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

body.light .faq-item h4 {
    color: #1a1a1a;
}

body.dark .faq-item h4 {
    color: #ffffff;
}

.faq-item h4 i {
    color: rgba(59, 130, 246, 0.8);
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
}

body.light .faq-item p {
    color: #4a5568;
}

body.dark .faq-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 1000px) {
    .contact-hero {
        padding: 40px 20px;
    }

    .contact-hero-title {
        font-size: 36px;
    }

    .contact-hero-description {
        font-size: 16px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-main {
        padding: 25px;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}