@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #2c2c2c;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #1a1a1a;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid #ff7900;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h1 {
    color: #ff7900;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-svg {
    height: 200px;
    width: auto;
}

.logo-text-mobile {
    display: none;
    color: #ff7900;
    font-size: 2rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff7900;
}

.language-selector {
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: transparent;
    border: 1px solid #ff7900;
    color: #ff7900;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 400;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.lang-btn:hover,
.lang-btn.active {
    background: #ff7900;
    color: #1a1a1a;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #2c2c2c;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('truck-image.jpg') center/cover no-repeat;
    opacity: 0.4;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ff7900;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #e0e0e0;
    font-weight: 300;
}

.services-preview {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #ff7900;
}

.services-preview h3 {
    color: #ff7900;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.services-preview ul {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.services-preview li {
    padding: 8px 0;
    color: #e0e0e0;
    position: relative;
    padding-left: 20px;
}

.services-preview li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff7900;
    font-weight: bold;
}

.trust-signals {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-item {
    background: rgba(255, 138, 101, 0.1);
    padding: 15px 25px;
    border-radius: 25px;
    border: 1px solid #ff7900;
    color: #ff7900;
    font-weight: 500;
}

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

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-primary:hover {
    background: #ff7043;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: #ff7900;
    color: white;
    transform: translateY(-2px);
}

/* Services Section */
.services-section {
    background: #1a1a1a;
    padding: 100px 0;
    border-top: 2px solid #ff7900;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: white;
}

.service-item {
    margin-bottom: 40px;
    padding: 30px;
    background: #2c2c2c;
    border-radius: 8px;
    border-left: 4px solid #ff7900;
}

.service-item h3 {
    color: #ff7900;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-item p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* About Section */
.about-section {
    background: #2c2c2c;
    padding: 100px 0;
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: white;
}

.about-item {
    margin-bottom: 40px;
    padding: 30px;
    background: #1a1a1a;
    border-radius: 8px;
    border-left: 4px solid #ff7900;
}

.about-item h3 {
    color: #ff7900;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.about-item p {
    color: #e0e0e0;
    line-height: 1.6;
}

.about-item ul {
    list-style: none;
    color: #e0e0e0;
}

.about-item li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.about-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff7900;
    font-weight: bold;
}

/* Coverage Section */
.coverage-section {
    background: #1a1a1a;
    padding: 100px 0;
}

.coverage-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: white;
}

.coverage-section p {
    text-align: center;
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.routes {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.route-item {
    background: #2c2c2c;
    padding: 20px 30px;
    border-radius: 8px;
    border: 1px solid #ff7900;
    color: white;
    font-size: 1.1rem;
    text-align: center;
}

/* Contact Section */
.contact-section {
    background: #2c2c2c;
    padding: 100px 0;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: white;
}

.contact-section > .container > p {
    text-align: center;
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
    padding: 30px;
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #333;
    min-width: 250px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ff7900;
}

.contact-item a {
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ff7900;
}

.contact-item p {
    color: #e0e0e0;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #ff7900;
}

.contact-form h3 {
    color: #ff7900;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: #2c2c2c;
    border: 1px solid #333;
    border-radius: 4px;
    color: white;
    font-size: 1rem;
}

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

.contact-form button {
    width: 100%;
    padding: 15px;
    background: #ff7900;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #ff7043;
}

/* Responsive Design */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ff7900;
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        height: 60px;
        padding: 5px 20px;
        justify-content: space-between;
        align-items: center;
    }

    .logo-svg {
        height: 120px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: #1a1a1a;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        gap: 30px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-section {
        padding: 70px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .services-preview {
        padding: 20px;
    }

    .trust-signals {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 200px;
        text-align: center;
    }

    .services-section,
    .about-section,
    .coverage-section,
    .contact-section {
        padding: 60px 0;
    }

    .services-section h2,
    .about-section h2,
    .coverage-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .service-item,
    .about-item {
        padding: 20px;
    }

    .routes {
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .services-preview {
        padding: 15px;
    }

    .language-selector {
        flex-wrap: wrap;
    }

    .nav-menu {
        gap: 10px;
    }

    .nav-link {
        font-size: 0.9rem;
    }
}
/* Why CargoMate Section */
.why-cargomate {
    margin: 40px 0;
}

.why-cargomate ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.why-cargomate li {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #e0e0e0;
}

.why-cargomate h3 {
    color: #ff7900;
    margin-bottom: 20px;
    font-size: 1.5rem;
}