/* ============================================
   Neowork Studios - Contact Page Styles
   Page-specific styles for contact.html
   ============================================ */

/* ============================================
   Contact Hero
   ============================================ */
.contact-hero {
    position: relative;
    padding: 10rem 0 6rem;
    background: var(--gradient-hero);
    overflow: hidden;
}

.contact-hero .hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.contact-hero .hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.contact-hero .hero-gradient-orb:nth-child(1) {
    width: 500px;
    height: 500px;
    background: var(--primary-500);
    top: -200px;
    right: -100px;
}

.contact-hero .hero-gradient-orb:nth-child(2) {
    width: 350px;
    height: 350px;
    background: var(--primary-300);
    bottom: -100px;
    left: -100px;
}

.contact-hero .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.contact-hero-content {
    position: relative;
    z-index: 10;
    max-width: 720px;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.contact-hero-badge i {
    color: var(--accent-400);
}

.contact-hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.contact-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

/* ============================================
   Contact Content Section
   ============================================ */
.contact-content-section {
    background: var(--gray-50);
}

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

/* ============================================
   Contact Info (Left Side)
   ============================================ */
.contact-info-card {
    position: sticky;
    top: 120px;
}

.contact-info-card .section-label {
    margin-bottom: 1rem;
}

.contact-info-heading {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.contact-info-text {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-methods-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    color: var(--primary-600);
    border-radius: var(--radius-lg);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-method-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.125rem;
}

.contact-method-details a,
.contact-method-details p {
    color: var(--gray-600);
    font-size: 0.938rem;
}

.contact-method-details a:hover {
    color: var(--primary-600);
}

/* Social Links */
.contact-socials {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.contact-socials h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

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

.contact-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: var(--radius-lg);
    font-size: 1.1rem;
    transition: all var(--transition-fast);
}

.contact-social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   Contact Form (Right Side)
   ============================================ */
.contact-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.contact-form-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.contact-form-subtext {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Style the Neowork Suite embedded form */
#nw-contact-form {
    width: 100%;
}

/* ============================================
   Responsive - Contact Page
   ============================================ */
@media (max-width: 1024px) {
    .contact-content-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 8rem 0 4rem;
    }
}

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