/* ===== Global Styles ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Segoe UI", Arial, sans-serif;
            background-color: #fff;
            color: #333;
            overflow-x: hidden;
        }

        section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            padding: 2rem 1rem;
        }

        h1,
        h2 {
            font-weight: 700;
        }

        /* ===== Navigation ===== */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(6px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-logo {
            margin-right: 20px;
            max-height: 40px;
        }

        .logo-img {
            height: 40px; 
            max-height: 40px;
            width: auto; 
            display: block;
        }


        .nav-right {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #003366;
            font-weight: 500;
            position: relative;
            transition: color 0.3s;
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0%;
            height: 2px;
            background: #0077b6;
            transition: width 0.3s;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a.active,
        .nav-links a:hover {
            color: #0077b6;
        }

        /* ===== Hamburger ===== */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger span {
            height: 3px;
            width: 25px;
            background: #003366;
            margin-bottom: 4px;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* Mobile Menu */
        @media (max-width: 900px) {
            .nav-links {
                position: absolute;
                top: calc(100% + 10px);
                right: 2rem;
                background: #fff;
                flex-direction: column;
                width: 200px;
                padding: 1rem;
                display: none;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                border-radius: 8px;
            }

            .nav-links.active {
                display: flex;
            }

            .hamburger {
                display: flex;
            }
        }

        /* ===== Home Section ===== */
        #home {
            background: url('images/transportRobeKamionom.jpg') center/cover no-repeat;
            color: white;
            position: relative;
            text-align: center;
            overflow: hidden;
        }

        #home::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
        }

        #home .content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            animation: fadeIn 2s ease-in-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        #home h1 {
            font-size: 3rem;
            margin-bottom: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            line-height: 1.2;
        }

        #home p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #0077b6;
            color: white;
            text-decoration: none;
            padding: 0.8rem 2rem;
            font-size: 1.1rem;
            border-radius: 6px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .cta-btn:hover {
            background: #005f8a;
            transform: scale(1.05);
        }


        .nav-cta {
            background: #0077b6;
            color: white;
            border: none;
            padding: 0.6rem 1.5rem;
            font-size: 1rem;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.3s;
        }

        .nav-cta:hover {
            background: #005f8a;
        }

        @media (max-width: 600px) {
            #home h1 {
                font-size: 2.2rem;
            }

            #home p {
                font-size: 1rem;
            }

            .cta-btn {
                padding: 0.6rem 1.5rem;
                font-size: 0.9rem;
            }

            .nav-cta {
                font-size: 0.9rem;
            }
        }


        /* ===== Services Section ===== */
        #services {
            background-color: #f5f7fa;
            padding: 6rem 2rem;
        }

        #services h1 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #003366;
            text-transform: uppercase;
            text-align: center;
        }

        .service {
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 1200px;
            margin: 3rem auto;
            gap: 2rem;
            text-align: left;
        }

        .service.reverse {
            flex-direction: row-reverse;
        }

        .service-image {
            flex: 1;
            overflow: hidden;
            border-radius: 12px;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
            transition: transform 0.5s ease;
        }

        .service-image img:hover {
            transform: scale(1.05);
        }

        .service-text {
            flex: 1;
        }

        .service-text h2 {
            font-size: 1.6rem;
            color: #0077b6;
            margin-bottom: 1rem;
        }

        .service-text p {
            font-size: 1rem;
            line-height: 1.7;
            color: #333;
        }

        @media (max-width: 900px) {

            .service,
            .service.reverse {
                flex-direction: column;
                text-align: center;
            }

            .service-text {
                margin-top: 1rem;
            }
        }

        /* ===== About Section ===== */
        #about {
            background-color: #ffffff;
            padding: 6rem 2rem;
        }

        .about-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }

        .about-image {
            flex: 1;
            min-width: 320px;
        }

        .about-image img {
            width: 100%;
            border-radius: 16px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.4s ease;
        }

        .about-image img:hover {
            transform: scale(1.03);
        }

        .about-content {
            flex: 1.2;
            min-width: 320px;
        }

        #about h1 {
            font-size: 2.5rem;
            color: #003366;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        #about h2 {
            color: #0077b6;
            margin-top: 1.5rem;
            font-size: 1.4rem;
        }

        #about p {
            color: #333;
            line-height: 1.7;
            margin-top: 0.5rem;
            font-size: 1rem;
        }

        #about ul {
            margin-top: 1rem;
            list-style: none;
            padding-left: 0;
        }

        #about ul li {
            margin-bottom: 0.6rem;
            color: #444;
            font-weight: 500;
        }

        @media (max-width: 900px) {
            .about-container {
                flex-direction: column;
                text-align: center;
            }

            .about-content ul {
                text-align: left;
                display: inline-block;
            }
        }

        /* ===== Contact Section ===== */
        #contact {
            height: 100vh;
            background: linear-gradient(135deg, #1a1f2b, #283046);
            color: #e6e6e6;
            padding: 2rem 10%;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
        }

        #contact .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #0077b6;
            color: white;
            text-decoration: none;
            padding: 0.8rem 2rem;
            font-size: 1.1rem;
            border-radius: 6px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        #contact .cta-btn:hover {
            background: #005f8a;
            transform: scale(1.05);
        }

        #contact h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            text-align: center;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            font-size: 1.1rem;
            text-align: left;
        }

        .contact-info p span {
            color: #0077ff;
            font-weight: bold;
        }

        .map-container {
            width: 100%;
            max-width: 900px;
            max-height: 50vh;
            flex-grow: 1;
            /* Map takes remaining space */
            margin-top: 1.5rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            /* Fill container fully */
            border: 0;
        }

        @media (max-width: 600px) {
            #contact {
                padding: 2rem 1rem;
            }

            .map-container {
                height: 250px;
                /* Fixed height for small screens */
            }
        }

        footer {
            text-align: center;
            padding: 1rem;
            background: #003366;
            color: white;
        }