/* Traditional, Emotionally Compelling Design */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1e3a5f;
    --navy-dark: #152a45;
    --burgundy: #8b2635;
    --burgundy-light: #a53646;
    --gold: #c9a961;
    --gold-light: #d4b979;
    --cream: #faf8f3;
    --text-dark: #2c2c2c;
    --text-gray: #5a5a5a;
    --border-light: #e5e0d8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    background: var(--cream);
}

h1, h2, h3, h4 {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: white;
    border-bottom: 3px solid var(--navy);
    padding: 25px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo h1 {
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 5px;
}

.tagline {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 600;
}

.phone-header {
    text-align: right;
}

.phone-label {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.phone-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--burgundy);
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: var(--burgundy-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
}

.btn-primary {
    background: var(--burgundy);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 38, 53, 0.25);
}

.btn-primary:hover {
    background: var(--burgundy-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 38, 53, 0.35);
}

.btn-secondary {
    background: white;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-secondary:hover {
    background: var(--navy);
    color: white;
}

.btn-block {
    width: 100%;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.95), rgba(21, 42, 69, 0.95)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23152a45" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 95, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 900;
    line-height: 1.2;
}

.hero-lead {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-support {
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.8;
    opacity: 0.9;
    font-weight: 400;
}

.hero-promise {
    display: flex;
    gap: 20px;
    align-items: start;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 35px;
}

.promise-icon {
    font-size: 42px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.promise-text strong {
    font-size: 20px;
    display: block;
    margin-bottom: 8px;
}

.promise-text p {
    font-size: 16px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

.trust-item strong {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-item strong:before {
    content: "✓";
    display: inline-block;
    width: 22px;
    height: 22px;
    background: rgba(201, 169, 97, 0.3);
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    color: var(--gold);
}

/* Understanding Section */
.understanding-section {
    padding: 80px 0;
    background: white;
}

.understanding-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.understanding-content h2 {
    font-size: 42px;
    color: var(--navy);
    margin-bottom: 20px;
}

.lead {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.impact-list {
    display: grid;
    gap: 30px;
}

.impact-item {
    padding: 25px;
    background: var(--cream);
    border-left: 4px solid var(--burgundy);
    border-radius: 4px;
}

.impact-item h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 10px;
}

.impact-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Form Sidebar */
.form-sidebar {
    position: sticky;
    top: 20px;
}

.form-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.form-card h3 {
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 15px;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-light);
    border-radius: 4px;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy);
}

.form-group textarea {
    resize: vertical;
}

.form-assurance {
    text-align: center;
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-top: 10px;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--navy);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-callout {
    text-align: center;
    padding: 30px;
    background: white;
    border: 2px solid var(--gold);
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
}

.video-callout p {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Justice Section */
.justice-section {
    padding: 80px 0;
    background: white;
}

.compensation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.compensation-card {
    background: var(--cream);
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid var(--navy);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compensation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.comp-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.compensation-card h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 12px;
}

.compensation-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
}

/* Results Section */
.results-section {
    padding: 80px 0;
    background: var(--cream);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 40px;
}

.result-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--gold);
}

.result-amount {
    font-size: 42px;
    font-weight: 900;
    color: var(--burgundy);
    margin-bottom: 20px;
    font-family: 'Merriweather', serif;
}

.result-case {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.6;
    font-weight: 600;
}

.result-impact {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    font-style: italic;
}

.results-note {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.results-note p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: white;
}

.partners-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

.partner-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.partner-image-wrapper img {
    width: 100%;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(30, 58, 95, 0.95);
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    color: white;
}

.experience-badge strong {
    font-size: 36px;
    display: block;
    color: var(--gold);
    margin-bottom: 5px;
}

.experience-badge span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-text {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.partner-bio h3 {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 8px;
}

.partner-title {
    color: var(--burgundy);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.partner-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.partner-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.partner-credentials span {
    font-size: 13px;
    color: var(--navy);
    font-weight: 600;
    padding: 6px 12px;
    background: var(--cream);
    border-radius: 4px;
}

.partners-promise {
    background: var(--navy);
    color: white;
    padding: 40px 50px;
    border-radius: 8px;
    text-align: center;
}

.partners-promise p {
    font-size: 20px;
    line-height: 1.8;
    font-style: italic;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testimonial-card {
    background: white;
    padding: 40px 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.quote-mark {
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 72px;
    font-family: Georgia, serif;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--navy);
    font-size: 16px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 2px solid var(--border-light);
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.faq-question:hover {
    color: var(--burgundy);
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    color: var(--burgundy);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding-bottom: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-bottom: 25px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 16px;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: var(--cream);
}

.final-cta-content h2 {
    font-size: 48px;
    color: var(--navy);
    text-align: center;
    margin-bottom: 20px;
}

.final-lead {
    font-size: 20px;
    color: var(--text-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.final-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.final-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.final-form h3 {
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.final-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 2px solid var(--border-light);
}

.sidebar-box h4 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 15px;
}

.sidebar-box p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.phone-cta {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: var(--burgundy);
    text-decoration: none;
    text-align: center;
    margin: 20px 0;
    transition: color 0.3s ease;
}

.phone-cta:hover {
    color: var(--burgundy-light);
}

.availability {
    text-align: center;
    font-size: 13px;
    color: var(--text-gray);
}

.next-steps {
    padding-left: 20px;
    color: var(--text-gray);
}

.next-steps li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.sidebar-box.urgent {
    background: #fff9e6;
    border-color: var(--gold);
}

.sidebar-box.urgent strong {
    display: block;
    color: var(--burgundy);
    font-size: 18px;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background: var(--navy-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--gold);
}

.footer-col p,
.footer-col li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-phone {
    font-weight: 700;
    font-size: 20px;
    margin-top: 15px;
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .understanding-grid,
    .partners-content,
    .final-grid {
        grid-template-columns: 1fr;
    }
    
    .compensation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-header h2,
    .understanding-content h2 {
        font-size: 32px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .compensation-grid,
    .results-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .phone-header {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .form-card,
    .final-form {
        padding: 25px 20px;
    }
}