/* ==========================================================================
   CONTACT PAGE STYLES (Ultra-Pro SaaS Vibe)
   ========================================================================== */

/* --- 1. HERO SECTION --- */
.dwu-contact-hero {
    background-color: #0f172a; 
    padding: clamp(6rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dwu-contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
    z-index: 1;
}

.dwu-contact-hero .dwu-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.dwu-contact-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.dwu-contact-hero h1 span {
    color: #2563eb; 
}

.dwu-contact-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    line-height: 1.7;
    margin: 0 auto;
    font-weight: 400;
}

/* --- 2. CONTACT SPLIT SECTION --- */
.dwu-contact-section {
    padding: 6rem 0;
    background-color: #f8fafc;
}

.dwu-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .dwu-contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

/* --- LEFT COLUMN: INFO CARD --- */
.dwu-info-card {
    background: transparent;
}

.dwu-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dwu-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dwu-info-text h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin: 0 0 0.25rem 0;
}

.dwu-info-text p, .dwu-info-text > a {
    color: #475569;
    font-size: 1rem;
    margin: 0;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.dwu-info-text > a:hover {
    color: var(--primary-blue);
}

/* 🚀 NEW: Phone Pill Styles */
.dwu-phone-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.dwu-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: var(--dark-navy) !important;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    text-decoration: none !important;
    width: fit-content;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.dwu-contact-link:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue) !important;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
}

.dwu-link-icon {
    font-size: 1.1rem;
}

.dwu-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.dwu-social-links a {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-navy);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.dwu-social-links a:hover {
    background: var(--primary-blue);
    color: #ffffff;
    transform: translateY(-3px);
    border-color: var(--primary-blue);
}

/* --- RIGHT COLUMN: FORM CARD --- */
.dwu-form-card {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: clamp(2rem, 5vw, 3rem);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.1);
}

.dwu-input-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.dwu-input-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
}

.dwu-input-group input,
.dwu-input-group select,
.dwu-input-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: #0f172a;
    background-color: #f8fafc;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.dwu-input-group textarea {
    resize: none !important;
}

.dwu-input-group input:focus,
.dwu-input-group select:focus,
.dwu-input-group textarea:focus {
    border-color: var(--primary-blue);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.dwu-btn-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366 !important;
    color: #ffffff !important;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none !important;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dwu-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4) !important;
}