/* ============================================
   TRUST LINE CARGO - SERVICES PAGE STYLES
   Professional & Clean Design
   ============================================ */

/* ================== HERO SECTION ================== */
.services-hero {
    background: linear-gradient(135deg, #0B1C2D 0%, #1a3a52 100%);
    padding: 6rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(245, 179, 1, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 179, 1, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: clamp(0.8125rem, 1.5vw, 0.875rem);
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--yellow);
}

.breadcrumb i {
    font-size: 0.625rem;
    margin: 0 0.5rem;
}

.breadcrumb span {
    color: var(--yellow);
}

.services-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.services-hero .label {
    display: inline-block;
    color: var(--yellow);
    font-size: clamp(0.6875rem, 1.5vw, 0.75rem);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.services-hero h1 {
    color: var(--white);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.services-hero .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    line-height: 1.7;
    margin: 0;
}

/* ================== SERVICES INTRO ================== */
.services-intro {
    background: var(--white);
    padding: 3rem 0 2rem;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.intro-content p {
    font-size: clamp(1rem, 1.5vw, 1.0625rem);
    line-height: 1.8;
    color: var(--text-dark);
}

/* ================== SECTION HEADERS ================== */
.section-header {
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
}

.section-header .label {
    display: inline-block;
    color: var(--yellow);
    font-size: clamp(0.6875rem, 1.5vw, 0.75rem);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 0.75rem;
}

/* ================== MAIN SERVICES GRID ================== */
.main-services {
    background: var(--bg-light);
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--yellow);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--yellow) 0%, #FFCA28 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(245, 179, 1, 0.4);
}

.service-badge i {
    font-size: 1.75rem;
    color: var(--navy-blue);
}

.service-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.service-details h4 {
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    font-weight: 700;
    color: var(--navy-blue);
    margin: 1rem 0 0.75rem;
}

.service-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.service-details ul li {
    padding: 0.375rem 0;
    font-size: clamp(0.8125rem, 1.5vw, 0.875rem);
    color: var(--text-dark);
    display: flex;
    align-items: start;
    gap: 0.5rem;
    line-height: 1.5;
}

.service-details ul li i {
    color: var(--yellow);
    margin-top: 0.25rem;
    flex-shrink: 0;
    font-size: 0.75rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 2px solid var(--border-light);
}

.service-features span {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    padding: 0.375rem 0.75rem;
    border-radius: 15px;
    font-size: clamp(0.75rem, 1.5vw, 0.8125rem);
    font-weight: 600;
    color: var(--navy-blue);
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.service-features span i {
    color: var(--yellow);
    font-size: 0.875rem;
}

/* Service CTA Buttons */
.service-cta-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.service-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: clamp(0.8125rem, 1.5vw, 0.875rem);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
}

.cta-call {
    background: linear-gradient(135deg, var(--yellow) 0%, #FFCA28 100%);
    color: var(--navy-blue);
    border-color: var(--yellow);
}

.cta-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 179, 1, 0.3);
}

.cta-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border-color: #25D366;
}

.cta-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.service-cta-btn i {
    font-size: 1rem;
}

/* ================== ADDITIONAL SERVICES ================== */
.additional-services {
    background: var(--white);
    padding: 4rem 0;
}

.additional-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.additional-card {
    background: var(--bg-light);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.additional-card:hover {
    background: var(--white);
    border-color: var(--yellow);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.add-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--yellow) 0%, #FFCA28 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(245, 179, 1, 0.3);
}

.add-icon i {
    font-size: 2rem;
    color: var(--navy-blue);
}

.additional-card h3 {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 0.75rem;
}

.additional-card p {
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

/* ================== WHY CHOOSE SERVICES ================== */
.why-services {
    background: var(--bg-light);
    padding: 4rem 0;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.why-text .label {
    display: inline-block;
    color: var(--yellow);
    font-size: clamp(0.6875rem, 1.5vw, 0.75rem);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.why-text h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.why-text p {
    font-size: clamp(1rem, 1.5vw, 1.0625rem);
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    padding: 0.75rem 0;
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    color: var(--text-dark);
    display: flex;
    align-items: start;
    gap: 1rem;
    line-height: 1.7;
}

.why-list li i {
    color: var(--yellow);
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.why-list li strong {
    color: var(--navy-blue);
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-box {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #1a3a52 100%);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(11, 28, 45, 0.2);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(245, 179, 1, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
}

.stat-label {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    position: relative;
}

/* ================== CTA SECTION ================== */
.services-cta {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #1a3a52 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(245, 179, 1, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(245, 179, 1, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================== RESPONSIVE ================== */

/* Tablet */
@media (min-width: 768px) {
    .services-hero {
        padding: 7rem 0 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .service-image {
        height: 220px;
    }
    
    .additional-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .why-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .why-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .service-image {
        height: 200px;
    }
    
    .additional-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .services-hero {
        padding: 8rem 0 4rem;
    }
    
    .services-grid {
        gap: 2.5rem;
    }
}