/* Contact Page Styles */
.contact-page {
    background:
    radial-gradient(
        600px circle at 10% 20%,
        rgba(56, 189, 248, 0.12),
        transparent 40%
    ),
    radial-gradient(
        500px circle at 90% 80%,
        rgba(99, 102, 241, 0.15),
        transparent 45%
    ),
    linear-gradient(
        180deg,
        rgba(2, 6, 23, 0.95) 0%,
        rgba(2, 6, 23, 0.85) 20%,
        rgba(15, 23, 42, 1) 100%
    ),
    url("../assets/services_bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 100px 5% 60px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #e6ebf2;
}

.contact-header p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.contact-card {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #38bdf8;
    font-size: 1.5rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #e6ebf2;
}

.contact-card p {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: #38bdf8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #60a5fa;
}

.contact-form {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #e6ebf2;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #38bdf8;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    color: #020617;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(56, 189, 248, 0.5);
}

@media (max-width: 768px) {
    .contact-page {
        padding: 80px 5% 40px;
    }
    
    .contact-header h1 {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}