/* ======================================================
   CONTACT PAGE SPECIFIC STYLES
   ====================================================== */

/* Contact Hero */
.contact-hero {
    background:
        linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.88)),
        url('/images/mtc-web-design.webp') center/cover no-repeat;
    height: 85vh;
    min-height: 500px;
}

.contact-hero .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero .hero-content h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    margin-bottom: 1.5rem;
}

.contact-hero .hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    opacity: 0.94;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #111827;
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Info */
.contact-info {
    color: #f9fafb;
}

.contact-info h2 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    margin-bottom: 1.5rem;
    color: #f9fafb;
    text-transform: uppercase;
}

.contact-info p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #d1d5db;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

.contact-item h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #3b82f6;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-transform: none;
}

.contact-item p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    margin: 0;
    color: #f9fafb;
}

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

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

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 18px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-group label {
    display: block;
    color: #f9fafb;
    font-weight: 600;
    margin-bottom: 0.6rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    color: #f9fafb;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(0, 0, 0, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23f9fafb' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: #1f2937;
    color: #f9fafb;
}

.contact-form .cta-btn {
    width: 100%;
    margin-top: 1rem;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

/* Active nav link */
.nav-links a.active {
    color: #3b82f6;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .contact-hero {
        height: 70vh;
        min-height: 450px;
    }

    .contact-hero .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info h2 {
        font-size: clamp(1.6rem, 5vw, 1.9rem);
    }

    .contact-details {
        align-items: center;
    }

    .contact-form {
        padding: 2rem;
    }

    .contact-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem 1rem;
        font-size: clamp(0.85rem, 2vw, 0.95rem);
    }
}
