/* =====================================================
   SERVICES PAGE - INDIGENOUS-INSPIRED LIGHT THEME
===================================================== */

:root {
    /* Earth Tones - Inspired by Natural Landscapes */
    --primary-earth: #1f1410;
    --secondary-earth: #2d1e16;
    --accent-earth: #3d2618;
    
    /* Indigenous Orange Palette - Warm & Natural */
    --primary-orange: #e86b2e;
    --secondary-orange: #f39450;
    --light-orange: #ffa872;
    --dark-orange: #c75520;
    --pale-orange: #ffd4b3;
    
    /* Complementary Natural Colors */
    --clay-red: #b84d32;
    --sage-green: #7a9168;
    --stone-gray: #8a7568;
    --warm-cream: #fff8f0;
    --sand: #f5e5d0;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #faf7f2;
    --medium-gray: #8a7d70;
    --dark-gray: #3d2f25;
    
    /* Natural Gradients */
    --gradient-primary: linear-gradient(135deg, #e86b2e 0%, #f39450 100%);
    --gradient-earth: linear-gradient(135deg, #1f1410 0%, #2d1e16 100%);
    --gradient-subtle: linear-gradient(135deg, #fff8f0 0%, #f5e5d0 100%);
    
    /* Subtle Effects */
    --shadow-sm: 0 2px 8px rgba(31, 20, 16, 0.2);
    --shadow-md: 0 4px 20px rgba(31, 20, 16, 0.25);
    --shadow-lg: 0 10px 40px rgba(31, 20, 16, 0.3);
    --shadow-xl: 0 20px 60px rgba(31, 20, 16, 0.35);
    --shadow-orange: 0 8px 32px rgba(232, 107, 46, 0.3);
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--warm-cream);
    overflow-x: hidden;
}

.container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =====================================================
   HERO SECTION
===================================================== */
.services-hero {
    position: relative;
    min-height: 60vh;
    background: var(--gradient-subtle);
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(232, 107, 46, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 88, 66, 0.06) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(232, 107, 46, 0.12);
    border: 2px solid var(--secondary-orange);
    border-radius: 50px;
    color: var(--dark-orange);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.hero-badge i {
    color: var(--secondary-orange);
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    color: var(--primary-earth);
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--dark-gray);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* =====================================================
   SERVICES SECTION
===================================================== */
.services-section {
    padding: 80px 0;
    background: 
        linear-gradient(135deg, rgba(245, 237, 228, 0.85) 0%, rgba(232, 220, 200, 0.75) 100%),
        url('/redesign_v/images_v/highway.webp') center/cover no-repeat fixed;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(232, 107, 46, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(232, 107, 46, 0.12);
    color: var(--dark-orange);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-earth);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-description {
    font-size: 17px;
    color: var(--dark-gray);
    line-height: 1.7;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Linear Service Card */
.service-card {
    position: relative;
    background: var(--warm-cream);
    border-radius: 16px;
    padding: 32px 40px;
    border: 2px solid rgba(232, 107, 46, 0.15);
    transition: var(--transition);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
    border-radius: 16px 16px 0 0;
}

.service-card:hover {
    transform: translateX(8px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-orange);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Icon Section */
.service-icon-wrapper {
    position: relative;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.service-icon.freight {
    background: var(--gradient-earth);
}

.service-icon.charter {
    background: var(--gradient-primary);
}

.service-badge {
    position: absolute;
    top: -8px;
    right: -12px;
    background: var(--secondary-orange);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Section */
.service-content-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-earth);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.service-description {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.7;
}

.service-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--dark-gray);
}

.feature-item i {
    color: var(--secondary-orange);
    font-size: 14px;
    flex-shrink: 0;
}

/* Stats Section */
.service-stats-inline {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-shrink: 0;
}

.stat-item-inline {
    text-align: center;
    padding: 16px 20px;
    background: var(--sand);
    border-radius: 12px;
    min-width: 120px;
    border: 2px solid rgba(232, 107, 46, 0.15);
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 11px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Expandable Details */
.service-details-expand {
    display: none;
    grid-column: 1 / -1;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid rgba(232, 107, 46, 0.15);
    animation: slideDown 0.4s ease;
}

.service-card.expanded .service-details-expand {
    display: block;
}

.service-card.expanded {
    border-color: var(--primary-orange);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.detail-card {
    background: var(--sand);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid rgba(232, 107, 46, 0.15);
}

.detail-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-earth);
    margin-bottom: 12px;
}

.detail-card h4 i {
    color: var(--secondary-orange);
}

.detail-card ul {
    list-style: none;
}

.detail-card ul li {
    padding: 6px 0;
    padding-left: 20px;
    color: var(--dark-gray);
    font-size: 14px;
    position: relative;
}

.detail-card ul li::before {
    content: '•';
    position: absolute;
    left: 6px;
    color: var(--secondary-orange);
}

.btn-service-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: var(--shadow-orange);
}

.btn-service-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(232, 107, 46, 0.4);
}

/* =====================================================
   WHY CHOOSE SECTION
===================================================== */
.why-choose-section {
    padding: 100px 0;
    background: var(--warm-cream);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--sand);
    border-radius: 16px;
    border: 2px solid rgba(232, 107, 46, 0.15);
    transition: var(--transition);
}

.benefit-item:hover {
    border-color: var(--primary-orange);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.benefit-content h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-earth);
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.6;
}

.stats-card {
    background: var(--gradient-subtle);
    border-radius: 24px;
    padding: 40px;
    border: 2px solid var(--primary-orange);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    box-shadow: var(--shadow-orange);
}

.stat-card-item {
    text-align: center;
    padding: 24px;
    background: var(--warm-cream);
    border-radius: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid rgba(232, 107, 46, 0.15);
}

.stat-card-item:hover {
    background: var(--sand);
    transform: translateY(-5px) scale(1.05);
    border-color: var(--primary-orange);
}

.stat-card-item i {
    font-size: 36px;
    color: var(--secondary-orange);
    margin-bottom: 16px;
}

.stat-card-item h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-earth);
    margin-bottom: 8px;
}

