/* Contact Page Specific Styles */

.contact-hero {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
}

.back-btn {
    position: absolute;
    top: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-btn:hover {
    transform: translateX(-5px);
    color: #059669;
}

.contact-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.contact-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 600px;
}

.contact-content {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrapper h2,
.contact-info h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.contact-form {
    background: rgba(31, 41, 55, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

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

.form-group label {
    display: block;
    color: #d1d5db;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: 0.5rem;
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    background: rgba(31, 41, 55, 0.9);
}

.contact-form .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

#form-status {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.contact-info {
    position: sticky;
    top: 2rem;
}

.contact-info p {
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    width: 24px;
    height: 24px;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item h3 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #10b981;
}

.contact-item p {
    color: #9ca3af;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10b981;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

@media (max-width: 968px) {
    .contact-title {
        font-size: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        position: static;
    }
    
    .back-btn {
        position: static;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-hero {
        padding: 4rem 1.5rem 3rem;
    }
    
    .contact-content {
        padding: 3rem 1.5rem;
    }
}
