/* ============================================
   TRUST LINE CARGO - LOCATIONS PAGE STYLES
   Fully Responsive with Proper Breakpoints
   ============================================ */

/* ================== HERO SECTION ================== */
.locations-hero {
    background: linear-gradient(135deg, #0B1C2D 0%, #1a3a52 100%);
    padding: 5rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}

.locations-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: 0.8125rem;
    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);
}

.locations-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.locations-hero .label {
    display: inline-block;
    color: var(--yellow);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.locations-hero h1 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.locations-hero .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

/* ================== LOCATION STATS ================== */
.location-stats {
    background: var(--white);
    padding: 2.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    padding: 1.25rem 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--yellow);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--yellow) 0%, #FFCA28 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--navy-blue);
}

.stat-info {
    flex-grow: 1;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--navy-blue);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-text {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ================== MAIN LOCATIONS ================== */
.main-locations {
    background: var(--bg-light);
    padding: 3rem 0;
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-header.centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.section-header .label {
    display: inline-block;
    color: var(--yellow);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.location-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.location-card.featured {
    border-color: var(--yellow);
    box-shadow: 0 6px 25px rgba(245, 179, 1, 0.15);
}

.location-card:hover {
    border-color: var(--yellow);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.location-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--yellow) 0%, #FFCA28 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon i {
    font-size: 1.5rem;
    color: var(--navy-blue);
}

.location-name {
    flex-grow: 1;
}

.location-name h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin: 0 0 0.5rem;
}

.location-badge {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    color: var(--text-dark);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--border-light);
}

.location-badge.hq {
    background: linear-gradient(135deg, var(--yellow) 0%, #FFCA28 100%);
    color: var(--navy-blue);
    border-color: var(--yellow);
}

.location-address {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.location-address i {
    color: var(--yellow);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.location-address p {
    font-size: 0.875rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

.location-desc {
    margin-bottom: 1.25rem;
}

.location-desc p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

.location-services {
    margin-bottom: 1.25rem;
}

.location-services h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin: 0 0 0.75rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-tags span {
    background: var(--bg-light);
    padding: 0.375rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    border: 1px solid var(--border-light);
}

.service-tags span i {
    color: var(--yellow);
    font-size: 0.6875rem;
}

.location-contact {
    display: flex;
    gap: 0.75rem;
    padding-top: 1.25rem;
    border-top: 2px solid var(--border-light);
}

.contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
}

.call-btn {
    background: linear-gradient(135deg, var(--yellow) 0%, #FFCA28 100%);
    color: var(--navy-blue);
    border-color: var(--yellow);
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 179, 1, 0.3);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border-color: #25D366;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.contact-btn i {
    font-size: 0.9375rem;
}

/* ================== POPULAR ROUTES ================== */
.popular-routes {
    background: var(--white);
    padding: 3rem 0;
}

.routes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.route-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.route-card:hover {
    border-color: var(--yellow);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.route-path {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.city-from,
.city-to {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-blue);
}

.route-path i {
    color: var(--yellow);
    font-size: 0.875rem;
}

.route-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
}

/* ================== CTA SECTION ================== */
.locations-cta {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #1a3a52 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.locations-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: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================== RESPONSIVE BREAKPOINTS ================== */

/* Small Mobile (360px - 479px) */
@media (max-width: 479px) {
    .stat-item {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
    }
    
    .stat-icon i {
        font-size: 1.375rem;
    }
    
    .stat-number {
        font-size: 1.375rem;
    }
    
    .stat-text {
        font-size: 0.75rem;
    }
    
    .location-icon {
        width: 45px;
        height: 45px;
    }
    
    .location-icon i {
        font-size: 1.375rem;
    }
    
    .location-name h3 {
        font-size: 1rem;
    }
    
    .location-badge {
        font-size: 0.625rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Mobile (480px - 767px) */
@media (min-width: 480px) {
    .locations-hero h1 {
        font-size: 2rem;
    }
    
    .locations-hero .lead {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.625rem;
    }
    
    .stat-text {
        font-size: 0.875rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .location-name h3 {
        font-size: 1.25rem;
    }
    
    .location-badge {
        font-size: 0.75rem;
    }
    
    .location-services h4 {
        font-size: 1rem;
    }
    
    .service-tags span {
        font-size: 0.8125rem;
    }
    
    .contact-btn {
        font-size: 0.875rem;
    }
    
    .city-from,
    .city-to {
        font-size: 1.0625rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) {
    .locations-hero {
        padding: 6rem 0 3rem;
    }
    
    .locations-hero .label {
        font-size: 0.75rem;
    }
    
    .locations-hero h1 {
        font-size: 2.25rem;
    }
    
    .locations-hero .lead {
        font-size: 1.0625rem;
    }
    
    .breadcrumb {
        font-size: 0.875rem;
    }
    
    .location-stats,
    .main-locations,
    .popular-routes,
    .locations-cta {
        padding: 4rem 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
        gap: 1.25rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 1.875rem;
    }
    
    .stat-text {
        font-size: 0.9375rem;
    }
    
    .section-header .label {
        font-size: 0.75rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .location-card {
        padding: 2rem;
    }
    
    .location-header {
        margin-bottom: 1.5rem;
    }
    
    .location-icon {
        width: 60px;
        height: 60px;
    }
    
    .location-icon i {
        font-size: 1.75rem;
    }
    
    .location-name h3 {
        font-size: 1.375rem;
    }
    
    .location-badge {
        font-size: 0.8125rem;
    }
    
    .location-address p {
        font-size: 0.9375rem;
    }
    
    .location-desc p {
        font-size: 1rem;
    }
    
    .location-services h4 {
        font-size: 1.0625rem;
    }
    
    .service-tags span {
        font-size: 0.8125rem;
    }
    
    .contact-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .contact-btn i {
        font-size: 1rem;
    }
    
    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .route-card {
        padding: 1.5rem 1.75rem;
    }
    
    .city-from,
    .city-to {
        font-size: 1.125rem;
    }
    
    .route-path i {
        font-size: 1rem;
    }
    
    .route-card p {
        font-size: 0.875rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.0625rem;
    }
}

/* Desktop (1024px - 1199px) */
@media (min-width: 1024px) {
    .locations-hero h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .section-header p {
        font-size: 1.0625rem;
    }
    
    .main-locations,
    .popular-routes,
    .locations-cta {
        padding: 5rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .location-name h3 {
        font-size: 1.5rem;
    }
    
    .routes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-content h2 {
        font-size: 2.25rem;
    }
    
    .cta-content p {
        font-size: 1.125rem;
    }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .locations-hero {
        padding: 8rem 0 4rem;
    }
}