/* About Page Specific Styles - Modern Design */

/* Fix header overlap issue */
body {
    padding-top: 90px !important;
}

/* About Page Specific Hero Overrides */
.hero-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

/* Remove hero image on non-index pages */
.hero-image {
    display: none;
}

/* About Page Hero Text Overrides */
.hero-title {
    color: black !important;
}

.hero-subtitle {
    color: black !important;
}

/* Section Dividers */
.section-divider {
    height: 2px;
    background: #ffc107;
    margin: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: none;
}

/* Section Spacing - Compact Design */
.section-spacing {
    padding: 4rem 0 !important;
    margin: 0 !important;
    position: relative;
}

.section-spacing.bg-light {
    margin: 0 !important;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%) !important;
}

/* Statistics Section - Modern Design */
.stats-section {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
    padding: 4rem 0 !important;
    margin: 0 !important;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="stats-bg" cx="50%" cy="50%"><stop offset="0%" stop-color="%2316a34a" stop-opacity="0.02"/><stop offset="100%" stop-color="%2315803d" stop-opacity="0"/></radialGradient></defs><circle cx="300" cy="200" r="120" fill="url(%23stats-bg)"/><circle cx="700" cy="500" r="100" fill="url(%23stats-bg)"/><circle cx="200" cy="700" r="80" fill="url(%23stats-bg)"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.stat-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    padding: 2rem 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Content Block - Compact */
.content-block {
    padding: 2rem 0;
}

.image-block {
    padding: 1rem 0;
}

/* Timeline Styles - Modern Compact */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #3b82f6, #1d4ed8);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.timeline-item:nth-child(odd) {
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 3rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 3rem;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    z-index: 2;
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.timeline-content p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Button Spacing - Modern */
.btn {
    margin: 0.5rem 0 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 10 !important;
    position: relative !important;
    transition: all 0.3s ease;
}

.hero-actions {
    margin-top: 2rem !important;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions .btn {
    margin: 0 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 10 !important;
    position: relative !important;
}

/* Content Spacing - Compact */
.section-title {
    margin-bottom: 1rem !important;
    padding-top: 1rem !important;
    background: linear-gradient(135deg, #dc2626, #fbbf24, #000000, #dc2626, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    margin-bottom: 2rem !important;
    color: black !important;
}


/* Service Cards - Modern Design */
.service-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem !important;
    padding: 2rem 1.5rem !important;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

.service-icon {
    margin-bottom: 1rem !important;
}

.service-icon .material-icons {
    font-size: 2.5rem;
    color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.1));
    padding: 1rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service-title {
    margin-bottom: 1rem !important;
    color: var(--gray-900);
    font-weight: 600;
    font-size: 1.2rem;
}

.service-description {
    margin-bottom: 1rem !important;
    color: var(--gray-600);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    body {
        padding-top: 70px !important;
    }

    .hero-section {
        min-height: 40vh;
        padding: 2rem 0;
    }
    
    .section-spacing {
        padding: 3rem 0 !important;
        margin: 0 !important;
    }
    
    .stats-section {
        padding: 3rem 0 !important;
        margin: 0 !important;
    }
    
    .content-block {
        padding: 1.5rem 0;
        text-align: center;
    }
    
    .timeline::before {
        left: 2rem;
    }
    
    .timeline-item {
        padding-left: 4rem;
        padding-right: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
    }
    
    .timeline-year {
        left: 2rem;
        transform: translateX(-50%);
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .timeline-content {
        padding: 1rem;
    }
    
    .hero-actions {
        margin-top: 1.5rem !important;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        margin: 0.5rem 0 !important;
        width: 100%;
        max-width: 280px;
    }

    .pricing-highlights {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .pricing-highlight-item {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem !important;
    }
    
    .service-icon .material-icons {
        font-size: 2rem;
        padding: 0.8rem;
    }
    
    .cta-section {
        padding: 3rem 0 !important;
    }
    
    .cta-benefits {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .cta-benefit-item {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .cta-trust-indicators {
        gap: 2rem;
    }

    .trust-number {
        font-size: 1.5rem;
    }
    
    .cta-actions .btn {
        margin: 0.5rem 0.25rem !important;
        display: inline-block;
        min-width: 110px;
        font-size: 0.85rem !important;
        padding: 0.5rem 1.2rem !important;
        min-height: 44px !important;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 35vh;
        padding: 1.5rem 0;
    }
    
    .section-spacing {
        padding: 2.5rem 0 !important;
        margin: 0 !important;
    }
    
    .stats-section {
        padding: 2.5rem 0 !important;
        margin: 0 !important;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-card {
        padding: 1.2rem 0.8rem;
    }
    
    .timeline-item {
        padding-left: 3rem;
        margin-bottom: 1.2rem;
    }
    
    .timeline-year {
        left: 1.5rem;
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .timeline-content {
        padding: 0.8rem;
    }
    
    .timeline-content h4 {
        font-size: 1rem;
    }
    
    .timeline-content p {
        font-size: 0.8rem;
    }
    
    .hero-actions {
        margin-top: 1.2rem !important;
    }
    
    .hero-actions .btn {
        margin: 0.3rem 0 !important;
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .pricing-highlight-item {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .service-card {
        padding: 1.2rem 0.8rem !important;
    }
    
    .service-icon .material-icons {
        font-size: 1.8rem;
        padding: 0.6rem;
    }
    
    .cta-section {
        padding: 2.5rem 0 !important;
    }
    
    .cta-trust-indicators {
        gap: 1.5rem;
    }

    .trust-number {
        font-size: 1.2rem;
    }
    
    .cta-actions .btn {
        margin: 0.3rem 0.2rem !important;
        min-width: 100px;
        font-size: 0.8rem !important;
        padding: 0.4rem 1rem !important;
        min-height: 40px !important;
    }
}

/* CTA Section - Modern Design */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    overflow: hidden;
    margin: 0 !important;
    padding: 4rem 0 !important;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="cta-bg" cx="50%" cy="50%"><stop offset="0%" stop-color="%23f59e0b" stop-opacity="0.02"/><stop offset="100%" stop-color="%23d97706" stop-opacity="0"/></radialGradient></defs><circle cx="250" cy="250" r="150" fill="url(%23cta-bg)"/><circle cx="750" cy="500" r="120" fill="url(%23cta-bg)"/><circle cx="400" cy="750" r="100" fill="url(%23cta-bg)"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.cta-content {
    padding: 2rem !important;
    position: relative;
    z-index: 2;
}

.cta-actions {
    margin-top: 1.5rem !important;
}

.cta-actions .btn {
    margin: 0.5rem 0.5rem !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 10 !important;
    position: relative !important;
    font-size: 0.9rem !important;
    padding: 0.6rem 1.5rem !important;
    min-height: 48px !important;
    min-width: 120px !important;
    border-radius: 25px !important;
    transition: all 0.3s ease;
}

.cta-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* CTA Enhancement Styles - Matching Pricing Page */
.cta-content-enhanced {
    position: relative;
    z-index: 2;
}

.cta-benefits {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    font-weight: 600;
    color: #f59e0b;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cta-benefit-item:hover {
    background: rgba(245, 158, 11, 0.15);
    transform: translateY(-2px);
}

.cta-benefit-item .material-icons {
    font-size: 1.1rem;
}

.cta-trust-indicators {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 0.2rem;
}

.trust-label {
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Badge Styles */

.lead-text {
    color: black !important;
}

/* Pricing Highlights - Matching Pricing Page */
.pricing-highlights {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    font-weight: 600;
    color: #3b82f6;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.pricing-highlight-item:hover {
    background: rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.pricing-highlight-item .material-icons {
    font-size: 1.1rem;
}

/* Center Hero Content */
.hero-content {
    text-align: center;
}

.hero-title {
    text-align: center;
}

.hero-subtitle {
    text-align: center;
}

.hero-actions {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Center all buttons in hero */
.hero-actions .btn {
    margin: 0;
}
