body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: url('/static/img/transporting2.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background 0.5s ease;
    position: relative;
}

header {
    position: fixed;
    top: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
}

.header-glass-panel {
    width: calc(100% - 20px);
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.logo-container {
    position: absolute;
    top: 8px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.company-name {
    font-size: 16px;
    font-weight: 600;
    color: #11347b;
}

.language-selector {
    position: absolute;
    top: 8px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-selector select {
    background: rgba(0, 123, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 8px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-selector select:focus {
    outline: none;
    border-color: #007bff;
}

.language-selector select option {
    background: #333;
    color: #fff;
}

.language-selector .about-btn {
    background: rgba(0, 123, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 10px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
}

.language-selector .about-btn:hover {
    background: rgba(0, 86, 179, 0.4);
    transform: translateY(-2px);
}

nav {
    width: 100%;
    text-align: center;
}

.extra-glass-panel {
    background: rgba(1, 116, 197, 0.354);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 6px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 8px;
}

.extra-glass-panel h2 {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.extra-glass-panel ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 4px 6px;
    margin: 0;
}

.extra-glass-panel a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.extra-glass-panel a:hover, .extra-glass-panel a.active {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

main {
    margin-top: 120px;
    padding: 20px 10px;
    width: 100%;
    max-width: 1000px;
    min-height: calc(100vh - 60px);
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(200, 200, 200, 0.25);
    backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-sizing: border-box;
}

section.hidden {
    display: none !important;
    opacity: 0;
    visibility: hidden;
}

.service-info {
    flex: 1;
}

.glass-panel {
    background: rgba(1, 116, 197, 0.354);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.service-info h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.service-info > p {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 20px;
}

.service-options {
    margin-top: 20px;
}

.service-options h2 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.option-checkbox {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-checkbox:hover {
    background: rgba(255, 255, 255, 0.2);
}

.option-checkbox input {
    margin-right: 8px;
}

.option-checkbox span {
    color: #fff;
    font-size: 14px;
}

.how-we-work {
    margin-top: 15px;
}

.how-we-work h2 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.how-we-work p {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}

.why-choose-us {
    margin-top: 15px;
}

.why-choose-us h2 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.why-choose-us p {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}

.form-container {
    flex: 1;
    max-width: 100%;
}

.inner-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.inner-form h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
    font-weight: 400;
}

form input,
form select,
form textarea {
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
    border-color: #007bff;
    outline: none;
}

form textarea {
    resize: vertical;
}

.submit-btn {
    background: #007bff;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Media Queries for Desktop */
@media (min-width: 768px) {
    section {
        flex-direction: row;
        gap: 30px;
    }

    .form-container {
        flex: 0 0 350px;
    }

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

    .header-glass-panel {
        max-width: 1200px;
    }

    .extra-glass-panel {
        max-width: 400px;
    }

    .service-info h1 {
        font-size: 36px;
    }

    .service-options h2,
    .how-we-work h2,
    .why-choose-us h2 {
        font-size: 24px;
    }

    .option-checkbox span,
    .how-we-work p,
    .why-choose-us p {
        font-size: 16px;
    }

    .inner-form h2 {
        font-size: 24px;
    }

    form label {
        font-size: 16px;
    }

    form input,
    form select,
    form textarea {
        font-size: 16px;
        padding: 12px;
    }

    .submit-btn {
        font-size: 16px;
        padding: 12px;
    }
    .pac-container {
        z-index: 10000;
        font-family: 'Inter', sans-serif;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    .pac-item {
        padding: 10px;
        cursor: pointer;
        font-size: 14px;
    }
    .pac-item:hover {
        background-color: #f0f0f0;
    }
    .pac-item-query {
        font-weight: 600;
    }
    .error-message {
        color: red;
        text-align: center;
        padding: 10px;
        margin: 10px 0;
        display: none;
    }
}

/* Media Queries for Mobile */
@media (max-width: 767px) {
    .header-glass-panel {
        padding-top: 70px;
    }

    .logo-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        left: 30px;
        top: 5px;
    }

    .logo {
        width: 40px;
        height: 40px;
    }

    .company-name {
        font-size: 14px;
    }

    body {
        background: linear-gradient(135deg, #d4a5ff 0%, #ffccbc 25%, #a8e6cf 50%, #b3e5fc 75%, #d4a5ff 100%);
        background-size: 200% 200%;
        animation: gradient 25s ease infinite;
    }

    @keyframes gradient {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    main {
        margin-top: 190px;
    }
}