/* Become an Advocate Page - Additional Styles */

/* Body spacing for fixed navigation */
body {
    padding-top: 80px;
}

/* Top banner positioning */
.top-banner {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 99;
}


/* Ensure proper centering */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.875rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
}

.content-section .container {
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 1rem;
    width: 100%;
    display: block;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin: 0 auto;
    letter-spacing: -0.02em;
    text-align: center;
    display: block;
}

.section-subtitle {
    font-size: 1.125rem;
    opacity: 0.7;
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.6;
    display: block;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
    text-align: left;
}

.column {
    text-align: left;
}

.column p {
    margin-bottom: 1rem;
    line-height: 1.8;
    text-align: left;
}

@media (max-width: 768px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Highlight Box */
.highlight-box {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 2rem;
}

.highlight-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.6;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 600;
}

/* Salary Breakdown */
.salary-breakdown {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    text-align: center;
}

.salary-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.salary-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.salary-card.featured {
    background: rgba(74, 144, 226, 0.1);
    border: 2px solid rgba(74, 144, 226, 0.3);
    transform: scale(1.05);
}

.salary-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.salary-tier {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999999;
    margin-bottom: 1rem;
    font-weight: 600;
}

.salary-card.featured .salary-tier {
    color: #4a90e2;
}

.salary-range {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.salary-annual {
    font-size: 1rem;
    color: #999999;
    margin-bottom: 1.5rem;
}

.salary-details {
    list-style: none;
    padding: 0;
    text-align: left;
}

.salary-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9375rem;
    opacity: 0.8;
}

.salary-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4a90e2;
}

@media (max-width: 1024px) {
    .salary-breakdown {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .salary-card.featured {
        transform: scale(1);
    }
    
    .salary-card.featured:hover {
        transform: translateY(-4px);
    }
}

/* Income Factors */
.income-factors {
    margin-top: 4rem;
    text-align: center;
}

.income-factors h3 {
    font-size: 1.75rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 2rem;
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.factor-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
}

.factor-card i {
    width: 32px;
    height: 32px;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.factor-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.factor-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .factors-grid {
        grid-template-columns: 1fr;
    }
}

/* Steps Container */
.steps-container {
    display: grid;
    gap: 2rem;
    text-align: left;
}

.step-card {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    text-align: left;
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 2.5rem;
    background: #000000;
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 600;
    border: 3px solid #ffffff;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.step-card > p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.step-actions {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    padding: 1.5rem;
}

.step-actions strong {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.step-actions ul {
    list-style: none;
    padding: 0;
}

.step-actions li {
    padding: 0.375rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9375rem;
}

.step-actions li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4a90e2;
}

@media (max-width: 768px) {
    .step-card {
        padding: 2rem 1.5rem;
    }
    
    .step-number {
        left: 1.5rem;
    }
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    width: 32px;
    height: 32px;
    color: #4a90e2;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Profile Showcase */
.profile-showcase {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.profile-showcase h3 {
    font-size: 1.75rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 2rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.showcase-item i {
    width: 20px;
    height: 20px;
    color: #4a90e2;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-showcase {
        padding: 2rem 1.5rem;
    }
}

/* CTA Buttons */
.cta-button-container {
    text-align: center;
    margin-top: 3rem;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #ffffff;
    border: none;
    border-radius: 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.3);
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(74, 144, 226, 0.4);
}

.cta-button-large i {
    width: 20px;
    height: 20px;
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Requirements Content */
.requirements-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.requirement-box {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.requirement-box.important {
    background: rgba(74, 144, 226, 0.05);
    border: 2px solid rgba(74, 144, 226, 0.2);
}

.requirement-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.requirement-box p {
    line-height: 1.8;
}

.styled-list {
    list-style: none;
    padding: 0;
}

.styled-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.7;
}

.styled-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-size: 1.5rem;
    line-height: 1;
}

.styled-list strong {
    display: block;
    margin-bottom: 0.25rem;
}

.important-note {
    display: flex;
    gap: 1rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.important-note i {
    width: 24px;
    height: 24px;
    color: #ff9800;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.important-note strong {
    color: #ff9800;
}

/* Outlook Grid */
.outlook-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.outlook-card {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

.outlook-stat {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: #4a90e2;
}

.outlook-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.outlook-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .outlook-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .outlook-grid {
        grid-template-columns: 1fr;
    }
}

/* Market Insights */
.market-insights {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    padding: 2.5rem;
}

.market-insights h3 {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.trends-list {
    display: grid;
    gap: 1.5rem;
}

.trend-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.trend-item i {
    width: 24px;
    height: 24px;
    color: #4a90e2;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.trend-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    opacity: 0.9;
}

.testimonial-quote::before {
    content: '"';
    font-size: 2rem;
    color: #4a90e2;
    line-height: 0;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.875rem;
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
    text-align: left;
}

.faq-accordion-item {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.03);
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: #4a90e2;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-accordion-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-accordion-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    line-height: 1.8;
    opacity: 0.9;
    margin: 0;
}

/* Final CTA */
.final-cta {
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.large-text {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-button-large.secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.cta-button-large.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
}

.trust-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    opacity: 0.8;
}

.trust-item i {
    width: 18px;
    height: 18px;
    color: #4a90e2;
}

@media (max-width: 640px) {
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button-large {
        width: 100%;
        justify-content: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Footer */
.site-footer {
    background: #000000;
    color: #ffffff;
    padding: 4rem 0 2rem;
    border-top: 1px solid #333333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-section p {
    font-size: 0.9375rem;
    line-height: 1.7;
    opacity: 0.7;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .site-footer {
        padding: 3rem 0 1.5rem;
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .content-section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}
