/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.primary-btn {
    background: #ff6b00;
    color: white;
}

.primary-btn:hover {
    background: #e55e00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.secondary-btn {
    background: transparent;
    color: #ff6b00;
    border: 2px solid #ff6b00;
}

.secondary-btn:hover {
    background: #ff6b00;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background: #ff6b00;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 20px auto 0;
}

/* Header Styles */
.top-bar {
    background: #222;
    color: #fff;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 25px;
    align-items: center;
}

.contact-info span {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
}

.social-icons a {
    color: #fff;
    margin-left: 12px;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    color: #ff6b00;
}

.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ff6b00;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    min-height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    margin-right: 0;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1;
}

.logo h2 span {
    color: #ff6b00;
}

.logo-text h2 span {
    color: #0066cc;
}

.logo-text .tagline {
    font-size: 9px;
    color: #666;
    margin-top: 2px;
    letter-spacing: 0.8px;
    font-weight: 500;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links li a {
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
    display: inline-block;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #ff6b00;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #ff6b00;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(255, 107, 0, 0.85), rgba(0, 102, 204, 0.75)), url('https://images.unsplash.com/photo-1566576721346-d4a3b4eaeb55?w=1920');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Services Section */
.services {
    padding: 80px 0;
    background: #f9f9f9 url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920') center/cover fixed;
    background-blend-mode: overlay;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(249, 249, 249, 0.95);
    z-index: 0;
}

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

/* Courier Partners Section */
.courier-partners {
    padding: 80px 0;
    background: #fff;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partner-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #f0f0f0;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #ff6b00;
}

.partner-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.partner-logo img {
    max-height: 50px;
    max-width: 140px;
    object-fit: contain;
}

.partner-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #222;
    font-weight: 600;
}

.track-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #0066cc;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.track-btn:hover {
    background: #004999;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card .icon {
    font-size: 50px;
    color: #ff6b00;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #222;
}

.service-card p {
    color: #666;
}

/* Track Section */
.track-section {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.93), rgba(255, 107, 0, 0.93)),
                url('https://images.unsplash.com/photo-1494412519320-aa613dfb7738?w=1920') center/cover;
    padding: 60px 0;
    color: white;
    text-align: center;
}

.track-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.track-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.track-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 10px;
}

.track-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

.track-form .btn {
    padding: 15px 30px;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature {
    display: flex;
    gap: 20px;
}

.feature-icon {
    font-size: 30px;
    color: #ff6b00;
    background: rgba(255, 107, 0, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}

.feature-content p {
    color: #666;
}

/* Network Map */
.network-map {
    padding: 80px 0;
    background: linear-gradient(rgba(34, 34, 34, 0.05), rgba(34, 34, 34, 0.05)),
                url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1920') center/cover fixed;
}

.map-placeholder {
    background: url('https://images.unsplash.com/photo-1524758631624-e2822e304c36?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1200&q=80') center/cover;
    height: 400px;
    border-radius: 8px;
    position: relative;
}

.map-content {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    text-align: center;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
}

.map-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #222;
}

.map-content p {
    margin-bottom: 25px;
    color: #666;
}

.stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat h4 {
    font-size: 32px;
    color: #ff6b00;
    margin-bottom: 5px;
}

.stat p {
    font-size: 16px;
    color: #666;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97)),
                url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920') center/cover fixed;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #222;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.achievements {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.achievement {
    text-align: center;
}

.achievement h3 {
    font-size: 36px;
    color: #ff6b00;
    margin-bottom: 5px;
}

.achievement p {
    color: #666;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f9f9f9;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

@media screen and (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.contact-info .info-item {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-icon {
    font-size: 24px;
    color: #ff6b00;
    background: rgba(255, 107, 0, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
    font-weight: 600;
}

.info-content p {
    color: #666;
    line-height: 1.8;
    word-break: break-word;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff6b00;
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
    background: white;
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
}

.footer-logo h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
}

.footer-logo h2 span {
    color: #ff6b00;
}

.footer-logo p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-links h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: #ff6b00;
    bottom: 0;
    left: 0;
}

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

.footer-links ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ff6b00;
    padding-left: 5px;
}

.footer-newsletter p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-newsletter form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-newsletter input {
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

.footer-newsletter .btn {
    background: #ff6b00;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-newsletter .btn:hover {
    background: #e55e00;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
    color: #ccc;
}

.footer-bottom .company-details {
    font-size: 12px;
    margin-top: 8px;
    color: #999;
    font-weight: 300;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .map-content {
        max-width: 400px;
        left: 30px;
    }
}

@media screen and (max-width: 768px) {
    .burger {
        display: block;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .logo-text h2 {
        font-size: 18px;
    }
    
    .logo-text .tagline {
        font-size: 7px;
    }
    
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: all 0.5s ease;
        width: 250px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .track-form {
        flex-direction: column;
    }
    
    .map-content {
        position: static;
        transform: none;
        margin: 20px auto;
        max-width: 90%;
    }
    
    .map-placeholder {
        height: auto;
        padding: 40px 0;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .achievements {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .contact-info .info-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
}