/* =========================================
   CONTACT PAGE STYLING
   ========================================= */

.wd-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    padding-bottom: 80px;
}

/* Info Side (Left) */
.wd-contact-info h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    font-weight: 800;
}

.wd-contact-info p {
    font-size: 1.125rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 32px;
}

.wd-info-block {
    margin-bottom: 24px;
}

.wd-info-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #9CA3AF;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.wd-info-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

.wd-info-value a {
    text-decoration: none;
    border-bottom: 2px solid rgba(247, 215, 74, 0.4);
    /* Sunny underline */
    transition: all 0.2s;
}

.wd-info-value a:hover {
    background-color: #F7D74A;
    color: #000;
    border-bottom-color: transparent;
}

/* Form Side (Right) */
.wd-contact-form-card {
    background: #fff;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Form Inputs */
.wd-form-group {
    margin-bottom: 24px;
}

.wd-form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    background: #F9FAFB;
}

.wd-form-control:focus {
    background: #fff;
    border-color: #111827;
    outline: none;
    box-shadow: 0 0 0 4px rgba(17, 24, 39, 0.05);
}

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

/* Label */
.wd-form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

/* Submit Button */
.wd-btn-submit {
    width: 100%;
    padding: 16px;
    background: #111827;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}

.wd-btn-submit:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 900px) {
    .wd-contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 500px) {
    .wd-contact-form-card {
        padding: 32px 24px;
    }
}