﻿: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;
}

/* Hero Section - Darker, more sophisticated */
.hero-section {
    background: linear-gradient(135deg, var(--sunset-dark) 0%, var(--sunset-darker) 100%);
    padding: 80px 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: 400px;
    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: 800px;
    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: #fff;
}

.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-teal) 0%, var(--sunset-blue) 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;
}

/* Testimonials */
.testimonials-section {
    padding: 70px 20px;
    background: #fff;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    border-left: 4px solid var(--sunset-blue);
    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: var(--sunset-dark);
    color: #fff;
}

.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 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.vehicle-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    min-width: 110px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.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: linear-gradient(135deg, var(--sunset-teal) 0%, var(--sunset-blue) 100%);
    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;
}