/* LTL & Expedited Freight Page Styles */

/* Service Hero Section */
.service-hero.ltl-hero {
    position: relative;
    height: auto;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

.service-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(247, 146, 30, 0.3);
    border-radius: var(--border-radius);
}

.service-badge i {
    font-size: 1.25rem;
    color: var(--white);
}

.service-badge span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: var(--font-primary);
}

.service-hero .hero-content > p {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0.95;
    font-family: var(--font-primary);
}

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

.hero-actions .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.hero-actions .btn:not(.btn-outline) {
    background-color: var(--secondary-color);
    color: var(--black);
}

.hero-actions .btn:not(.btn-outline):hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
}

.hero-actions .btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.hero-actions .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Service Overview Section */
.service-overview {
    padding: 6rem 0;
    background-color: var(--light-surface);
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
    font-weight: 600;
}

.overview-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-family: var(--font-primary);
    line-height: 1.8;
}

.key-benefits h3 {
    color: var(--black);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-family: var(--font-primary);
    font-weight: 600;
}

.key-benefits ul {
    list-style: none;
    padding: 0;
}

.key-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.05rem;
    font-family: var(--font-primary);
}

.key-benefits li i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

/* Stats Cards */
.stat-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-card {
    background-color: var(--light-surface-2);
    padding: 2rem;
    text-align: center;
    border-radius: var(--border-radius);
    border: 1px solid rgba(247, 146, 30, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary-color);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.stat-label {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-primary);
}

/* Dual Services Section */
.dual-services-section {
    padding: 6rem 0;
    background-color: var(--light-bg);
}

.dual-services-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dual-services-section > .container > div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .dual-services-section > .container > div {
        grid-template-columns: 1fr;
    }
}

.dual-services-section .service-card {
    background: var(--light-surface);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s;
    /* Override global styles.css fixed dimensions */
    width: 100%;
    height: auto;
    overflow: visible;
    display: block;
    color: inherit;
    position: relative;
    background-size: auto;
    background-position: unset;
    align-items: stretch;
}

.dual-services-section .service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary-color);
}

.dual-services-section .service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.dual-services-section .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.dual-services-section .icon-circle.ltl-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
}

.dual-services-section .icon-circle.expedited-icon {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.dual-services-section .icon-circle i {
    font-size: 1.5rem;
    color: var(--black);
}

.dual-services-section .icon-circle.expedited-icon i {
    color: var(--white);
}

.dual-services-section .service-card h3 {
    font-size: 1.75rem;
    margin: 0;
    color: var(--black);
    font-family: var(--font-primary);
    font-weight: 600;
}

.dual-services-section .service-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-family: var(--font-primary);
    font-weight: 600;
}

.dual-services-section .service-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

.dual-services-section .service-card ul {
    margin-bottom: 1.5rem;
    list-style: none;
    padding: 0;
    font-family: var(--font-primary);
}

.dual-services-section .service-card ul li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.dual-services-section .check-icon {
    color: var(--success);
    margin-right: 0.5rem;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background-color: var(--light-surface);
}

.how-it-works .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-weight: 600;
}

.how-it-works > .container > div {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.how-it-works > .container > div > div {
    text-align: center;
}

.how-it-works > .container > div > div > div {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.how-it-works > .container > div > div > div span {
    font-size: 2rem;
    color: var(--black);
    font-weight: bold;
    font-family: var(--font-primary);
}

.how-it-works h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-family: var(--font-primary);
    font-weight: 600;
}

.how-it-works p {
    color: var(--text-muted);
    font-family: var(--font-primary);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background-color: var(--light-bg);
}

.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-weight: 600;
}

.faq-section .faq-item {
    background: var(--light-surface);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--box-shadow);
}

.faq-section .faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-family: var(--font-primary);
    font-weight: 600;
}

.faq-section .faq-item p {
    color: var(--text-muted);
    line-height: 1.8;
    font-family: var(--font-primary);
}

/* Service CTA Section */
.service-cta {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.service-cta .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-cta h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    font-weight: 600;
}

.service-cta p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-family: var(--font-primary);
}

.service-cta > .container > div {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-cta .btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.service-cta .btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.service-cta .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.service-cta .btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .service-hero {
        height: 45vh;
        min-height: 400px;
        padding: 100px 1.5rem 2rem;
    }
    
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-hero .hero-content > p {
        font-size: 1.1rem;
    }
    
    .overview-content h2 {
        font-size: 2rem;
    }
    
    .stat-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .dual-services-section > .container > div {
        grid-template-columns: 1fr;
    }
    
    .dual-services-section .service-card {
        padding: 2rem;
    }
    
    .how-it-works > .container > div {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .how-it-works h2,
    .service-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .service-hero {
        height: auto;
        min-height: 300px;
        padding: 120px 1rem 2rem;
    }
    
    .service-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .service-hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .service-hero .hero-content > p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .stat-cards {
        grid-template-columns: 1fr;
    }
    
    .how-it-works > .container > div {
        grid-template-columns: 1fr;
    }
    
    .service-cta > .container > div {
        flex-direction: column;
        align-items: center;
    }
    
    .service-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .service-hero {
        padding: 100px 1rem 2rem;
        min-height: 250px;
    }
    
    .service-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .service-hero h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .service-hero .hero-content > p {
        font-size: 0.95rem;
    }
    
    .service-cta {
        padding: 3rem 1rem;
    }
}
