/**
 * WebSocialTraffic - Enterprise Services & Landing Page Stylesheet
 * File: /wp-content/themes/websocialtraffic/assets/css/seo-services.css
 * Reusable for SEO, PPC, Social Media, Web Development, and Landing Pages
 */

:root {
    --wst-primary: #2563eb;
    --wst-primary-dark: #1d4ed8;
    --wst-dark: #0f172a;
    --wst-night: #070b14;
    --wst-slate: #475569;
    --wst-muted: #64748b;
    --wst-border: #e2e8f0;
    --wst-border-dark: #334155;
    --wst-bg-light: #f8fafc;
    --wst-white: #ffffff;
    --wst-emerald: #10b981;
    --wst-purple: #8b5cf6;
    --wst-amber: #d97706;
}

/* ==========================================================================
   1. GLOBAL LAYOUT & CONTAINERS
   ========================================================================== */
.wst-services-page {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--wst-dark);
    line-height: 1.6;
    background-color: var(--wst-white);
}

.wst-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.wst-container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.wst-section {
    padding: 4.5rem 0;
}

.wst-section-white {
    background-color: var(--wst-white);
}

.wst-section-light {
    background-color: var(--wst-bg-light);
    border-top: 1px solid var(--wst-border);
    border-bottom: 1px solid var(--wst-border);
}

.wst-section-dark {
    background-color: var(--wst-dark);
    color: var(--wst-white);
}

.wst-section-night {
    background-color: var(--wst-night);
    color: var(--wst-white);
}

/* Section Header Typography */
.wst-section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3.5rem;
}

.wst-section-title {
    font-size: 2.35rem;
    font-weight: 900;
    color: var(--wst-dark);
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem 0;
}

.wst-section-title-white {
    color: var(--wst-white);
}

.wst-section-desc {
    font-size: 1rem;
    color: var(--wst-muted);
    line-height: 1.6;
    margin: 0;
}

.wst-section-desc-light {
    color: #94a3b8;
}

/* ==========================================================================
   2. BADGES & CHIPS
   ========================================================================== */
.wst-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
}

.wst-badge-blue {
    background-color: #eff6ff;
    color: var(--wst-primary);
}

.wst-badge-emerald {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.wst-badge-neutral {
    background-color: #f1f5f9;
    color: #334155;
}

.wst-badge-small {
    font-size: 10px;
    padding: 2px 8px;
    margin-bottom: 0.5rem;
}

.wst-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--wst-emerald);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: wst-pulse 1.8s infinite;
}

@keyframes wst-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* ==========================================================================
   3. HERO SECTION & PROPOSAL FORM
   ========================================================================== */
.wst-hero-section {
    background: radial-gradient(circle at 50% 0%, #eff6ff 0%, #ffffff 80%);
    border-bottom: 1px solid var(--wst-border);
    padding: 4.5rem 0 3.5rem;
}

.wst-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
    align-items: center;
}

.wst-hero-title {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--wst-dark);
    letter-spacing: -0.035em;
    margin-bottom: 1.25rem;
}

.wst-hero-title span {
    color: var(--wst-primary);
}

.wst-hero-desc {
    font-size: 1.0625rem;
    color: var(--wst-slate);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Hero Stats Box */
.wst-hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 500px) {
    .wst-hero-stats-grid {
        grid-template-columns: 1fr;
    }
}

.wst-stat-card {
    background-color: var(--wst-white);
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid var(--wst-border);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.wst-stat-num {
    display: block;
    font-size: 1.4rem;
    font-family: monospace;
    font-weight: 800;
}

.wst-stat-num-blue { color: var(--wst-primary); }
.wst-stat-num-green { color: var(--wst-emerald); }
.wst-stat-num-purple { color: var(--wst-purple); }

.wst-stat-label {
    font-size: 0.6875rem;
    color: var(--wst-muted);
    font-weight: 700;
    text-transform: uppercase;
}

/* Contact Action Chips */
.wst-contact-chips {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
}

.wst-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 9999px;
    transition: all 0.15s ease;
}

.wst-chip-white {
    color: var(--wst-dark);
    background-color: var(--wst-white);
    border: 1px solid #cbd5e1;
}

.wst-chip-white:hover {
    background-color: var(--wst-bg-light);
    border-color: #94a3b8;
}

.wst-chip-blue {
    color: var(--wst-primary);
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
}

.wst-chip-blue:hover {
    background-color: #dbeafe;
}

/* Lead Proposal Form Card */
.wst-form-card {
    background-color: var(--wst-white);
    padding: 2.25rem;
    border-radius: 24px;
    border: 1px solid var(--wst-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.wst-form-header {
    margin-bottom: 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 0.75rem;
}

.wst-form-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--wst-dark);
    margin: 0 0 0.25rem 0;
}

.wst-form-subtitle {
    font-size: 0.8125rem;
    color: var(--wst-muted);
    margin: 0;
}

.wst-form-group {
    margin-bottom: 0.875rem;
}

.wst-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 0.875rem;
}

@media (max-width: 480px) {
    .wst-form-row {
        grid-template-columns: 1fr;
    }
}

.wst-form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--wst-slate);
    margin-bottom: 0.35rem;
}

.wst-input,
.wst-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    font-size: 0.875rem;
    box-sizing: border-box;
    font-family: inherit;
    background-color: var(--wst-white);
    color: var(--wst-dark);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.wst-input:focus,
