/* RESET */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

/* ================= NAVBAR ================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    background: #ffffff;
}

.logo {
    font-weight: bold;
    font-size: 20px;
    color: #0f6b45;
}

nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #444;
    font-size: 14px;
}

nav a.active {
    color: #0f6b45;
    font-weight: bold;
}

.quote-btn {
    background: #0f6b45;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
}

/* ================= HERO ================= */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    padding: 0 60px;

    background:
    linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.2)),
    url('assets/southes.png') no-repeat center/cover;

    color: white;
}

.hero-left {
    max-width: 500px;
}

.hero h1 {
    font-size: 48px;
    margin: 0;
}

.hero span {
    color: #0f6b45;
}

.hero p {
    margin-top: 15px;
    font-size: 16px;
}

.hero-buttons {
    margin-top: 20px;
}

.btn-primary {
    background: #0f6b45;
    color: white;
    padding: 12px 20px;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 5px;
}

.btn-outline {
    border: 2px solid #0f6b45;
    padding: 10px 20px;
    text-decoration: none;
    color: #0f6b45;
    border-radius: 5px;
}

/* ================= SERVICES ================= */
.services {
    padding: 80px 60px;
    text-align: center;
    background: #f8f9fb;
}

.services h2 {
    font-size: 30px;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    background: #dff7ea;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.icon-box i {
    font-size: 28px;
    color: #0f6b45;
}

.service-card h3 {
    font-size: 18px;
    margin-top: 10px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    line-height: 1.6;
}

/* ================= ABOUT HERO (COURIER VAN) ================= */
.about-hero {
    height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;

    background-image:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1400&q=80');

    background-size: cover;
    background-position: center;
}

.about-hero h1 {
    color: white;
    font-size: 40px;
}

.about-hero p {
    color: #ddd;
}

/* ================= ABOUT SECTION ================= */
.about-section {
    padding: 80px 60px;
    background: #ffffff;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.about-text h2 {
    color: #0f6b45;
    margin-bottom: 10px;
}

.about-text p {
    color: #555;
    line-height: 1.7;
}

/* ================= PAGE HEADER ================= */
.page-header {
    padding: 50px;
    text-align: center;
    background: #f4f6f9;
}

/* ================= CONTACT FORM ================= */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    background: #0f6b45;
    color: white;
    padding: 10px 20px;
    border: none;
}

/* ================= FOOTER ================= */
.footer {
    background: #0d2c5a;
    color: white;
    padding: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer h4 {
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-links i {
    margin-right: 8px;
}

.copy {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
}

/* ================= RESPONSIVE ================= */
@media(max-width: 900px){
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 500px){
    .service-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 20px;
    }
/* ===== TRACKING PAGE AIRPLANE BACKGROUND ONLY ===== */

body {
    position: relative;
}

/* Background image (same page, no layout change) */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: 
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('https://images.unsplash.com/photo-1529070538774-1843cb3265df?auto=format&fit=crop&w=1600&q=80')
    center/cover no-repeat;

    z-index: -2;
}

/* Moving airplane */
body::after {
    content: "✈️";
    position: fixed;
    font-size: 40px;
    top: 20%;
    left: -100px;
    z-index: -1;
    opacity: 0.7;

    animation: flyPlane 12s linear infinite;
}

/* Plane movement */
@keyframes flyPlane {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(120vw);
    }
}
