body {
    margin: 0;
    padding: 0;
     overflow-x: hidden;
     background:#F8F9FB;
}

.hero {
    width: 100%;
    height: 70vh;
    background: url("../images/hero3.png") no-repeat center center/cover;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 95%;
    max-width: 1500px;
}

.hero-booking-form {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 22px;
    display: flex;
    align-items: end;
    gap: 15px;
    box-shadow: 0 10px 35px rgba(0,0,0,.15);
    flex-wrap: nowrap;
}

.form-group {
    flex: 1;
    min-width: 0;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1c1c1c;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    height: 55px;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 0 15px;
    font-size: 15px;
    outline: none;
    transition: .3s;
    box-sizing: border-box;
}

.form-group input:focus {
    border-color: #d4af37;
}

.passenger-group {
    flex: 0 0 190px;
}

.passenger-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    height: 55px;
}

.passenger-selector button {
    width: 55px;
    height: 55px;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;
    transition: .3s;
}

.passenger-selector button:hover {
    background: #FEAA03;
    color: white;
}

.passenger-selector input {
    border: none;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    background: white;
}

.search-btn {
    height: 55px;
    padding: 0 35px;
    border: none;
    border-radius: 12px;
    background: #FEAA03;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: .3s;
}

.search-btn:hover {
    background: #b89222;
    transform: translateY(-2px);
}


.trust-section{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
    background: #f8f9fb;
    margin-top: 50px;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.trust-item{
    background: #fff;
    width: 280px;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.trust-item:hover{
    transform: translateY(-5px);
}

.trust-item .icon{
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #FEAA03;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
}

.trust-item h3{
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
}

.trust-item p{
    font-size: 18px;
    color: #666;
    line-height: 1.5;
}


.reviews-section{
    width: 100%;
    padding: 70px 20px;
    background: #F8F9FB;
    text-align: center;
}

.reviews-section h2{
    font-size: 28px;
    margin-bottom: 40px;
    color: #222;
}

.reviews{
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.review-card{
    width: 300px;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.review-card:hover{
    transform: translateY(-5px);
}

.stars{
    color: #ffb400;
    font-size: 18px;
    margin-bottom: 10px;
}

.review-card p{
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
}

.review-card h4{
    font-size: 14px;
    color: #222;
}

.routes-section{
    padding: 80px 20px;
    background: #f8f9fb;
    text-align: center;
}

.routes-section h2{
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 700;
}

.routes{
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Ã¼st 3 alt */
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.route-card{
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.10);
    transition: 0.3s;
    position: relative;
}

.route-card:hover{
    transform: translateY(-8px);
}

.image{
    position: relative;
}

.route-card img{
    width: 100%;
    height: 220px; /* ðŸ”¥ daha bÃ¼yÃ¼k image */
    object-fit: cover;
    transition: 0.4s;
}

.route-card:hover img{
    transform: scale(1.05);
}

.badge{
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ffb400;
    color: #000;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 30px;
    font-weight: 600;
}

.content{
    padding: 18px;
    text-align: left;
}

.content h3{
    font-size: 24px;
    margin-bottom: 6px;
    font-weight: 600;
}

.content p{
    font-size: 20px;
    color: #666;
    margin-bottom: 18px;
}

.bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price{
    font-size: 28px;
    font-weight: 700;
    color: #111;
}

/* ðŸ”¥ PROFESSIONAL BUTTON */
.detail-btn{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #111, #333);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.detail-btn:hover{
    background: linear-gradient(135deg, #ffb400, #ffcc33);
    color: #000;
    transform: scale(1.1);
}

/* ===================================================
   GLOBAL RESPONSIVE FIX
=================================================== */

*{
    box-sizing:border-box;
}

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}


/* ===================================================
   REVIEWS SECTION
=================================================== */

.reviews-section{
    width:100%;
    padding:80px 15px;
    background:#F8F9FB;
    text-align:center;
    overflow:hidden;
}


.reviews-section h2{
    font-size:34px;
    font-weight:700;
    color:#222;
    margin-bottom:45px;
}



/* Reviews Grid */

.reviews{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}



/* Review Card */

.review-card{
    width:100%;
    max-width:100%;
    min-width:0;
    background:#fff;
    padding:30px 25px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s ease;
    overflow:hidden;
}


.review-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}



.review-card::before{
    content:"“";
    position:absolute;
    font-size:70px;
    color:#FEAA03;
    opacity:.15;
}



.stars{
    color:#FEAA03;
    font-size:22px;
    letter-spacing:3px;
    margin-bottom:20px;
}


.review-card p{
    font-size:16px;
    color:#555;
    line-height:1.7;
    margin-bottom:25px;
}



.review-user{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
}


.review-avatar{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#FEAA03;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:700;
}


.review-card h4{
    margin:0;
    color:#222;
}



/* ===================================================
   TABLET
=================================================== */

@media(max-width:1024px){


    .hero{
        height:75vh;
        padding:120px 20px 40px;
    }


    .hero-booking-form{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }



    .trust-section{
        padding:50px 20px;
        gap:20px;
    }


    .trust-item{
        width:calc(50% - 20px);
    }



    /* Reviews */

    .reviews{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }


    .review-card{
        width:100%;
    }



    /* Routes */

    .routes{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }


}



/* ===================================================
   MOBILE
=================================================== */

@media(max-width:768px){


    .hero{
        height:auto;
        padding:110px 15px 40px;
    }



    .hero-booking-form{
        display:flex;
        flex-direction:column;
        gap:16px;
        padding:20px;
    }



    .form-group,
    .passenger-group,
    .search-btn{
        width:100%;
    }



    .trust-section{
        width:100%;
        padding:40px 15px;
        margin-top:30px;
    }



    .trust-item{
        width:100%;
    }



    /* Reviews */

    .reviews-section{
        width:100%;
        padding:60px 15px;
    }


    .reviews-section h2{
        font-size:26px;
        margin-bottom:35px;
    }


    .reviews{
        width:100%;
        display:grid;
        grid-template-columns:1fr;
        gap:20px;
    }


    .review-card{
        width:100%;
        max-width:none;
        padding:25px 20px;
    }


    .review-card p{
        font-size:15px;
    }




    /* Routes */

    .routes-section{
        padding:50px 15px;
    }


    .routes{
        grid-template-columns:1fr;
        gap:22px;
    }


    .route-card{
        width:100%;
    }


}



/* ===================================================
   SMALL MOBILE
=================================================== */

@media(max-width:480px){


    .hero{
        padding:95px 12px 25px;
    }



    .hero-booking-form{
        padding:16px;
    }



    .trust-item{
        padding:18px;
    }



    .reviews-section{
        padding:50px 12px;
    }


    .reviews-section h2{
        font-size:24px;
    }


    .review-card{
        padding:20px 15px;
        border-radius:15px;
    }


    .stars{
        font-size:18px;
    }


    .review-avatar{
        width:42px;
        height:42px;
    }



    .route-card img{
        height:190px;
    }


}