    html,
    body {
        margin: 0;
        scroll-behavior: smooth;
        margin: 0;
        padding: 0;
        font-family: 'Roboto Mono';
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    body {
        scroll-snap-type: y proximity;
        overflow-x: hidden;
        background-color: #171717;
        color: #fff;
        font-family: sans-serif;
    }

    .header {
        position: fixed;
        left: 0;
        top: 50px;
        width: 100%;
        height: 85px;
        gap: 46%;
        display: flex;
        align-items: center;
        padding: 0 20px;
        z-index: 1000;
        background-color: transparent;
        transition: background-color 0.3s ease;
        justify-content: space-around;
        font-family: sans-serif;
    }


    .header.scrolled {
        background-color: rgba(0, 0, 0, 0.2);
        /* siyah ve yarı şeffaf */
    }


    .logo {
        width: 85px;
        height: 68px;
        display: inline-block;
        background-image: url(../images/Honda_Logo.svg);
        background-size: contain;
        /* veya cover */
        background-repeat: no-repeat;
        background-position: center;
    }

    .title {
        font-size: 19px;
        margin-left: 16px;
        color: white;
    }

    .nav {
        display: flex;
        align-items: center;
        margin-left: 483px;
        gap: 46px;
        font-size: 19px;
    }

    .nav a {
        text-decoration: none;
        color: white;
        transition: transform 0.2s ease;
    }

    .nav a:hover {
        transform: scale(1.1);
    }

    .buy-button {
        margin-left: 52px;
        width: 187px;
        height: 35px;
        background-color: #000000;
        box-shadow: 0 4px 8px rgba(185, 185, 185, 0.2);
        background-position: left center;
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        cursor: pointer;
        font-weight: bold;
        transition:
            background-color 0.3s ease-in-out,
            color 0.3s ease-in-out,
            transform 0.5s ease;
    }

    @media (hover: hover) {
        .buy-button:hover {
            background-color: white;
            /* Arka plan sabit kalır */
            color: black;
            /* Metin rengini geçici olarak gizler */
            transform: scale(0.9);
        }

        .buy-button:hover::after {
            background-color: black;
            /* Arka plan sabit kalır */
            color: white;
            /* Metin rengini geçici olarak gizler */
            transform: scale(1);
        }
    }


    /* Dokunmatik cihazlar için aktif sınıf */
    .buy-button.touch-active {
        background-color: white;
        color: black;
        transform: scale(0.9);
    }


    .announcement-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 50px;
        background-color: #460000;
        color: white;
        overflow: hidden;
        z-index: 9999;
        display: flex;
        align-items: center;
        font-family: sans-serif;
        font-weight: bold;
    }

    .scrolling-container {
        display: flex;
        position: relative;
        white-space: nowrap;
        height: 100%;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .message {
        position: absolute;
        white-space: nowrap;
        font-size: 18px;
        color: white;
        padding: 0 30px;
        font-weight: 600;
    }



    .banner {
        display: flex;
        overflow: hidden;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        background-image: url(../images/mainbanner.svg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        position: relative;
        z-index: -1;
    }

    #intro-banner {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0.12;
        background-color: black;
        transition: opacity 2s ease;
    }

    /* Banner kaybolunca görünmez yap */
    #intro-banner.hide {
        opacity: 0;
        pointer-events: none;
    }

    /* Logo stil */
    #intro-banner img {

        height: auto;
    }

    /* Yazı başlangıç hali */
    #animated-text {
        position: absolute;
        color: white;
        top: 0px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 4.1vw;
        font-weight: bold;
        opacity: 0;
        font-family: sans-serif;
        z-index: 9998;
    }

    /* Aşağı kayma animasyonu */
    #animated-text.drop {
        animation: dropDown 1s ease forwards;
    }

    /* Yanıp sönme efekti */
    #animated-text.flash {
        animation: flashOnce 1.5s ease forwards;
    }

    @keyframes dropDown {
        100% {
            top: 43%;
            transform: translate(-50%, -50%);
            opacity: 1;
        }
    }

    /* @keyframes flashOnce {
      0%   { opacity: 1; }
      50%  { opacity: 0.5; }
      100% { opacity: 1; }
    } */
    .empty {
        width: 100%;
        height: 43px;
        background-color: black;
        left: 0;
        position: relative;
        z-index: -10;
    }

    .section {
        scroll-snap-align: start;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 103px;
        transition: background-color 0.6s ease;
        color: white;
        flex-direction: row;
        padding: 20px;

    }

    .section img {
        max-width: 42vw;
        max-height: 579px;
        opacity: 0;
        transform: translateX(-100px);
        transition: opacity 2s ease, transform 3s ease;
    }

    .section.active img {
        opacity: 1;
        transform: translateX(0);
    }



    .title-category {
        font-size: 3vw;
        font-weight: 800;
        font-family: sans-serif;
        text-transform: uppercase;
        display: flex;
        gap: 5px;
        position: relative;
    }

    .letter {
        display: inline-flex;
        /* inline davranış + esneklik */
        justify-content: center;
        /* içeriği yatay ortala */
        align-items: center;
        /* dikey ortala */
        width: 1ch;
        /* sabit genişlik (harf boyu kadar) */
        font-family: 'Roboto Mono', monospace;
        /* her karakter eşit genişlikte */
        white-space: pre;
        /* boşlukları da "render" et */
    }



    .text-group {
        max-width: 26%;
        display: flex;
        flex-wrap: wrap;
        gap: 10px 20px;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        font-family: sans-serif;
        position: relative;
        height: max-content;
    }

    .model {
        font-size: 1.3vw;
        color: white;
        padding: 5px 0px;
        border-radius: 4px;
        white-space: nowrap;
        display: inline-block;
        position: relative;
        margin: 10px 0;
    }



    .model::after {
        content: "";
        position: absolute;
        left: 5%;
        right: 11%;
        bottom: -5px;
        height: 2px;
        background-color: #759F31;
        opacity: 0.7;
    }

    /* Her kategori için özel renkler */
    .section.naked .model::after {
        background-color: #759F31;
    }

    .section.supersport .model::after {
        background-color: #87C9FF;

    }

    .section.adventure .model::after {
                background-color: #FFABAC;
    }

    .section.scooter .model::after {
        background-color: #E4CEBB;
    }

    .section.touring .model::after {
        background-color: #C1C1C1;
    }

    .section,
    .banner {
        filter: brightness(0.1);
        transition: filter 2s ease;
    }

    .section.active,
    .banner.active {
        filter: brightness(1);
    }

    .section {
        position: relative;
        overflow: hidden;
    }

    .section::before,
    .section::after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 50px;
        /* Geçiş uzunluğu, isteğe göre azaltılabilir/arttırılabilir */
        z-index: 2;
        pointer-events: none;
    }



    /* Her kategori için özel renkler */
    .section.naked::before {
        top: 0;
        background: linear-gradient(to top, #3A3F32, rgba(255, 255, 255, 0));
    }

    .section.supersport::before {
        top: 0;
        background: linear-gradient(to bottom, #0C1D40, rgba(255, 255, 255, 0));
        
    }

    .section.adventure::before {
        top: 0;
        background: linear-gradient(to top, #912526, rgba(255, 255, 255, 0));
    }

    .section.scooter::before {
        top: 0;
        background: linear-gradient(to bottom, #534A41, rgba(255, 255, 255, 0));
    }

    .section.touring::before {
        top: 0;
        background: linear-gradient(to bottom, #5C5C5C, rgba(255, 255, 255, 0));
    }



    .section.naked::after {
        bottom: 0;
        background: linear-gradient(to bottom, #3A3F32, rgba(255, 255, 255, 0));
        transform: rotate(180deg);
    }

    .section.supersport::after {
        bottom: 0;
        transform: rotate(180deg);
        background: linear-gradient(to bottom, #0C1D40, rgba(255, 255, 255, 0));
    }

    .section.adventure::after {
        bottom: 0;
        background: linear-gradient(to bottom, #912526, rgba(255, 255, 255, 0));
        transform: rotate(180deg);
    }

    .section.scooter::after {
        bottom: 0;
        background: linear-gradient(to bottom, #534A41, rgba(255, 255, 255, 0));
        transform: rotate(180deg);
    }

    .section.touring::after {
        bottom: 0;
        background: linear-gradient(to bottom, #5C5C5C, rgba(255, 255, 255, 0));
        transform: rotate(180deg);
    }



    #motor-scroll {
        top: -30%;
        height: auto;
        /* JS ile dinamik yapılabilir */
        position: relative;
    }

    #motor-image {
        position: sticky;
        top: 50%;
        transform: translateY(-50%);
        width: 70vw;
        max-width: 90%;
        display: block;
        margin: 0 auto;
        z-index: 1;
    }

    .info-block {
        position: relative;
        width: 45%;
        padding: 2rem;
        font-size: 1.2rem;
        line-height: 1.5;
        color: white;
        display: flex;
        flex-direction: column;
    }

    .info-block.left {
        text-align: left;
        left: 0;
        margin-left: 9%;
        max-width: 22%;
    }

    .info-block.right {
        max-width: 22%;
        text-align: right;
        right: 0;
        margin-left: auto;
        margin-right: 8%;
    }


    .info-block p {
        color: #F3F4F6;
        margin: 16px 0px;
        font-weight: 700;
        font-size: 4vw;
        line-height: 100%;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    .info-number {
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight: 400;
        font-size: 1.6vw;
        color: #BFBFBF;
        line-height: 100%;
    }

    .info-about {
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight: 400;
        font-size: 1.4vw;
        line-height: 100%;
        color: #BFBFBF;
    }

    #viewer-container {
        max-height: none;
        overflow-y: scroll;
        scroll-behavior: smooth;
        scrollbar-width: none;
        scrollbar-width: none;
    }

    #viewer-container::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari */
    }

    .detail {
        position: relative;
        float: right;
        right: 9.9%;
        width: max-content;
        top: -20%;
        background-repeat: no-repeat;
        background-position: right;
        padding-right: 4vw;
        cursor: pointer;
        background-image: url(../images/arrow-right-sm.svg);
        background-size: 36px;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight: 500;
        font-size: 28px;
        line-height: 100%;

    }

    .contact {
        background-color: #2e2e2e;
    }

    .contact-img-wrapper {
        display: flex;
        width: 100vw;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .contact-img {
        width: 100%;
        margin: 0;
        transition: filter 0.3s ease;
        filter: brightness(0.5);
        height: auto;
    }

    .contact-empty {
        background-image: url(../images/honda_logo2.svg);
        background-position: bottom;
        background-size: 64%;
        background-repeat: no-repeat;
        width: 100%;
        background-color: #2E2E2E;
        left: 0;
        position: relative;
        z-index: 0;
        display: flex;
        justify-content: center;
    }

    .contact-form {
        width: 85%;
        position: absolute;
        bottom: 5%;
        margin: 0% 0% 0% 0%;
        background-color: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        padding: 3% 2.8% 5% 2%;
        display: flex;
        border-radius: 8px;
        gap: 44px;
        flex-direction: column;
    }

    .contact-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .contact-header label {
        display: flex;
        align-items: center;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight: 500;
        font-size: 1vw;
        line-height: 100%;
        color: #F3F4F6;
        gap: 10px;
        height: 5.5vh;
    }

    .contact-header input[type="checkbox"] {
        appearance: none;
        -webkit-appearance: none;
        width: 20px;
        height: 20px;
        border: 1px solid #A7A7A7;
        border-radius: 50%;
        background-color: transparent;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .contact-header input[type="checkbox"]:checked {
        background-color: white;
    }

    .select-wrapper {
        width: 489px;
        height: 46px;
        position: relative;
        display: none;
        transition: transform 0.5s ease-in-out;

    }


    .custom-select {
        width: 125%;
        height: 46px;
        background-color: #303030;
        border-radius: 4px;
        display: flex;
        align-items: center;
        padding: 0 16px;
        box-sizing: border-box;
        cursor: pointer;
        position: relative;
        margin-left: -24%;
        transition: background-color 0.3s ease;

    }

    .custom-select .selected-option {
        color: #fff;
        font-size: 16px;
        padding: 10px 0;
        display: block;
    }

    .select-dropdown {
        position: absolute;
        top: 100%;
        z-index: 99;
        left: 0;
        width: 100%;
        background-color: #303030;
        border-radius: 4px;
        box-shadow: 0 4px 8px rgba(185, 185, 185, 0.2);
        display: none;
        /* Başlangıçta gizli */
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .select-dropdown li {
        padding: 10px 16px;
        color: #fff;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

    .select-dropdown li:hover {
        background-color: #646464;
    }

    /* Seçilen modelin arka plan rengini değiştirmek */
    .select-dropdown li.selected {
        background-color: #646464;
    }



    .select-arrow {
        position: absolute;
        right: 16px;
        pointer-events: none;
        display: flex;
        align-items: center;
        transition: transform 0.3s ease;
    }

    .custom-select.open .select-arrow svg {
        transform: rotateX(180deg);
    }

    /* Diğer form düzenlemeleri */
    .input-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
        height: 54px;
        gap: 23%;
    }



    .submit-btn {
        display: flex;
        justify-content: flex-end;
    }

    .submit-btn button {
        width: 220px;
        height: 43px;
        background-color: #000;
        color: white;
        border: none;
        padding: 10px 20px;
        font-size: 16px;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight: 500;
        cursor: pointer;
        border-radius: 4px;
        transition: all 0.3s ease-in-out;

    }

    .submit-btn button:hover {
        background-color: white;
        color: #000;
    }



    /* Placeholder yazılarının rengini ayarla */
    .input-row input::placeholder {
        color: #D8D8D8;
    }

    /* Input odaklandığında border rengini değiştirmek için (isteğe bağlı) */
    .input-row input:focus {
        border-color: #A3A3A3;
        outline: none;
        /* Fokusda outline'ı kaldır */
    }

    .contact-form {
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .contact-form.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .info-block {
        opacity: 0;
        transform: translateY(40px);
        /* Aşağıdan yukarıya */
        transition: all 0.6s ease-out;
    }

    .info-block.visible {
        opacity: 1;
        transform: translateY(0);
        /* Orijinal konum */
    }


    .footer-left {
        display: flex;
        gap: 31%;
        align-items: center;
    }


    .site-footer {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        background-color: #111;
        color: #eee;
        padding: 4% 9% 4% 10%;
        font-family: sans-serif;
        gap: 20px;
        align-items: flex-start;
    }

    .footer-line {
        width: 100%;
    }

    .footer-line svg {
        width: 100%;
        display: block;
        filter: blur(1px);
    }

    .footer-left,
    .footer-center {
        flex: 0 0 auto;
        /* Genişliklerini içeriğe göre belirlesin, büyümesin */
        min-width: 250px;
    }

    .footer-right {
        flex: 1 1 auto;
        /* Kalan boşluğu kaplasın */
        min-width: 250px;
    }

    .footer-left {
        flex: 0 0 auto;
        min-width: 120px;
    }

    .footer-center {
        flex: 0 1 561px;
    }

    .footer-right {
        flex: 1 1 auto;
    }

    .footer-logo{
        display: block;
        margin-bottom: 10px;
        transition: transform 0.5s ease;
        width: 120px;
        height: 120px;
    }

    .footer-logo:hover {
        transform: scale(1.1);
    }

    .footer-left button {
        background: linear-gradient(to right, #000000, #800000);
        background-size: 200% 100%;
        color: white;
        padding: 8px 16px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-weight: bold;
        height: 30%;
        width: 30%;
        align-items: center;
        transition: background-position 0.2s ease-in-out, transform 0.5s ease;
    }

    .footer-left button:hover {
        background-position: right center;
        /* Renkler yer değiştirir */
        transform: scale(1.1);
    }

    .footer-center h3 {
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 18px;
    }

    .footer-center p {
        margin: 5px 0;
        font-size: 14px;
    }

    .footer-right iframe {
        border-radius: 8px;
        transition: all 0.3s ease-in-out;
        filter: invert(1) grayscale(1);
    }

    .footer-right iframe:hover {
        border-radius: 8px;
        filter: invert(1) grayscale(0.7);
        transform: scale(1.1);
        box-shadow: 0 4px 8px rgba(185, 185, 185, 0.2);
    }

    .footer-center {
        padding: 20px;
        color: #eee;
        width: 51%;
    }

    .footer-title {
        font-size: 20px;
        margin-bottom: 20px;
        color: #fff;
    }

    .footer-info-grid {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 20px;
        text-align: left;
        align-items: flex-start;
    }

    .footer-info-block {
        flex: 1;
        max-width: 300px;
    }

    .footer-info-block strong {
        font-weight: bold;
    }

    .footer-info-block p {
        margin: 5px 0;
    }

    .input-row {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .input-wrapper {
        position: relative;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .animated-input {
        background-color: transparent;
        border: none;
        color: white;
        padding: 0px 12px;
        font-size: 16px;
        width: 100%;
        outline: none;
        z-index: 1;
        position: absolute;
        height: 100%;
    }

    .input-underline {
        position: absolute;
        bottom: 0;
        left: 2%;
        height: 3px;
        width: 98%;
        transition: width 0.4s ease, height 0.4s ease;
        z-index: 0;
    }


    .input-wrapper.focused .animated-input::placeholder {
        color: transparent;
    }

    .text-ghost {
        position: relative;
        color: transparent;
        left: 12px;
        top: 32%;
        font-size: 16px;
        transition: all 0.3s ease-in-out;
    }

    .video-place {
        width: 100%;
        padding: 10% 0%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .video-place video {
        width: 70%;
        transition: all 0.5s ease;
        border-radius: 12px;
        z-index: 1;
    }

    /* Aktif olduğunda: video full-screen olsun */
    .video-place.active video {
        position: relative;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        border-radius: 0;
        z-index: 10000;
        transition: all 0.5s ease;

    }

    /* Cursor stilleri */
    #fakeCursor {
        line-height: 141%;
        position: fixed;
        display: flex;
        align-items: center;
        gap: 6px;
        pointer-events: none;
        color: white;
        font-size: 16px;
        padding: 4px 10px;
        border-radius: 5px;
        font-family: sans-serif;
        opacity: 0;
        transform: translate(-50%, -50%);
        transition: opacity 0.2s ease;
        z-index: 10001;
        /* video'dan yüksek */
    }

    #cursorIcon svg {
        display: block;
    }

    .hide-cursor {
        cursor: none;
    }

    .section-wrapper {
        position: relative;
    }

    .color-overlay {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
        mix-blend-mode: multiply;
        z-index: 1;
    }

    /* Her section için farklı renkler */
    .overlay-naked {
        background-color: #3A3F32;
    }

    .overlay-supersport {
                background-color: #007BDE;
    }

    .overlay-adventure {
        background-color: #FF4848;
    }

    .no-scroll {
        overflow: hidden;
        height: 100vh;
    }

    .error-msg {
        font-size: 0.9rem;
        color: red;
        margin-top: 5px;
        display: block;
        position: absolute;
        left: 3%;
        top: 103%;
        font-family: sans-serif;
        font-style: italic;
        font-weight: 600;
    }

    #form-submit {
        position: relative;
        /* veya absolute */
    }

    #error-button-submit {
        position: absolute;
        top: 2.5rem;
        left: unset;
        font-size: 0.9rem;
        color: red;
        opacity: 0;
        transition: opacity 0.3s ease;
    }


    #form-submit {
        transition: all 0.3s ease;
    }


    #form-submit:hover {
        transform: scale(0.9);
        transition: transform 0.3s ease;
    }
.buy-button,
#form-submit{
    user-select: none;                
    -webkit-user-select: none;        
    -ms-user-select: none;            
    -webkit-touch-callout: none;      
    touch-action: manipulation;       
    -webkit-tap-highlight-color: transparent;
}

.logo{
-webkit-tap-highlight-color: transparent; 
}

    

    /*                   RESPONSİVE SİDE                   */




    @media (min-width: 1024px) {
        .banner {
            background-position: center 70%;
        }
    }

    /* En geniş: 1024 ve altı */
    @media (max-width: 1023px) {

        .announcement-bar {
            top: 0;
        }

        .buy-button {
            margin-left: 52px;
        }

        .empty {
            display: none;
        }

        .section {
            justify-content: flex-start;
            align-items: center;
            align-content: center;
            row-gap: 11% !important;
            gap: 0 7vw;
            transition: background-color 0.6s ease;
            color: white;
            flex-direction: row;
            padding: 20px;
            flex-wrap: wrap;
        }

        .section img {
            max-width: 42vw;
            max-height: 264px;
        }

        .title-category {
            font-size: 3vw;
            margin-left: 50px;
        }

        .text-group {
            max-width: 100%;
            width: 100%;
            padding-left: 4vw;
        }



        #intro-banner {
            display: none;
        }

        .model {
            font-size: 2vw;
        }
    }

    /* Orta boy: 768 ve altı */
    @media (max-width: 768px) {


        .header {
            height: 74px;
            gap: 38%;
            top: 50px;

        }

        .buy-button {
            margin-left: 0;
        }

        .announcement-bar {
            top: 0;
        }

        .logo {
            width: 50px;
            height: 40px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }



        .banner {
            height: 100vh;
        }

        #intro-banner {
            display: none;
        }

        #intro-banner img {
            position: relative;
            top: 7%;
        }

        .empty {
            display: none;
        }

        .section {
            justify-content: flex-start;
            align-items: center;
            align-content: center;
            row-gap: 11% !important;
            gap: 0;
            transition: background-color 0.6s ease;
            color: white;
            flex-direction: row;
            padding: 20px;
            flex-wrap: wrap;
        }

        .text-group {
            max-width: 100%;
        }

        #motor-image {
            top: 25%;
            width: 100vw;
        }

        #motor-scroll {
            top: 14%;
            padding-bottom: 15%;

        }

        .info-block {
            padding: 1rem 0rem;
        }

        .info-block.right {
            max-width: 35%;
        }

        .info-block.left {
            max-width: 35%;
        }

        .info-number {
            font-size: 2vw;
        }

        .info-about {
            font-size: 2vw;
        }

        .image-wrapper {
            position: sticky;
            background-color: #171717;
            z-index: 1;
            top: 0%;
            width: 100%;
            padding-top: 7vh;
            box-shadow: 0 80px 70px #171717;
        }

        #motor-image {
            transform: none;
            max-width: 90%;
        }

        .detail {

            padding-right: 6vw;
            top: 5%;
        }

        #fakeCursor {
            display: none !important;
        }

        .site-footer {
            flex-direction: column-reverse;
            padding: 4% 0% 4% 0%;
            gap: 0;
        }

        .footer-right {
            width: 100vw;
            height: 40vh;
        }

        .footer-right iframe {
            height: 40vh;
        }

        .footer-center {
            flex: 0;
        }

        .footer-info-block:nth-child(3) {
            position: relative;
            left: 105%;
            margin-top: -9.8vh;
        }

        .footer-info-block:nth-child(3) p:nth-of-type(1) {
            font-size: 18px;
        }

        .footer-logo {
            width: 50px;
            height: 40px;
            margin-left: 20%;
        }

        .video-place.active video {
            position: relative;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            object-fit: cover;
            border-radius: 0;
            z-index: 10000;
            transition: all 0.5s ease;

        }

        .message {
            font-size: 14px;
            font-weight: 500;
        }

        .contact-form {
            gap: 32px;
            width: 100%;
            bottom: 0;
            border-radius: 8px 8px 0px 0px;
            padding: 4% 2.8% 9% 2%;
        }

        .contact-header {
            flex-direction: column;
            align-content: flex-start;
            flex-wrap: wrap;
            margin-bottom: 0;
        }

        .contact-header label {
            font-size: 1.9vw;
            height: 1.5vh;
            line-height: 13px;
        }

        .contact-header input[type="checkbox"] {
            width: 15px;
            height: 15px;
        }

        .select-wrapper {
            width: 27vw;
            height: 6vh;
        }

        .custom-select {
            height: 34px;
            margin-top: 10%;
            margin-left: -1vw;
        }

        .custom-select .selected-option {
            font-size: 2vw;
        }

        .select-dropdown li {
            padding: 5px 6px;
            font-size: 2vw;
        }

        .select-arrow svg {
            width: 3vw;
        }

    }

    /* En küçük: 480 ve altı */
    @media (max-width: 480px) {


        .header {
            height: 74px;
            gap: 38%;
            top: 50px;

        }

        .buy-button {
            margin-left: 0;
        }

        .announcement-bar {
            top: 0;
        }

        .logo {
            width: 50px;
            height: 40px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }


        .banner {
            height: 100vh;
        }

        #intro-banner {
            display: none;
        }

        #intro-banner img {
            position: relative;
            top: 7%;
        }

        .empty {
            display: none;
        }

        .section {
            justify-content: flex-start;
            align-items: center;
            align-content: center;
            row-gap: 11% !important;
            gap: 0;
            transition: background-color 0.6s ease;
            color: white;
            flex-direction: row;
            padding: 20px;
            flex-wrap: wrap;
            height: 47vh;
        }

        .text-group {
            max-width: 100%;
        }

        .info-block {
            padding: 0.5rem 1rem !important;
        }

        .info-number {
            font-size: 2.6vw;
        }

        .info-block p {
            font-size: 5vw;
        }

        .info-about {
            font-size: 2.4vw;
        }

        #motor-scroll {
            top: 14%;
            padding-bottom: 10vh;
        }

        .detail {
            top: 7%;
            padding-right: 10vw;
            background-size: 26px;
            font-size: 19px;
        }

        .info-block.right {
            max-width: 45%;
        }

        .info-block.left {
            max-width: 45%;

        }

        .image-wrapper {
            position: sticky;
            background-color: #171717;
            z-index: 1;
            top: -10%;
            width: 100%;
            padding-top: 20vh;
            box-shadow: 0 80px 70px #171717;
        }

        #motor-image {
            transform: none;
            max-width: 100%;
        }

        .contact-header label {
            font-size: 1.8vw;
            height: 1.5vh;
            line-height: 13px;
        }

        .contact-header input[type="checkbox"] {
            width: 13px;
            height: 13px;
        }

        .select-wrapper {
            width: 27vw;
            height: 3vh;
        }

        .custom-select {
            height: 20px;
            margin-top: 10%;
            margin-left: 3%;
        }

        .custom-select .selected-option {
            font-size: 2vw;
        }

        .select-arrow svg {
            width: 3vw;
        }

        .select-dropdown li {
            padding: 5px 6px;
            font-size: 2vw;
        }

        .contact-header {
            flex-direction: column;
            align-content: flex-start;
            flex-wrap: wrap;
            margin-bottom: 0;
        }

        .animated-input {
            font-size: 2.2vw;

        }

        .text-ghost {
            font-size: 2.2vw !important;
        }

        .input-row {
            margin-bottom: 0;
        }

        .contact-form {
            gap: 14px;
            width: 100%;
            bottom: 0;
            border-radius: 8px 8px 0px 0px;
            padding: 4% 2.8% 9% 2%;
        }


        .error-msg {
            font-size: 2.3vw;
            margin-top: 0;
        }

        .submit-btn button {
            width: 21vw;
            height: 3.6vh;
            padding: 0;
            font-size: 14px;
        }

        #fakeCursor {
            display: none !important;
        }

        .site-footer {
            flex-direction: column-reverse;
            padding: 4% 0% 4% 0%;
            gap: 0;
        }

        .footer-right {
            width: 100vw;
            height: 40vh;
        }

        .footer-right iframe {
            height: 40vh;
        }

        .footer-center {
            flex: 0;
        }

        .footer-info-block:nth-child(3) {
            position: relative;
            left: 105%;
            margin-top: -88%;
        }

        .footer-info-block:nth-child(3) p:nth-of-type(1) {
            font-size: 18px;
        }

        .footer-logo {
            width: 50px;
            height: 40px;
            margin-left: 20%;
        }

        .video-place.active video {
            position: relative;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            object-fit: cover;
            border-radius: 0;
            z-index: 10000;
            transition: all 0.5s ease;

        }
    }

    @media (max-width: 1024px) and (orientation: landscape) {
        #fakeCursor {
            display: none !important;
        }

        .video-place.active video {
            position: relative;
            top: 0;
            left: 0;
            width: 100vw !important;
            height: 100vh !important;
            object-fit: cover;
            border-radius: 0;
            z-index: 10000;
            transition: all 0.5s ease;

        }
    }