/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

.eviction-lp * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.eviction-lp {
    font-family: 'Outfit', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #B0B3BF;
    background: #00150F;
    overflow-x: hidden;
    line-height: 1.7;
    scroll-behavior: smooth;
}

.eviction-lp img {
    max-width: 100%;
    height: auto;
}

.eviction-lp a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   ANIMATION KEYFRAMES
   ============================================ */
@keyframes evFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes evFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes evPulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 208, 148, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 208, 148, 0.5); }
}

.eviction-lp .ev-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.eviction-lp .ev-animate.ev-visible {
    opacity: 1;
    transform: translateY(0);
}

.eviction-lp .ev-animate-delay-1 { transition-delay: 0.1s; }
.eviction-lp .ev-animate-delay-2 { transition-delay: 0.2s; }
.eviction-lp .ev-animate-delay-3 { transition-delay: 0.3s; }
.eviction-lp .ev-animate-delay-4 { transition-delay: 0.4s; }
.eviction-lp .ev-animate-delay-5 { transition-delay: 0.5s; }
.eviction-lp .ev-animate-delay-6 { transition-delay: 0.6s; }

/* ============================================
   SECTION BASE STYLES
   ============================================ */
.eviction-lp .ev-section {
    padding: 100px 24px;
    max-width: 100%;
}

.eviction-lp .ev-container {
    max-width: 1100px;
    margin: 0 auto;
}

.eviction-lp .ev-section-dark {
    background: #00150F;
}

.eviction-lp .ev-section-alt {
    background: #0E221E;
}

.eviction-lp .ev-section-dark2 {
    background: #0A191E;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.eviction-lp .ev-eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #00D094;
    margin-bottom: 20px;
}

.eviction-lp .ev-headline {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 24px;
}

.eviction-lp .ev-subheadline {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 600px;
}

.eviction-lp .ev-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.15;
}

.eviction-lp .ev-section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    max-width: 550px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* ============================================
   BUTTONS
   ============================================ */
.eviction-lp .ev-btn-primary {
    display: inline-block;
    background: #00D094;
    color: #00150F;
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    padding: 18px 48px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.3px;
}

.eviction-lp .ev-btn-primary:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
    box-shadow: 0 8px 30px rgba(0, 208, 148, 0.35);
}

.eviction-lp .ev-btn-ghost {
    display: inline-block;
    background: transparent;
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 600;
    padding: 18px 48px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.eviction-lp .ev-btn-ghost:hover {
    border-color: #00D094;
    color: #00D094;
    transform: scale(1.03);
}

/* ============================================
   SECTION 1 — HERO
   ============================================ */
.eviction-lp .ev-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, #00150F 0%, #0A1F1A 50%, #00150F 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 24px 100px;
}

.eviction-lp .ev-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(0, 208, 148, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.eviction-lp .ev-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.eviction-lp .ev-hero .ev-subheadline {
    margin: 0 auto 40px;
}

.eviction-lp .ev-hero-scroll-link {
    display: block;
    margin-top: 24px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
    cursor: pointer;
}

.eviction-lp .ev-hero-scroll-link:hover {
    color: #00D094;
}

/* Hero attorney image */
.eviction-lp .ev-hero-attorney {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid rgba(0, 208, 148, 0.4);
    margin: 0 auto 36px;
    display: block;
    box-shadow: 0 0 40px rgba(0, 208, 148, 0.15);
}

/* ============================================
   SECTION 2 — TRUST BAR
   ============================================ */
.eviction-lp .ev-trust-bar {
    padding: 70px 24px;
}

.eviction-lp .ev-trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.eviction-lp .ev-trust-item {
    text-align: center;
}

.eviction-lp .ev-trust-number {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1;
}

.eviction-lp .ev-trust-number .ev-star {
    color: #00D094;
}

.eviction-lp .ev-trust-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* ============================================
   SECTION 3 — CONTACT FORM
   ============================================ */
.eviction-lp .ev-form-section {
    padding: 100px 24px;
}

.eviction-lp .ev-form-wrapper {
    max-width: 560px;
    margin: 0 auto;
}

.eviction-lp .ev-form-group {
    margin-bottom: 20px;
}

.eviction-lp .ev-form-input,
.eviction-lp .ev-form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 16px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    transition: all 0.3s ease;
    outline: none;
}