.stat-card-item p {
    font-size: 13px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================================================
   CTA SECTION
===================================================== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-subtle);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(232, 107, 46, 0.12) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 46px;
    font-weight: 800;
    color: var(--primary-earth);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-cta-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-orange);
    border: 2px solid transparent;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(232, 107, 46, 0.4);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--primary-earth);
    border: 2px solid var(--primary-orange);
}

.btn-cta-secondary:hover {
    background: var(--primary-orange);
    color: var(--white);
}

/* =====================================================
   ANIMATIONS
===================================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 1000px;
    }
}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

@media (max-width: 992px) {
    .hero-title {
        font-size: 44px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .service-card {
        grid-template-columns: auto 1fr;
        padding: 28px 32px;
    }
    
    .service-stats-inline {
        grid-column: 1 / -1;
        justify-content: flex-start;
        margin-top: 16px;
    }
    
    .service-features-list {
        grid-template-columns: 1fr;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 100px 0 70px;
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-section {
        background-attachment: scroll !important;
        background-size: cover;
        background-position: calc(75%) center; 
    }
    
    .services-section::before {
        background: radial-gradient(circle at 50% 50%, rgba(232, 107, 46, 0.04) 0%, transparent 50%);
    }
    
    .service-card {
        padding: 24px;
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .service-icon-wrapper {
        margin: 0 auto;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .service-content-main {
        text-align: center;
    }
    
    .service-features-list {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .service-stats-inline {
        flex-direction: column;
        width: 100%;
    }
    
    .stat-item-inline {
        width: 100%;
    }
    
    .service-details-expand {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .why-choose-section {
        padding: 60px 0;
    }
    
    .benefits-list {
        gap: 20px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .stats-card {
        padding: 30px;
        gap: 20px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .service-title {
        font-size: 22px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .stats-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }
    
    .cta-title {
        font-size: 26px;
    }
}

/* =====================================================
   SCROLLBAR - EARTH TONES
===================================================== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--sand);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-orange);
}

/* =====================================================
   SELECTION COLOR
===================================================== */
::selection {
    background: var(--primary-orange);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-orange);
    color: var(--white);
}