﻿/* ================================================
   divorce-papers.css
   Hybrid Utility-First Approach
   Palette: Navy #1e3a8a / Blue #2563eb / Tint #f0f5ff
   ================================================ */

/* Process Timeline */
.process-timeline-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 10px;
}

.process-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1.5px solid #3a60b4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3a60b4;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-dot {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #1e3a8a;
    color: #fff;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-text {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #1e3a8a;
    text-align: center;
}

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(37, 99, 235, 0.2);
    margin-top: 25px;
    margin-left: -15px;
    margin-right: -15px;
    z-index: 1;
}

@media (max-width: 576px) {
    .step-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .step-text {
        font-size: 10px;
        margin-top: 8px;
    }

    .step-line {
        margin-top: 19px;
    }

    .step-dot {
        width: 15px;
        height: 15px;
        font-size: 9px;
    }
}

/* Price / CTA Strip */
.cta-minimal {
    display: inline-block;
    background: #fff;
    border: 1px solid #dbeafe;
    border-radius: 8px;
    padding: 10px 20px;
}

.cta-inner {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-price {
    font-weight: 700;
    color: #1e3a8a;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
}

.cta-sep {
    width: 1px;
    height: 14px;
    background: #bfdbfe;
}

.cta-meta {
    font-size: 0.9rem;
    color: #6a99ff;
    font-weight: 500;
}

    .cta-meta i {
        color: #2563eb;
        margin-right: 4px;
        font-size: 0.85rem;
    }

@media (max-width: 576px) {
    .cta-minimal {
        padding: 8px 16px;
    }

    .cta-price {
        font-size: 1rem;
    }

    .cta-meta {
        font-size: 0.8rem;
    }
}

/* Form Container */
.form-container {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.08);
    padding: 2.5rem;
    margin: 3rem auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 900px;
}

    .form-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(30, 58, 138, 0.14);
    }

.form-section {
    margin-bottom: 2.5rem;
}

    .form-section h3 {
        font-size: 1.75rem;
        font-weight: 600;
        color: #1e3a8a;
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
    }

        .form-section h3::after {
            content: '';
            width: 50px;
            height: 3px;
            background: #2563eb;
            position: absolute;
            bottom: -5px;
            left: 0;
            border-radius: 2px;
        }

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

    .form-group label {
        font-size: 0.95rem;
        font-weight: 500;
        color: #1e3a8a;
        margin-bottom: 0.5rem;
        display: block;
        transition: color 0.3s ease;
    }

.form-control {
    border: 1px solid #93c5fd;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: #1e3a8a;
    transition: all 0.3s ease;
    background: #f4f4f4;
    width: 100%;
}

    .form-control:focus {
        outline: none;
        border-color: #2563eb;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
        background: white;
    }

    .form-control::placeholder {
        color: #6b85b5;
    }

.error,
.text-danger {
    color: #dc2626;
    font-size: 0.85rem;
}

.btn-primary {
    background: linear-gradient(90deg, #1e3a8a, #2563eb);
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    line-height: normal;
    text-decoration: none;
}

    .btn-primary:hover {
        background: linear-gradient(90deg, #2563eb, #1e3a8a);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
        color: white;
        text-decoration: none;
    }

.highlight-link {
    color: #3a60b4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .highlight-link:hover {
        color: #1e3a8a;
    }

/* Page Header Text */
.papers-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.papers-header p {
    font-size: 1.1rem;
    color: #1e3a8a;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}

/* Validation Summary */
.validation-summary {
    color: #dc2626;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border: 1px solid #dc2626;
    border-radius: 0.5rem;
    background: #fee2e2;
}

    .validation-summary ul {
        margin: 0;
        padding-left: 1.25rem;
    }

/* Why Choose Us – Two Column Split */
.trust-split-item {
    position: relative;
    padding-left: 28px;
    margin-bottom: 28px;
}

    .trust-split-item:last-child {
        margin-bottom: 0;
    }

.trust-dot {
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
}

.trust-split-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 6px;
    line-height: 1.4;
}

.trust-split-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

@media (max-width: 576px) {
    .trust-split-item {
        padding-left: 22px;
        margin-bottom: 24px;
    }

    .trust-dot {
        width: 8px;
        height: 8px;
        top: 5px;
    }

    .trust-split-title {
        font-size: 14px;
    }

    .trust-split-text {
        font-size: 13px;
        margin-bottom: 15px;
    }
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fc !important;
}

/* Font Awesome fix */
.fas {
    display: inline-block;
    line-height: 1;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .papers-header h1 {
        font-size: 1.5rem;
        text-align: left;
    }

    .papers-header p {
        font-size: 0.9rem;
        text-align: left;
        line-height: 1.6;
    }

    .form-container {
        padding: 2rem 0.75rem;
        margin-top: 1rem;
    }

    .form-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .btn-primary {
        width: 100%;
        padding: 0.75rem;
        height: 44px;
    }
}
