/* Responsive Breakpoints */


/* Header Compact at Medium Screens */
@media (max-width: 1200px) {
    .header-container {
        gap: 8px;
    }

    .header-actions .phone-link {
        font-size: 0;
    }

    .header-actions .phone-link .phone-icon {
        font-size: 1.3rem;
    }

    .main-nav ul {
        gap: clamp(5px, 1.2vw, 15px);
    }

    .main-nav a {
        font-size: 0.88rem;
    }

    .lang-dropdown {
        margin-right: 4px;
    }
}
/* Large Tablets & Small Desktops */
@media (max-width: 1024px) {
    .hero-section {
        height: auto;
        min-height: 800px;
    }

    .floating-booking {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 60px auto 0;
        width: 100%;
        max-width: 500px;
        padding: 30px;
    }

    .hero-content {
        margin: 0 auto;
        text-align: center;
    }

    .pricing-cards,
    .fleet-grid,
    .steps-grid,
    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .summary-sidebar {
        position: relative;
        top: auto;
        order: -1;
        /* Mobile-da üste al */
    }
}

/* Mobile Devices */
@media (max-width: 1024px) {

    .header-actions .btn {
        display: none;
    }

    .header-actions .phone-link {
        font-size: 0;
    }

    .header-actions .phone-link .phone-icon {
        font-size: 1.5rem;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
        gap: 25px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 999;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .main-nav a {
        font-size: 1.2rem;
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .floating-booking {
        padding: 25px;
        border-radius: 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .pricing-cards,
    .fleet-grid,
    .steps-grid,
    .routes-grid,
    .gallery-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid>div {
        padding: 30px 20px;
    }

    .trust-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .steps-grid::before {
        display: none;
    }

    .step-card {
        margin-bottom: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .vehicle-select-card, .payment-card-box {
        flex-direction: column;
        text-align: center;
    }

    .v-card-img {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .v-card-specs {
        justify-content: center;
        margin-bottom: 15px;
    }

    .progress-label {
        display: none;
        /* Mobilde sadece adım sayıları görünsün */
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .review-card {
        min-width: 300px;
        padding: 30px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .floating-booking {
        padding: 20px;
        border-radius: 16px;
    }

    .floating-booking h3 {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .price-amount {
        font-size: 2rem;
    }
}