﻿:root
{
    --sunset-primary: #E5802D;
    --sunset-secondary: #D35400;
    --sunset-accent: #8E44AD;
    --sunset-dark: #2C3E50;
    --sunset-darker: #1a252f;
    --sunset-light: #FDF2E9;
    --sunset-cream: #FAE5D3;
    --sunset-gray: #5D6D7E;
    --sunset-teal: #1ABC9C;
    --sunset-blue: #3498DB;
}

/* ============================
   Page-Specific Accessibility
   ============================ */

/* High contrast focus for dark backgrounds (page-specific) */
.hero-section a:focus,
.hero-section button:focus,
.ai-banner-modern a:focus,
.benefits-section a:focus
{
    outline-color: #fff;
}

/* Accessible info trigger buttons */
.info-trigger
{
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 2px;
    border-radius: 50%;
}

    .info-trigger:focus
    {
        outline: 2px solid var(--sunset-primary);
        outline-offset: 2px;
    }

    .info-trigger:focus-visible
    {
        outline: 2px solid var(--sunset-primary);
        outline-offset: 2px;
    }

/* Ensure sufficient color contrast for links */
a
{
    color: var(--sunset-primary);
}

    a:hover,
    a:focus
    {
        color: var(--sunset-secondary);
    }

/* Hero Section - Darker, more sophisticated */
.hero-section
{
    background: linear-gradient(135deg, var(--sunset-dark) 0%, var(--sunset-darker) 100%);
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .hero-section::before
    {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23E5802D' fill-opacity='0.08' d='M0,160L48,170.7C96,181,192,203,288,197.3C384,192,480,160,576,165.3C672,171,768,213,864,218.7C960,224,1056,192,1152,165.3C1248,139,1344,117,1392,106.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
        background-size: cover;
    }

.hero-content
{
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo
{
    max-width: 500px;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}

.hero-title
{
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
}

.hero-subtitle
{
    font-size: 1.4rem;
    color: var(--sunset-primary);
    margin: 0 0 25px 0;
    font-weight: 400;
}

.hero-description
{
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    max-width: 825px;
    margin: 0 auto 35px auto;
}

.cta-button
{
    display: inline-block;
    padding: 16px 45px;
    background: var(--sunset-primary);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(229,128,45,0.4);
    transition: all 0.3s ease;
    margin: 5px;
}

    .cta-button:hover
    {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(229,128,45,0.5);
        background: var(--sunset-secondary);
    }

    .cta-button.secondary
    {
        background: transparent;
        border: 2px solid rgba(255,255,255,0.5);
        box-shadow: none;
    }

        .cta-button.secondary:hover
        {
            border-color: #fff;
            background: rgba(255,255,255,0.1);
        }

/* Feature Cards */
.features-section
{
    padding: 70px 20px;
    background: linear-gradient(135deg, #FAE5D3 0%, #FDF2E9 100%);
}

.section-title
{
    text-align: center;
    font-size: 2.2rem;
    color: var(--sunset-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-subtitle
{
    text-align: center;
    font-size: 1.1rem;
    color: var(--sunset-gray);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card
{
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
}

    .feature-card:hover
    {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        border-color: var(--sunset-primary);
    }

.feature-icon
{
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.feature-card h3
{
    color: var(--sunset-dark);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p
{
    color: var(--sunset-gray);
    line-height: 1.6;
    margin: 0;
}

.feature-card ul
{
    color: var(--sunset-gray);
    padding-left: 18px;
    margin: 15px 0 0 0;
}

    .feature-card ul li
    {
        margin-bottom: 8px;
        line-height: 1.5;
    }

/* AI Announcement Banner - Using accent color */
.ai-banner
{
    background: linear-gradient(135deg, #1a252f 0%, #2C3E50 100%);
    padding: 40px 20px;
    text-align: center;
    border-top: 4px solid var(--sunset-primary);
}

.ai-badge
{
    display: inline-block;
    background: linear-gradient(135deg, var(--sunset-secondary) 0%, var(--sunset-primary) 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.ai-banner h2
{
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.ai-banner p
{
    color: rgba(255,255,255,0.75);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Benefits Grid */
.benefits-section
{
    padding: 70px 20px;
    background: #f8f9fa;
}

.benefit-item
{
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

.benefit-check
{
    width: 22px;
    height: 22px;
    background: var(--sunset-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

    .benefit-check svg
    {
        width: 12px;
        height: 12px;
    }

.benefit-text
{
    color: var(--sunset-dark);
    font-size: 1rem;
    line-height: 1.5;
}

/* Colorado Tax Integration Section */
.tax-section
{
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a252f 0%, #2C3E50 40%, #34495E 100%);
    position: relative;
    overflow: hidden;
}

    .tax-section::before
    {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(229,128,45,0.08) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .tax-section::after
    {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -5%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(26,188,156,0.06) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .tax-section .section-title
    {
        color: #fff;
    }

.tax-badge
{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(229,128,45,0.15), rgba(229,128,45,0.05));
    border: 1px solid rgba(229,128,45,0.3);
    border-radius: 30px;
    padding: 8px 20px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sunset-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

    .tax-badge i
    {
        font-size: 1rem;
    }

.tax-description
{
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 35px;
}

    .tax-description strong
    {
        color: var(--sunset-teal);
    }

.tax-benefit-card
{
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255,255,255,0.04);
    border-left: 3px solid var(--sunset-teal);
    border-radius: 0 10px 10px 0;
    padding: 18px 22px;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

    .tax-benefit-card:hover
    {
        background: rgba(255,255,255,0.08);
        border-left-color: var(--sunset-primary);
        transform: translateX(6px);
    }

    .tax-benefit-card .benefit-check
    {
        background: linear-gradient(135deg, var(--sunset-teal), #16a085);
        box-shadow: 0 0 12px rgba(26,188,156,0.3);
        margin-top: 0;
    }

    .tax-benefit-card .benefit-text
    {
        color: rgba(255,255,255,0.9);
        font-size: 1.05rem;
        font-weight: 500;
    }

.tax-calc-wrapper
{
    text-align: center;
    padding: 20px 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}

    .tax-calc-wrapper::before
    {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 440px;
        height: 380px;
        background: radial-gradient(circle, rgba(229,128,45,0.12) 0%, rgba(26,188,156,0.04) 50%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

/* Testimonials */
.testimonials-section
{
    padding: 70px 20px;
    background: #fff;
}

.testimonial-card
{
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    border-left: 4px solid var(--sunset-teal);
    margin: 10px;
    height: calc(100% - 20px);
}

.testimonial-quote
{
    font-size: 1.05rem;
    color: var(--sunset-dark);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author
{
    font-weight: 600;
    color: var(--sunset-dark);
}

.testimonial-company
{
    color: var(--sunset-primary);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section
{
    padding: 70px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.pricing-card
{
    background: #fff;
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    border: 2px solid transparent;
}

    .pricing-card:hover
    {
        border-color: var(--sunset-primary);
        box-shadow: 0 10px 40px rgba(229,128,45,0.15);
    }

    .pricing-card h4
    {
        color: var(--sunset-dark);
        font-size: 1.25rem;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .pricing-card p
    {
        color: var(--sunset-gray);
        line-height: 1.6;
        font-size: 0.95rem;
    }

.pricing-icon
{
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
}

/* Documents Section */
.documents-section
{
    padding: 70px 20px;
    background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
    color: #fff;
    position: relative;
}

    .documents-section::before
    {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle at 25% 40%, rgba(229,128,45,0.1) 0%, transparent 40%), radial-gradient(circle at 75% 60%, rgba(93,109,126,0.08) 0%, transparent 40%);
        pointer-events: none;
    }

    .documents-section .section-title
    {
        color: #fff;
    }

    .documents-section .section-subtitle
    {
        color: rgba(255,255,255,0.65);
    }

.doc-list
{
    list-style: none;
    padding: 0;
    margin: 0;
}

    .doc-list li
    {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        color: rgba(255,255,255,0.85);
        display: flex;
        align-items: center;
        font-size: 0.95rem;
    }

        .doc-list li::before
        {
            content: '✓';
            color: var(--sunset-teal);
            margin-right: 12px;
            font-weight: bold;
        }

/* Footer CTA */
.footer-cta
{
    background: var(--sunset-dark);
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

    .footer-cta h3
    {
        color: #fff;
        font-size: 1.8rem;
        margin-bottom: 25px;
        font-weight: 500;
    }

/* Responsive */
@media (max-width: 768px)
{
    .hero-title
    {
        font-size: 2rem;
    }

    .hero-subtitle
    {
        font-size: 1.1rem;
    }

    .hero-logo
    {
        max-width: 280px;
    }

    .section-title
    {
        font-size: 1.6rem;
    }

    .feature-card
    {
        margin-bottom: 20px;
    }
}

/* Vehicle Types Grid */
.vehicle-types-section
{
    padding: 60px 20px;
    background: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
    text-align: center;
    position: relative;
}

    .vehicle-types-section::before
    {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle at 50% 50%, rgba(229,128,45,0.08) 0%, transparent 50%);
        pointer-events: none;
    }

    .vehicle-types-section .section-title
    {
        color: #fff;
    }

    .vehicle-types-section .section-subtitle
    {
        color: rgba(255,255,255,0.7);
    }

.vehicle-types
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.vehicle-type
{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 25px;
    background: rgba(255,255,255,0.95);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    min-width: 110px;
    transition: all 0.3s ease;
    border: 1px solid rgba(229,128,45,0.2);
}

    .vehicle-type:hover
    {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        border-color: var(--sunset-primary);
    }

    .vehicle-type svg
    {
        width: 45px;
        height: 45px;
        margin-bottom: 8px;
    }

    .vehicle-type span
    {
        color: var(--sunset-dark);
        font-weight: 500;
        font-size: 0.9rem;
    }

/* Stats bar */
.stats-bar
{
    background: #fff;
    padding: 40px 20px;
    border-bottom: 1px solid #eee;
}

.stat-item
{
    text-align: center;
    padding: 15px;
}

.stat-number
{
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sunset-primary);
    display: block;
}

.stat-label
{
    color: var(--sunset-gray);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Info Icons and Tooltips */
.info-trigger
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--sunset-primary);
    border-radius: 50%;
    cursor: pointer;
    margin-left: 8px;
    transition: all 0.3s ease;
    vertical-align: middle;
    position: relative;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    font-family: Georgia, serif;
    text-decoration: none;
}

    .info-trigger::before
    {
        content: 'i';
    }

    .info-trigger:hover
    {
        transform: scale(1.15);
        box-shadow: 0 2px 10px rgba(26,188,156,0.4);
    }

    .info-trigger svg
    {
        display: none;
    }

.info-trigger-lg
{
    width: 24px;
    height: 24px;
}

    .info-trigger-lg svg
    {
        width: 14px;
        height: 14px;
    }

/* Feature card with more info indicator */
.feature-card.has-more-info
{
    position: relative;
}

    .feature-card.has-more-info::after
    {
        content: '';
        position: absolute;
        top: 15px;
        right: 15px;
        width: 8px;
        height: 8px;
        background: var(--sunset-teal);
        border-radius: 50%;
        animation: pulse-dot 2s infinite;
    }

@keyframes pulse-dot
{
    0%, 100%
    {
        opacity: 1;
        transform: scale(1);
    }

    50%
    {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* Clickable card styling */
.clickable-info
{
    cursor: pointer;
    position: relative;
}

    .clickable-info:hover
    {
        border-color: var(--sunset-teal) !important;
    }

/* More info badge */
.more-info-badge
{
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: rgba(26,188,156,0.1);
    border: 1px solid var(--sunset-teal);
    border-radius: 20px;
    color: var(--sunset-teal);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

    .more-info-badge:hover
    {
        background: var(--sunset-teal);
        color: #fff;
    }

    .more-info-badge svg
    {
        width: 14px;
        height: 14px;
    }

/* Tooltip content styling */
.tooltip-content
{
    max-width: 350px;
    padding: 5px;
}

    .tooltip-content h4
    {
        color: var(--sunset-dark);
        font-size: 1.1rem;
        margin: 0 0 10px 0;
        padding-bottom: 8px;
        border-bottom: 2px solid var(--sunset-teal);
    }

    .tooltip-content p
    {
        color: var(--sunset-gray);
        font-size: 0.9rem;
        line-height: 1.6;
        margin: 0 0 10px 0;
    }

    .tooltip-content ul
    {
        margin: 10px 0 0 0;
        padding-left: 18px;
        color: var(--sunset-gray);
        font-size: 0.85rem;
    }

        .tooltip-content ul li
        {
            margin-bottom: 6px;
            line-height: 1.4;
        }

    .tooltip-content .highlight
    {
        color: var(--sunset-primary);
        font-weight: 600;
    }

/* ===== MODERN PROFESSIONAL STYLES ===== */

/* AI Banner Modern */
.ai-banner-modern
{
    background: linear-gradient(135deg, #1a252f 0%, #2C3E50 50%, #1a252f 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

    .ai-banner-modern::before
    {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(229,128,45,0.12) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(211,84,0,0.12) 0%, transparent 50%);
        animation: gradient-shift 15s ease infinite;
    }

@keyframes gradient-shift
{
    0%, 100%
    {
        opacity: 0.6;
    }

    50%
    {
        opacity: 1;
    }
}

.ai-banner-content
{
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ai-badge-modern
{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(93,109,126,0.4) 0%, rgba(229,128,45,0.4) 100%);
    border: 2px solid rgba(229,128,45,0.5);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

    .ai-badge-modern i
    {
        font-size: 1.2rem;
        color: var(--sunset-primary);
    }

.ai-banner-title
{
    color: #fff;
    font-size: 2.8rem;
    margin: 0 0 20px 0;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.ai-banner-description
{
    color: rgba(255,255,255,0.9);
    max-width: 750px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    line-height: 1.7;
}

.ai-highlight-stats
{
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.ai-stat
{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

    .ai-stat:hover
    {
        background: rgba(255,255,255,0.15);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }

    .ai-stat i
    {
        font-size: 2rem;
        color: #ffd700;
    }

    .ai-stat span
    {
        color: #fff;
        font-weight: 600;
        font-size: 0.95rem;
    }

/* Features Section Modern */
.features-section-modern
{
    padding: 100px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header
{
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-label
{
    display: inline-block;
    color: var(--sunset-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    position: relative;
    padding: 0 20px;
}

    .section-label::before,
    .section-label::after
    {
        content: '';
        position: absolute;
        top: 50%;
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, var(--sunset-primary) 100%);
    }

    .section-label::before
    {
        left: -50px;
    }

    .section-label::after
    {
        right: -50px;
        background: linear-gradient(90deg, var(--sunset-primary) 0%, transparent 100%);
    }

.section-title-modern
{
    font-size: 2.8rem;
    color: var(--sunset-dark);
    margin: 0 0 20px 0;
    font-weight: 700;
    line-height: 1.2;
}

.section-subtitle-modern
{
    font-size: 1.15rem;
    color: var(--sunset-gray);
    margin: 0;
    line-height: 1.6;
}

/* Feature Card Modern */
.feature-card-modern
{
    background: #fff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

    .feature-card-modern:hover
    {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        border-color: var(--sunset-primary);
    }

    .feature-card-modern.ai-feature
    {
        border-top: 4px solid transparent;
        background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, var(--sunset-teal), var(--sunset-accent)) border-box;
        border-radius: 16px;
        border-width: 4px 0 0 0;
        border-style: solid;
    }

.feature-icon-wrapper
{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .feature-icon-wrapper::before
    {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(26,188,156,0.1) 0%, transparent 70%);
        animation: rotate-gradient 20s linear infinite;
    }

@keyframes rotate-gradient
{
    from
    {
        transform: rotate(0deg);
    }

    to
    {
        transform: rotate(360deg);
    }
}

.feature-icon-wrapper svg
{
    width: 100px;
    height: 100px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-modern:hover .feature-icon-wrapper svg
{
    filter: drop-shadow(0 12px 24px rgba(229,128,45,0.4)) drop-shadow(0 0 20px rgba(229,128,45,0.3));
    transform: scale(1.1) translateY(-5px);
}

/* SVG Icon Enhancements - Add Glow and Depth */
.feature-icon,
.pricing-icon
{
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon,
.pricing-card:hover .pricing-icon
{
    filter: drop-shadow(0 8px 20px rgba(229,128,45,0.4)) drop-shadow(0 0 15px rgba(229,128,45,0.25));
    transform: scale(1.08) rotate(2deg);
}

.feature-card-modern:hover .feature-icon
{
    animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse
{
    0%, 100%
    {
        filter: drop-shadow(0 12px 24px rgba(229,128,45,0.4)) drop-shadow(0 0 20px rgba(229,128,45,0.3));
    }

    50%
    {
        filter: drop-shadow(0 12px 24px rgba(229,128,45,0.5)) drop-shadow(0 0 30px rgba(229,128,45,0.4));
    }
}

/* Add gradient overlays to SVG elements */
.feature-card svg rect[fill="#3498DB"],
.feature-card svg rect[fill="#1ABC9C"],
.feature-card svg rect[fill="#E5802D"]
{
    transition: all 0.3s ease;
}

.feature-card:hover svg rect[fill="#E5802D"]
{
    filter: brightness(1.2);
}

.feature-card:hover svg rect[fill="#1ABC9C"]
{
    filter: brightness(1.15);
}

.feature-card:hover svg rect[fill="#3498DB"]
{
    filter: brightness(1.15);
}

/* Vehicle SVG Icons - Add color and depth */
.vehicle-type svg
{
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
    transition: all 0.3s ease;
}

.vehicle-type:hover svg
{
    filter: drop-shadow(0 6px 16px rgba(229,128,45,0.4));
    transform: scale(1.15) translateY(-3px);
}

/* Pricing Icons - Make them pop */
.pricing-icon
{
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover .pricing-icon
{
    filter: drop-shadow(0 10px 25px rgba(229,128,45,0.5)) drop-shadow(0 0 20px rgba(229,128,45,0.3));
    transform: scale(1.15) rotate(-5deg);
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float
{
    0%, 100%
    {
        transform: scale(1.15) rotate(-5deg) translateY(0);
    }

    50%
    {
        transform: scale(1.15) rotate(-5deg) translateY(-10px);
    }
}

/* Add shimmer effect to SVG on hover */
.feature-card-modern:hover .feature-icon-wrapper::after
{
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient( 45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70% );
    animation: shimmer 2s infinite;
}

@keyframes shimmer
{
    0%
    {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100%
    {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.feature-content
{
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-title
{
    color: var(--sunset-dark);
    font-size: 1.5rem;
    margin: 0 0 15px 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .feature-title .info-trigger
    {
        width: 24px;
        height: 24px;
        background: linear-gradient(135deg, var(--sunset-teal) 0%, var(--sunset-accent) 100%);
        font-size: 14px;
        margin-left: auto;
    }

        .feature-title .info-trigger i
        {
            font-size: 14px;
        }

.feature-description
{
    color: var(--sunset-gray);
    line-height: 1.7;
    margin: 0 0 20px 0;
    font-size: 1rem;
    flex: 1;
}

.feature-highlights
{
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.highlight-item
{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--sunset-dark);
}

    .highlight-item:last-child
    {
        margin-bottom: 0;
    }

    .highlight-item i
    {
        font-size: 1.1rem;
        color: var(--sunset-teal);
        flex-shrink: 0;
    }

/* Mobile Responsive for Modern Styles */
@media (max-width: 768px)
{
    .ai-banner-modern
    {
        padding: 60px 20px;
    }

    .ai-banner-title
    {
        font-size: 2rem;
    }

    .ai-banner-description
    {
        font-size: 1.05rem;
    }

    .ai-highlight-stats
    {
        gap: 20px;
    }

    .ai-stat
    {
        padding: 12px 20px;
    }

    .section-title-modern
    {
        font-size: 2rem;
    }

    .section-label::before,
    .section-label::after
    {
        display: none;
    }

    .feature-card-modern
    {
        margin-bottom: 30px;
    }
}

/* Smooth scroll behavior */
html
{
    scroll-behavior: smooth;
}

/* Utility classes for modern design */
.gradient-text
{
    background: linear-gradient(135deg, var(--sunset-primary) 0%, var(--sunset-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect
{
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* SVG Color Enhancements - Make colors more vibrant */
svg circle[fill="#3498DB"],
svg rect[fill="#3498DB"]
{
    fill: #3498DB;
    filter: saturate(1.3) brightness(1.1);
}

svg circle[fill="#1ABC9C"],
svg rect[fill="#1ABC9C"],
svg path[fill="#1ABC9C"]
{
    fill: #1ABC9C;
    filter: saturate(1.3) brightness(1.1);
}

svg circle[fill="#E5802D"],
svg rect[fill="#E5802D"],
svg path[fill="#E5802D"]
{
    fill: #E5802D;
    filter: saturate(1.4) brightness(1.15);
}

svg circle[fill="#2C3E50"],
svg rect[fill="#2C3E50"],
svg path[fill="#2C3E50"]
{
    fill: #2C3E50;
    filter: saturate(1.2);
}

svg circle[fill="#8E44AD"],
svg path[fill="#8E44AD"]
{
    fill: #8E44AD;
    filter: saturate(1.3) brightness(1.1);
}

/* Add glow to specific SVG elements on hover */
.feature-card:hover svg circle[fill="#1ABC9C"],
.feature-card:hover svg rect[fill="#1ABC9C"]
{
    filter: saturate(1.5) brightness(1.3) drop-shadow(0 0 8px rgba(26,188,156,0.6));
}

.feature-card:hover svg circle[fill="#E5802D"],
.feature-card:hover svg rect[fill="#E5802D"]
{
    filter: saturate(1.6) brightness(1.4) drop-shadow(0 0 10px rgba(229,128,45,0.7));
}

.feature-card:hover svg circle[fill="#3498DB"],
.feature-card:hover svg rect[fill="#3498DB"]
{
    filter: saturate(1.5) brightness(1.3) drop-shadow(0 0 8px rgba(52,152,219,0.6));
}

/* Stats Bar Icon Enhancement */
.stat-item svg
{
    filter: drop-shadow(0 2px 8px rgba(229,128,45,0.3));
    transition: all 0.3s ease;
}

.stat-item:hover svg
{
    filter: drop-shadow(0 4px 12px rgba(229,128,45,0.5));
    transform: scale(1.1);
}

/* AI Banner Background Enhancement */
.ai-banner-modern
{
    background: linear-gradient(135deg, #1a252f 0%, #2C3E50 50%, #1a252f 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

    .ai-banner-modern::after
    {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(229,128,45,0.15) 0%, transparent 70%);
        transform: translate(-50%, -50%);
        animation: pulse-glow 4s ease-in-out infinite;
    }

@keyframes pulse-glow
{
    0%, 100%
    {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50%
    {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Feature Icon Wrapper Background Animation */
.feature-icon-wrapper
{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .feature-icon-wrapper::before
    {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(229,128,45,0.15) 0%, transparent 70%);
        animation: rotate-gradient 20s linear infinite;
    }

@keyframes rotate-gradient
{
    from
    {
        transform: rotate(0deg);
    }

    to
    {
        transform: rotate(360deg);
    }
}

.feature-card-modern:hover .feature-icon-wrapper::before
{
    background: radial-gradient(circle, rgba(229,128,45,0.25) 0%, rgba(26,188,156,0.15) 50%, transparent 70%);
}
