@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    --lc-green: #28a745;
    --lc-green-dark: #218838;
    --lc-deep-green: #2e7d32;
    --lc-accent: #76c043;
    --lc-dark: #333;
    --lc-grey: #555;
    --lc-light: #f9f9f9;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Merriweather Sans", sans-serif;
    margin: 0;
    padding: 0;
    color: var(--lc-dark);
    overflow-x: hidden;
}

/* ============ Navbar (shared styles) ============ */
.navbar-brand img {
    height: 80px;
}

.navbar-toggler,
.navbar-toggler:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    filter: invert(43%) sepia(92%) saturate(555%) hue-rotate(83deg) brightness(94%) contrast(92%);
}

.nav-item a {
    font-weight: bold;
    color: #000;
    transition: color 0.3s ease;
}

.nav-item a:hover {
    color: var(--lc-green);
}

.navbar-brand .brand-text {
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    color: #3a8476;
    white-space: nowrap;
    margin-left: 10px;
}

.navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 992px) {
    .button-group {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .navbar-brand img {
        height: 40px;
    }

    .navbar-toggler {
        margin-left: auto;
        align-self: center;
    }

    .navbar-brand .brand-text {
        font-size: 0.7rem;
    }
}

/* ============ WhatsApp button (shared) ============ */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    z-index: 1000;
}

.whatsapp-button i {
    font-size: 20px;
    margin-right: 10px;
}

.whatsapp-button:hover {
    background-color: #20B857;
    color: #fff;
    text-decoration: none;
}

/* ============ Hero banner ============ */
.lc-hero {
    position: relative;
    min-height: 480px;
    margin-top: 96px;
    display: flex;
    align-items: center;
    background-image: url('/static/images/land_cargo/hero_land_cargo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.7) 100%);
}

.lc-hero .container {
    position: relative;
    z-index: 1;
}

.lc-breadcrumb {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.lc-breadcrumb a {
    color: var(--lc-accent);
    text-decoration: none;
    font-weight: 600;
}

.lc-breadcrumb a:hover {
    color: #fff;
}

.lc-hero h1 {
    color: #fff;
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.lc-hero .lc-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 720px;
    line-height: 1.7;
}

.lc-hero .lc-hero-divider {
    width: 90px;
    height: 4px;
    background-color: var(--lc-accent);
    border-radius: 2px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .lc-hero {
        min-height: 400px;
        margin-top: 60px;
        text-align: center;
    }

    .lc-hero h1 {
        font-size: 2.2rem;
    }

    .lc-hero .lc-hero-subtitle {
        font-size: 1.05rem;
    }

    .lc-hero .lc-hero-divider {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============ Shared section styling ============ */
.lc-section {
    padding: 80px 0;
}

.lc-section-alt {
    background-color: var(--lc-light);
}

.lc-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lc-dark);
    margin-bottom: 10px;
}

.lc-section-title-center {
    text-align: center;
}

.lc-title-divider {
    width: 70px;
    height: 4px;
    background-color: var(--lc-green);
    border-radius: 2px;
    margin: 0 0 30px;
}

.lc-title-divider.mx-auto {
    margin: 0 auto 40px;
}

.lc-text {
    font-size: 1.05rem;
    color: var(--lc-grey);
    line-height: 1.8;
    text-align: justify;
}

.lc-subheading {
    color: var(--lc-deep-green);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 15px;
}

.lc-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

/* ============ Buttons ============ */
.lc-btn {
    display: inline-block;
    background-color: var(--lc-green);
    color: #fff;
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: 2px solid var(--lc-green);
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(40, 167, 69, 0.3);
}

.lc-btn:hover {
    background-color: var(--lc-green-dark);
    border-color: var(--lc-green-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.4);
}

.lc-btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: none;
}

.lc-btn-outline:hover {
    background-color: #fff;
    border-color: #fff;
    color: var(--lc-deep-green);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.lc-btn-light {
    background-color: #fff;
    color: var(--lc-deep-green);
    border-color: #fff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.lc-btn-light:hover {
    background-color: #f1f1f1;
    border-color: #f1f1f1;
    color: var(--lc-deep-green);
}

/* ============ Service icon cards ============ */
.lc-service-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.lc-service-card i {
    font-size: 2.4rem;
    color: var(--lc-green);
    margin-bottom: 18px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.lc-service-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--lc-dark);
    margin-bottom: 0;
}

.lc-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.lc-service-card:hover i {
    color: var(--lc-accent);
    transform: scale(1.1);
}

/* ============ GCC list & ideal-for box ============ */
.lc-country-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.lc-country-list li {
    font-size: 1.05rem;
    color: var(--lc-grey);
    padding: 8px 0;
    border-bottom: 1px dashed #e3e3e3;
}

.lc-country-list li i {
    color: var(--lc-green);
    margin-right: 12px;
}

.lc-ideal-box {
    background: #fff;
    border-left: 5px solid var(--lc-green);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.lc-ideal-box h4 {
    font-weight: 700;
    color: var(--lc-deep-green);
    margin-bottom: 20px;
}

.lc-ideal-item {
    display: flex;
    align-items: center;
    padding: 6px 0;
    color: var(--lc-grey);
    font-size: 1rem;
}

.lc-ideal-item i {
    color: var(--lc-green);
    font-size: 1.1rem;
    width: 30px;
    flex-shrink: 0;
}

/* ============ Route feature list (Lebanon / Jordan) ============ */
.lc-feature-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0 0;
}

.lc-feature-list li {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: var(--lc-grey);
    padding: 9px 0;
}

.lc-feature-list li i {
    color: var(--lc-green);
    margin-right: 14px;
    font-size: 1.15rem;
    width: 26px;
    flex-shrink: 0;
}

/* ============ Process timeline ============ */
.lc-timeline {
    position: relative;
}

.lc-timeline::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 5%;
    right: 5%;
    height: 3px;
    background: linear-gradient(90deg, var(--lc-green), var(--lc-accent));
    border-radius: 3px;
}

