/* Carrier Page Styles */

.carrier-hero {
    position: relative;
    height: 250px;
    background: url('Assets/Logistics\ Services\ 1600px.webp') center 40% / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.carrier-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.carrier-hero-content {
    position: relative;
    z-index: 10;
}

.carrier-hero-content h1 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 10px;
}

.carrier-hero-content p {
    font-size: 18px;
    font-weight: 400;
}

.carrier-info {
    padding: 80px 0;
}

.carrier-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.carrier-text-col h2 {
    font-size: 32px;
    color: #0b1c3f;
    margin-bottom: 15px;
}

.section-bar {
    width: 60px;
    height: 3px;
    background: #ff5e14;
    margin-bottom: 25px;
}

.carrier-text-col p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.carrier-services {
    list-style: none;
    padding: 0;
}

.carrier-services li {
    margin-bottom: 12px;
    font-weight: 500;
    color: #0b1c3f;
    display: flex;
    align-items: center;
}

.carrier-services li i {
    color: #ff5e14;
    margin-right: 10px;
}

.carrier-img-col img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.carrier-cta {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.cta-card {
    background: #0b1c3f;
    color: #fff;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-cta {
    display: inline-block;
    padding: 14px 28px;
    background: #ff5e14;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-cta:hover {
    background: #e54e00;
}

.btn-cta.btn-secondary {
    background: transparent;
    border: 2px solid #fff;
}

.btn-cta.btn-secondary:hover {
    background: #fff;
    color: #0b1c3f;
}

/* Responsiveness */
@media (max-width: 991px) {
    .carrier-grid {
        grid-template-columns: 1fr;
    }

    .carrier-img-col {
        order: -1;
    }
}

@media (max-width: 768px) {
    .carrier-hero {
        height: 200px;
    }

    .carrier-hero-content h1 {
        font-size: 32px;
    }

    .cta-card h2 {
        font-size: 28px;
    }

    .cta-actions {
        flex-direction: column;
    }
}