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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: #4e4e4e;
    background-image: url('../images/background.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.container-fluid {
    position: relative;
    min-height: 1350px;
}

.container-fluid .row:not(.bg-black) {
    padding-left: 500px;
}

.bg-black {
    background-color: #000;
}

.motorcycle-image {
    width: 100%;
    height: auto;
    min-height: 320px;
}

.hero-image-mobile {
    display: none;
}

.mobile-logo {
    display: none;
}

.header-logo {
    text-align: center;
}

.harley-logo {
    max-width: 200px;
    margin-bottom: 20px;
}
.albar-logo {
    max-width: 265px;
    margin-bottom: 20px;
}


.form-section {
    background-image: linear-gradient(180deg, #000000 0%, #464646 100%);
    border-radius: 15px;
    padding: 35px;
    position: absolute;
    top: 3%;
    left: 3%;
    max-width: 450px;
}

.form-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.required {
    color: #ff4444;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #555;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #ff6600;
    background: rgba(255, 255, 255, 0.1);
}

.checkbox-group {
    margin: 20px 0;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.5;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-text {
    flex: 1;
    color: #ccc;
}

.required-fields {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 15px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: #ff7700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

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

.promo-text {
    text-align: center;
}

.shilt-image {
    width: 33%;
    max-width: 322px;
    height: auto;
    object-fit: contain;
    object-position: right top;

}

.description-text {
    color: #e0e0e0;
    font-size: 22px;
    line-height: 1.7;
    margin-top: 20px;
}

.description-text p {
    margin-bottom: 10px;
}

.cta-text {
    display: inline-block;
    padding: 15px 30px;
    background: #ff6600;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;

}

.legal-section {
    margin-top: 50px;
    padding: 30px;
    background: #fff;
}

.legal-text {
    font-size: 0.7rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pollution-chart {
    margin-top: 30px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pollution-chart img {
    max-width: 100%;
    height: auto;
}

.pollution-note {
    font-size: 0.7rem;
    color: #666;
    margin-top: 10px;
}


@media (max-width: 1400px) {
    .container-fluid .row:not(.bg-black) {
        padding-left: 400px;
    }

    .content-section {
        gap: 0;
    }

    .form-section {
        max-width: 350px;
        padding-top: 0;
    }

    .form-title {
        font-size: 1rem;
    }

    .form-group {
        margin-bottom: 10px;
    }

    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }

    .checkbox-text {
        line-height: 1.4;
    }

    .submit-btn, .cta-text {
        font-size: 1rem;
        padding: 10px;
    }

    .form-group input[type="text"], .form-group input[type="tel"], .form-group input[type="email"] {
        padding: 5px 10px;
    }

    .harley-logo {
        max-width: 180px;
    }

    .albar-logo {
        max-width: 200px;
    }

    .description-text {
        font-size: 18px;
    }

    .shilt-image {
        width: 33%;
        max-width: 200px
    }
}

@media (max-width: 1200px) {
    .form-section{
        padding-left: 15px;
        padding-right: 15px;
        max-width: 300px;
    }
}



@media (max-width: 992px) {
    .container-fluid .row:not(.bg-black) {
        padding-left: 0;
    }

    body {
        padding-bottom: 100px;
    }

    .form-section{
        position: static;
        max-width: 625px;
        margin: 40px auto 0 auto;
        padding-top: 40px;
    }

    .form-section .header-logo {
      display: none;
    }

    .content-section {
        flex-direction: column-reverse;
        align-items: center;
    }

    .hero-image-mobile {
        display: block;
        max-width: 625px;
        margin: 0 auto;
    }

    .hero-image {
        display: none;
    }
    .mobile-logo {
        padding-top: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-direction: column;
    }

    .mobile-logo img{
        width: 100%;
        max-width: 300px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .form-section {
        padding: 25px;
        position: relative;
        top: 0;
        left: 0;
        max-width: 100%;
    }
}

::placeholder {
    color: #888;
}

/* Fixed buttons - скрыты на десктопе */
.fixed-buttons {
    display: none;
}

/* Fixed buttons - видимы на мобильных */
@media (max-width: 992px) {
    .fixed-buttons {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        padding: 15px;
        gap: 10px;
        z-index: 1000;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }

    .fixed-button {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 15px 20px;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: bold;
        color: #fff;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .fixed-button svg {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .fixed-button-call {
        background: #ff6600;
    }

    .fixed-button-call:hover {
        background: #ff7700;
    }

    .fixed-button-form {
        background: #000;
    }

    .fixed-button-form:hover {
        background: #333;
    }

    .fixed-button span {
        white-space: nowrap;
    }

    @media (max-width: 500px) {
        .fixed-buttons {
            padding: 10px;
            gap: 8px;
        }

        .fixed-button {
            padding: 12px 15px;
            font-size: 14px;
            gap: 8px;
        }

        .fixed-button svg {
            width: 20px;
            height: 20px;
        }
    }
}