.lc-step-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 15px 25px;
    text-align: center;
    height: 100%;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lc-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.lc-step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lc-green), var(--lc-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(40, 167, 69, 0.35);
}

.lc-step-icon i {
    font-size: 2rem;
    color: #fff;
}

.lc-step-number {
    display: inline-block;
    background-color: var(--lc-deep-green);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.lc-step-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.lc-step-card p {
    font-size: 0.9rem;
    color: var(--lc-grey);
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .lc-timeline::before {
        display: none;
    }
}

/* ============ Advantage / cargo cards ============ */
.lc-advantage-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    border-bottom: 4px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.lc-advantage-card i {
    font-size: 2.3rem;
    color: var(--lc-green);
    margin-bottom: 16px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.lc-advantage-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.lc-advantage-card p {
    font-size: 0.95rem;
    color: var(--lc-grey);
    margin-bottom: 0;
    line-height: 1.7;
}

.lc-advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-bottom-color: var(--lc-accent);
}

.lc-advantage-card:hover i {
    color: var(--lc-accent);
    transform: scale(1.1);
}

/* ============ Door-to-door section ============ */
.lc-door-section {
    background: linear-gradient(135deg, #1d5a20 0%, var(--lc-deep-green) 55%, #3c9440 100%);
    padding: 80px 0;
}

.lc-door-section .lc-section-title,
.lc-door-section .lc-lead {
    color: #fff;
}

.lc-door-section .lc-lead {
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 10px;
}

.lc-door-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    padding: 30px 15px;
    text-align: center;
    height: 100%;
    backdrop-filter: blur(4px);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.lc-door-card i {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 14px;
}

.lc-door-card h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0;
}

.lc-door-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
}

.lc-door-step {
    display: inline-block;
    background: #fff;
    color: var(--lc-deep-green);
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

/* ============ Why choose us checklist ============ */
.lc-check-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.lc-check-list li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    font-size: 1.05rem;
    color: var(--lc-grey);
    border-bottom: 1px dashed #e6e6e6;
}

.lc-check-list li:last-child {
    border-bottom: none;
}

.lc-check-list li i {
    color: var(--lc-green);
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

/* ============ CTA section ============ */
.lc-cta {
    background: linear-gradient(135deg, var(--lc-deep-green) 0%, var(--lc-green) 60%, var(--lc-accent) 100%);
    padding: 90px 0;
    text-align: center;
    color: #fff;
}

.lc-cta h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.lc-cta p {
    font-size: 1.15rem;
    max-width: 780px;
    margin: 0 auto 35px;
    line-height: 1.8;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .lc-section {
        padding: 55px 0;
    }

    .lc-section-title {
        font-size: 1.6rem;
    }

    .lc-cta h2 {
        font-size: 1.7rem;
    }

    .lc-text {
        text-align: left;
    }
}

/* ============ Footer (shared styles) ============ */
.footer {
    background-color: #000;
    background-size: cover;
    background-position: center;
    color: white;
}

.footer-logo {
    max-width: 150px;
}

.social-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
    text-decoration: none;
}

.footer h5 {
    margin-bottom: 1rem;
    font-weight: bold;
}

.footer p,
.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul {
    padding-left: 0;
}

.footer-offices {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.25rem;
}

.footer-offices h5 {
    font-size: 1rem;
    color: #76c043;
}

.footer-offices a {
    color: #fff;
}

.footer-offices a:hover {
    color: #76c043;
}
