@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #0e2e4e; /* Deep Navy Blue */
    --secondary-color: #f39c12; /* Orange */
    --text-color: #333;
    --light-bg: #f4f6f8;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background: var(--white);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 10px 25px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
}

.btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* HEADER */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    margin-right: 10px;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #555;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* MOBILE MENU */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: var(--white);
    z-index: 1101;
    padding: 30px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: translateX(100%);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-close {
    align-self: flex-end;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 20px;
}

.mobile-nav a {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(14,46,78,0.9) 0%, rgba(14,46,78,0.6) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* FEATURES SECTION (Parcel, Freight, Warehousing) */
.features-bar {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    background: var(--white);
}

.feature-item {
    padding: 40px;
    text-align: center;
    border-right: 1px solid #eee;
    transition: var(--transition);
}

.feature-item:last-child {
    border-right: none;
}

.feature-item:hover {
    background: #f9f9f9;
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.feature-item p {
    color: #666;
    font-size: 14px;
}

/* WHY CHOOSE US */
.why-us {
    padding: 80px 0;
    background: var(--light-bg);
    text-align: center;
}

.section-title {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    margin: 15px auto 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-item {
    background: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-5px);
}

.why-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-item h4 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.why-item p {
    color: #666;
    font-size: 14px;
}

/* ABOUT PAGE */
.page-hero {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14,46,78,0.7);
}

.page-hero h1 {
    position: relative;
    z-index: 1;
    font-size: 42px;
}

.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 28px;
}

.about-content p {
    margin-bottom: 20px;
    color: #555;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 32px;
    color: var(--white);
    background: var(--primary-color);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.about-img img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* SERVICES PAGE */
.services-list {
    padding: 80px 0;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
}

.service-row:nth-child(even) {
    direction: rtl;
}

.service-row:nth-child(even) .service-content {
    direction: ltr;
}

.service-content h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 15px;
}

.service-content p {
    margin-bottom: 20px;
    color: #555;
}

.service-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
}

.track-section {
    background: #e9ecef;
    padding: 60px 0;
    text-align: center;
}

.track-form {
    max-width: 500px;
    margin: 20px auto 0;
    display: flex;
    gap: 10px;
}

.track-input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* CONTACT PAGE */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 5px;
}

.contact-info-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.contact-info-item i {
    color: var(--secondary-color);
    font-size: 20px;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.map-container {
    margin-top: 30px;
    height: 300px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
}

/* FOOTER */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 0 20px;
    text-align: center;
}

.footer p {
    opacity: 0.8;
    margin-bottom: 10px;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid, .service-row, .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-row:nth-child(even) {
        direction: ltr;
    }
}