.eviction-lp .ev-form-input::placeholder,
.eviction-lp .ev-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.eviction-lp .ev-form-input:focus,
.eviction-lp .ev-form-textarea:focus {
    border-color: #00D094;
    box-shadow: 0 0 0 3px rgba(0, 208, 148, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.eviction-lp .ev-form-textarea {
    resize: vertical;
    min-height: 100px;
}

.eviction-lp .ev-form-submit {
    width: 100%;
    margin-top: 8px;
}

.eviction-lp .ev-form-disclaimer {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 16px;
    line-height: 1.5;
}

/* ============================================
   LAWMATICS FORM DARK THEME OVERRIDES
   ============================================ */
.ev-form-wrapper form,
.ev-form-wrapper .lm-form-container,
.ev-form-wrapper [class*="lm-"] {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.ev-form-wrapper input[type="text"],
.ev-form-wrapper input[type="email"],
.ev-form-wrapper input[type="tel"],
.ev-form-wrapper input[type="number"],
.ev-form-wrapper textarea {
    width: 100% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 10px !important;
    padding: 16px 20px !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 16px !important;
    color: #FFFFFF !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    box-sizing: border-box !important;
}

.ev-form-wrapper input::placeholder,
.ev-form-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.35) !important;
}

.ev-form-wrapper input:focus,
.ev-form-wrapper select:focus,
.ev-form-wrapper textarea:focus {
    border-color: #00D094 !important;
    box-shadow: 0 0 0 3px rgba(0, 208, 148, 0.15) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    outline: none !important;
}

.ev-form-wrapper select {
    width: 100% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 10px !important;
    padding: 16px 20px !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 16px !important;
    color: #FFFFFF !important;
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2300D094' d='M6 8L0 0h12z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    background-size: 12px !important;
}

.ev-form-wrapper select option {
    background: #0E221E !important;
    color: #FFFFFF !important;
}

.ev-form-wrapper label,
.ev-form-wrapper .lm-label {
    color: rgba(255, 255, 255, 0.75) !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-bottom: 6px !important;
    display: block !important;
}

.ev-form-wrapper button[type="submit"],
.ev-form-wrapper input[type="submit"],
.ev-form-wrapper .lm-submit-btn {
    background: #00D094 !important;
    color: #00150F !important;
    border: none !important;
    border-radius: 10px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 17px !important;
    padding: 18px 48px !important;
    width: 100% !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 8px !important;
    letter-spacing: 0.3px !important;
}

.ev-form-wrapper button[type="submit"]:hover,
.ev-form-wrapper input[type="submit"]:hover,
.ev-form-wrapper .lm-submit-btn:hover {
    transform: scale(1.03) !important;
    filter: brightness(1.1) !important;
    box-shadow: 0 8px 30px rgba(0, 208, 148, 0.35) !important;
}

.ev-form-wrapper p,
.ev-form-wrapper small,
.ev-form-wrapper span,
.ev-form-wrapper .lm-consent-text {
    color: rgba(255, 255, 255, 0.45) !important;
    font-family: 'Outfit', sans-serif !important;
}

.ev-form-wrapper a {
    color: #00D094 !important;
}

.ev-form-wrapper div[style*="background"] {
    background: transparent !important;
}

.ev-form-wrapper img {
    display: none !important;
}

/* Dark-mode hack for Lawmatics cross-origin iframe */
.ev-form-wrapper iframe {
    filter: invert(1) hue-rotate(180deg) brightness(1.05) contrast(0.9);
    border: none !important;
    border-radius: 12px;
    width: 100% !important;
    min-height: 600px;
}

/* ============================================
   SECTION 4 — WHAT WE HANDLE (Cards)
   ============================================ */
.eviction-lp .ev-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.eviction-lp .ev-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.4s ease;
}

.eviction-lp .ev-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 208, 148, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.eviction-lp .ev-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.eviction-lp .ev-card-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
}

/* ============================================
   SECTION 5 — PROCESS (Timeline)
   ============================================ */
.eviction-lp .ev-timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.eviction-lp .ev-timeline::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #00D094 0%, rgba(0, 208, 148, 0.1) 100%);
    z-index: 0;
}

.eviction-lp .ev-timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 48px;
    position: relative;
}

.eviction-lp .ev-timeline-item:last-child {
    margin-bottom: 0;
}