.wst-select:focus {
    outline: none;
    border-color: var(--wst-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.wst-btn-submit {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    text-align: center;
    border-radius: 12px;
    background-color: var(--wst-primary);
    color: var(--wst-white);
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.15s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.wst-btn-submit:hover {
    background-color: var(--wst-primary-dark);
    transform: translateY(-1px);
}

/* ==========================================================================
   4. SERVICES & CARDS GRID
   ========================================================================== */
.wst-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.wst-service-card {
    padding: 2rem;
    background-color: var(--wst-bg-light);
    border-radius: 20px;
    border: 1px solid var(--wst-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.wst-service-card:hover {
    transform: translateY(-4px);
    border-color: #93c5fd;
    box-shadow: 0 12px 28px -6px rgba(15, 23, 42, 0.08);
}

.wst-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.wst-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--wst-dark);
    margin-bottom: 0.75rem;
}

.wst-card-desc {
    font-size: 0.9375rem;
    color: var(--wst-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.wst-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    font-size: 0.875rem;
    color: var(--wst-slate);
    line-height: 1.8;
}

.wst-card-link {
    color: var(--wst-primary);
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.15s ease;
}

.wst-card-link:hover {
    gap: 8px;
    color: var(--wst-primary-dark);
}

/* ==========================================================================
   5. METHODOLOGY / 6-PHASE PROCESS
   ========================================================================== */
.wst-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
}

.wst-process-box {
    background-color: #1e293b;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--wst-border-dark);
    transition: border-color 0.2s ease;
}

.wst-process-box:hover {
    border-color: #38bdf8;
}

.wst-process-num {
    font-size: 2rem;
    font-family: monospace;
    font-weight: 900;
    color: #38bdf8;
    display: block;
    margin-bottom: 0.5rem;
}

.wst-process-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--wst-white);
    margin-bottom: 0.5rem;
}

.wst-process-desc {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   6. INDUSTRY VERTICALS
   ========================================================================== */
.wst-industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.wst-industry-card {
    background-color: var(--wst-white);
    padding: 1.75rem;
    border-radius: 18px;
    border: 1px solid var(--wst-border);
    text-align: center;
    transition: transform 0.2s ease;
}

.wst-industry-card:hover {
    transform: translateY(-3px);
}

.wst-industry-icon {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.wst-industry-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--wst-dark);
    margin-bottom: 0.35rem;
}

.wst-industry-desc {
    font-size: 0.8125rem;
    color: var(--wst-muted);
    margin: 0;
}

/* ==========================================================================
   7. DELIVERABLES & SOFTWARE STACK
   ========================================================================== */
.wst-deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.wst-deliverables-card {
    padding: 2rem;
    background-color: var(--wst-bg-light);
    border-radius: 20px;
    border: 1px solid var(--wst-border);
}

.wst-deliverables-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--wst-dark);
    margin-bottom: 1rem;
}

.wst-deliverable-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--wst-border);
    padding-bottom: 0.75rem;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.wst-deliverable-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.wst-deliverable-label {
    color: var(--wst-slate);
    font-weight: 600;
}

.wst-deliverable-val-green { color: var(--wst-emerald); font-weight: 700; }
.wst-deliverable-val-blue { color: var(--wst-primary); font-weight: 700; }
.wst-deliverable-val-purple { color: var(--wst-purple); font-weight: 700; }
.wst-deliverable-val-dark { color: var(--wst-dark); font-weight: 700; }
.wst-deliverable-val-amber { color: var(--wst-amber); font-weight: 700; }

.wst-tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.wst-tech-card {
    background-color: var(--wst-white);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--wst-border);
}

.wst-tech-name {
    color: var(--wst-dark);
    font-size: 0.9375rem;
    display: block;
    margin-bottom: 2px;
}

.wst-tech-detail {
    font-size: 0.75rem;
    color: var(--wst-muted);
}

/* ==========================================================================
   8. ACCORDION FAQS
   ========================================================================== */
.wst-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wst-faq-card {
    background-color: var(--wst-white);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--wst-border);
    cursor: pointer;
}

.wst-faq-card summary {
    font-weight: 700;
    color: var(--wst-dark);
    font-size: 1rem;
    outline: none;
    user-select: none;
}

.wst-faq-answer {
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    color: var(--wst-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ==========================================================================
   9. DIRECT STRATEGIST CALLOUT BAR
   ========================================================================== */
.wst-strategist-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid var(--wst-border-dark);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.wst-strategist-profile {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.wst-avatar-container {
    position: relative;
}

.wst-avatar-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--wst-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
}

.wst-online-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background-color: var(--wst-emerald);
    border: 2px solid var(--wst-dark);
    border-radius: 50%;
}

.wst-strategist-heading {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--wst-white);
    margin: 0 0 0.25rem 0;
}

.wst-strategist-contact {
    font-size: 0.875rem;
    color: #94a3b8;
    margin: 0;
}

.wst-strategist-contact a {
    color: #38bdf8;
    font-weight: 700;
    text-decoration: none;
}

.wst-strategist-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.wst-btn-call-desk {
    background-color: var(--wst-emerald);
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    color: var(--wst-white);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.15s ease;
}

.wst-btn-call-desk:hover {
    background-color: #059669;
}

.wst-btn-email-desk {
    background-color: var(--wst-border-dark);
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    color: var(--wst-white);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.15s ease;
}

.wst-btn-email-desk:hover {
    background-color: #475569;
}