.eviction-lp .ev-timeline-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #0A191E;
    border: 2px solid #00D094;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #00D094;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 8px #0A191E;
}

.eviction-lp .ev-timeline-content {
    padding-top: 8px;
}

.eviction-lp .ev-timeline-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.eviction-lp .ev-timeline-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

/* ============================================
   SECTION 6 — WHY US
   ============================================ */
.eviction-lp .ev-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.eviction-lp .ev-why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.eviction-lp .ev-why-item:hover {
    border-color: rgba(0, 208, 148, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.eviction-lp .ev-why-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 208, 148, 0.1);
    border-radius: 12px;
}

.eviction-lp .ev-why-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.eviction-lp .ev-why-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.55;
}

/* ============================================
   SECTION 7 — TESTIMONIALS
   ============================================ */
.eviction-lp .ev-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.eviction-lp .ev-testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 36px 28px;
    position: relative;
}

.eviction-lp .ev-testimonial-quote {
    font-size: 48px;
    color: #00D094;
    line-height: 1;
    margin-bottom: 16px;
    font-family: Georgia, serif;
    opacity: 0.6;
}

.eviction-lp .ev-testimonial-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    margin-bottom: 24px;
    font-style: italic;
}

.eviction-lp .ev-testimonial-stars {
    color: #00D094;
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.eviction-lp .ev-testimonial-name {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
}

.eviction-lp .ev-testimonial-source {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

/* ============================================
   SECTION 8 — FINAL CTA
   ============================================ */
.eviction-lp .ev-final-cta {
    text-align: center;
    background: linear-gradient(180deg, #0E221E 0%, #00150F 50%, #0A191E 100%);
    position: relative;
}

.eviction-lp .ev-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 208, 148, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.eviction-lp .ev-final-cta .ev-container {
    position: relative;
    z-index: 2;
}

.eviction-lp .ev-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* ============================================
   SECTION 9 — FOOTER
   ============================================ */
.eviction-lp .ev-footer {
    padding: 50px 24px;
    text-align: center;
    background: #00150F;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.eviction-lp .ev-footer-main {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.eviction-lp .ev-footer-contact {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
}

.eviction-lp .ev-footer-contact a {
    color: #00D094;
    transition: opacity 0.3s ease;
}

.eviction-lp .ev-footer-contact a:hover {
    opacity: 0.8;
}

.eviction-lp .ev-footer-serving {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.eviction-lp .ev-footer-disclaimer {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .eviction-lp .ev-section {
        padding: 60px 20px;
    }

    .eviction-lp .ev-hero {
        padding: 60px 20px 40px;
        min-height: auto;
    }

    .eviction-lp .ev-headline {
        font-size: 36px;
    }

    .eviction-lp .ev-section-title {
        font-size: 32px;
    }

    .eviction-lp .ev-subheadline {
        font-size: 17px;
    }

    .eviction-lp .ev-btn-primary,
    .eviction-lp .ev-btn-ghost {
        width: 100%;
        padding: 18px 32px;
        font-size: 16px;
    }

    .eviction-lp .ev-trust-items {
        gap: 40px;
    }

    .eviction-lp .ev-trust-number {
        font-size: 32px;
    }

    .eviction-lp .ev-cards-grid {
        grid-template-columns: 1fr;
    }

    .eviction-lp .ev-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .eviction-lp .ev-why-grid {
        grid-template-columns: 1fr;
    }

    .eviction-lp .ev-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .eviction-lp .ev-cta-buttons .ev-btn-primary,
    .eviction-lp .ev-cta-buttons .ev-btn-ghost {
        width: 100%;
        max-width: 360px;
    }

    .eviction-lp .ev-timeline::before {
        left: 21px;
    }

    .eviction-lp .ev-timeline-number {
        width: 44px;
        height: 44px;
        font-size: 18px;
        box-shadow: 0 0 0 8px #0A191E;
    }

    .eviction-lp .ev-hero-attorney {
        width: 140px;
        height: 140px;
    }

    .eviction-lp .ev-section-subtitle {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .eviction-lp .ev-headline {
        font-size: 30px;
    }

    .eviction-lp .ev-section-title {
        font-size: 28px;
    }

    .eviction-lp .ev-trust-items {
        flex-direction: column;
        gap: 16px;
    }

    .eviction-lp .ev-hero-attorney {
        width: 120px;
        height: 120px;
    }
}