* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

@keyframes rotate180 {
    from { transform: rotate(0deg); }
    to { transform: rotate(180deg); }
}

@keyframes rotateBack180 {
    from { transform: rotate(180deg); }
    to { transform: rotate(0deg); }
}

.rotate-forward {
    animation: rotate180 0.3s ease-in-out forwards;
}

.rotate-backward {
    animation: rotateBack180 0.3s ease-in-out forwards;
}

@media (max-width: 768px) {
    @keyframes rotate90 {
        from { transform: rotate(0deg); }
        to { transform: rotate(90deg); }
    }

    @keyframes rotateBack120 {
        from { transform: rotate(0deg); }
        to { transform: rotate(-90deg); }
    }

    .rotate-forward {
        animation: rotate90 0.3s ease-in-out forwards;
    }

    .rotate-backward {
        animation: rotateBack120 0.3s ease-in-out forwards;
    }
}

body {
    background-color: #f5f5f5;
}

/* Üst Kısım */
.header {
    background-color: #0a1e3c;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.header .logo {
    color: white;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.header .logo span {
    color: #ff6200;
}

.header .nav a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    background-color: transparent;
}

.header .nav a:hover {
    background-color: white;
    color: #0a1e3c;
}

.header .nav {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-right: 20px;
    position: relative;
}

.header .nav::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background-color: #fff;
    opacity: 0.5;
}

.header .login {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header .login a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    padding: 6px 12px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    background-color: transparent;
    cursor: pointer;
}

.header .login a:hover {
    background-color: white;
    color: #0a1e3c;
}

.header .login .flag {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 400;
    padding: 6px 12px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    background-color: transparent;
    cursor: pointer;
}

.header .login .flag:hover {
    background-color: white;
}

.header .login .flag img {
    width: 16px;
    height: 16px;
}

.header .login .flag span {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.header .login .flag:hover span {
    color: #0a1e3c;
}

.header .login .flag .divider {
    width: 2px;
    height: 16px;
    background-color: white;
    opacity: 0.5;
}

.header .login .flag:hover .divider {
    background-color: #0a1e3c;
}

/* Toggle Menü Butonu */
.toggle-btn {
    display: none;
    font-size: 24px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

/* Mobil Menü */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -75%;
    width: 75%;
    height: 100%;
    background-color: white;
    z-index: 1000;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
    transition: right 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    right: 0;
}

.mobile-menu .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mobile-menu .logo {
    color: #0a1e3c;
    font-size: 24px;
    font-weight: 700;
}

.mobile-menu .logo span {
    color: #ff6200;
}

.mobile-menu .close-btn {
    font-size: 20px;
    color: white;
    background-color: #0a1e3c;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    position: relative;
}

/* Mobil Giriş ve TRY */
.mobile-menu .mobile-login {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 15px 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #0a1e3c;
}

.mobile-menu .mobile-login a {
    color: #0a1e3c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 12px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    background-color: transparent;
    margin: 0;
}

.mobile-menu .mobile-login a:hover {
    background-color: #f5f5f5;
}

.mobile-menu .mobile-login .flag {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 12px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    background-color: transparent;
    margin: 0;
}

.mobile-menu .mobile-login .flag:hover {
    background-color: #f5f5f5;
}

.mobile-menu .mobile-login .flag img {
    width: 16px;
    height: 16px;
}

.mobile-menu .mobile-login .flag span {
    color: #0a1e3c;
    font-size: 14px;
    font-weight: 600;
}

.mobile-menu .mobile-login .flag .divider {
    width: 2px;
    height: 14px;
    background-color: #0a1e3c;
    opacity: 0.5;
}

.mobile-menu .divider-line {
    display: none;
}

.mobile-menu .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu .mobile-nav a {
    color: #0a1e3c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
}

.mobile-menu .mobile-nav a:hover {
    background-color: #f5f5f5;
}

.mobile-menu .mobile-nav a i {
    font-size: 16px;
    color: #0a1e3c;
}

/* Orta Navigasyon ve Arama Formu Kapsayıcı */
.main-section {
    background-color: #0a1e3c;
    padding-bottom: 10px;
}

.sub-nav {
    padding: 20px 20px 10px;
    text-align: center;
}

.sub-nav h2 {
    color: white;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 55px;
    margin-top: 35px;
}

.sub-nav .tabs {
    display: flex;
    margin-left:150px;
    gap: 15px;
    flex-wrap: wrap;
}

.sub-nav .tabs a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: transparent;
    transition: background-color 0.3s;
}

.sub-nav .tabs a.active {
    background-color: white;
    color: #0a1e3c;
}

.sub-nav .tabs a i {
    font-size: 16px;
}

/* Arama Formu (Orijinal) */
.search-form {
    background-color: white;
    padding: 20px;
    margin: 0 auto;
    width: 90%;
    max-width: 1570px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-form .top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.search-form .radio-group {
    display: flex;
    gap: 15px;
}

.search-form .radio-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    cursor: pointer;
}

.search-form .radio-group input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: #ff6200;
    cursor: pointer;
}

.search-form .checkbox-group.transfer {
    display: flex;
    align-items: center;
    gap: 5px;
}

.search-form .checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #ff6200;
    cursor: pointer;
}

.search-form .checkbox-group label {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    cursor: pointer;
}

.search-form .input-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    gap: 10px;
}

.input-group-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-form .input-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
}

.search-form .input-group label {
    font-size: 10px;
    color: #666;
    font-weight: 500;
    position: absolute;
    top: -8px;
    left: 15px;
    background-color: white;
    padding: 0 5px;
    z-index: 2;
}

.search-form .input-group .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-form .input-group input,
.search-form .input-group select {
    padding: 10px 10px 10px 40px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    width: 100%;
    color: #333;
    font-weight: 300;
    height: 46px;
    cursor: pointer;
}

.search-form .input-group input:disabled {
    background-color: #f5f5f5;
    color: #999;
}

.search-form .input-group i {
    position: absolute;
    left: 10px;
    color: #666;
    font-size: 14px;
    z-index: 1;
}

.search-form .input-group .divider {
    position: absolute;
    left: 30px;
    height: 20px;
    width: 2px;
    background-color: #bbb;
    opacity: 1;
    z-index: 4;
}

.search-form .input-group:last-child .input-wrapper .divider {
    background-color: #999;
    z-index: 5;
}

.search-form .switch-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 44px;
}

.search-form .switch-wrapper .switch-icon {
    font-size: 18px;
    color: #666;
    cursor: pointer;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    position: relative;
    z-index: 2;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-form .switch-wrapper .switch-line {
    display: none;
}

.search-form .switch-wrapper-mobile {
    display: none;
    position: absolute;
    top: 33px;
    right: 10px;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 46px;
    z-index: 10;
}

.search-form .switch-wrapper-mobile .switch-icon {
    font-size: 16px;
    color: #666;
    cursor: pointer;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 5px;
    transform: rotate(90deg);
    width: 45px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-form .date-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.search-form .search-btn {
    background: linear-gradient(90deg, #ff6200, #ff8c00);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 46px;
    line-height: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.search-form .search-btn:hover {
    background: linear-gradient(90deg, #e55a00, #e57900);
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.search-form .bottom-row {
    display: flex;
    justify-content: flex-start;
}

/* Passenger dropdown */
.passenger-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.passenger-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.passenger-dropdown .passenger-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.passenger-dropdown .passenger-type:last-child {
    margin-bottom: 0;
}

.passenger-dropdown .passenger-type .info {
    display: flex;
    flex-direction: column;
}

.passenger-dropdown .passenger-type .info .title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.passenger-dropdown .passenger-type .info .subtitle {
    font-size: 12px;
    color: #666;
}

.passenger-dropdown .passenger-type .counter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.passenger-dropdown .passenger-type .counter button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background-color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.passenger-dropdown .passenger-type .counter button:hover {
    background-color: #ff6200;
    color: white;
    border-color: #ff6200;
}

.passenger-dropdown .passenger-type .counter button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f5f5f5;
}

.passenger-dropdown .passenger-type .counter button:disabled:hover {
    background-color: #f5f5f5;
    color: inherit;
    border-color: #ddd;
}

.passenger-dropdown .passenger-type .counter span {
    width: 30px;
    text-align: center;
    font-weight: 600;
}

.passenger-dropdown .class-selector {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.passenger-dropdown .class-selector label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
}

.passenger-dropdown .class-selector select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background-color: white;
    cursor: pointer;
}

.passenger-dropdown .done-btn {
    margin-top: 15px;
    background-color: #ff6200;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.3s;
}

.passenger-dropdown .done-btn:hover {
    background-color: #e55a00;
}

/* Yeni Class'lar için CSS (İlk cevaptaki class'lar için) */
.flight-search-form {
    background-color: white;
    padding: 20px;
    margin: 0 auto;
    width: 90%;
    max-width: 1570px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flight-search-form .flight-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.flight-search-form .flight-radio-group {
    display: flex;
    gap: 15px;
}

.flight-search-form .flight-radio-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    cursor: pointer;
}

.flight-search-form .flight-radio-group input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: #ff6200;
    cursor: pointer;
}

.flight-search-form .flight-checkbox-group.flight-transfer {
    display: flex;
    align-items: center;
    gap: 5px;
}

.flight-search-form .flight-checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #ff6200;
    cursor: pointer;
}

.flight-search-form .flight-checkbox-group label {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    cursor: pointer;
}

.flight-search-form .flight-input-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    gap: 10px;
}

.flight-input-group-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flight-search-form .flight-input-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
}

.flight-search-form .flight-input-group label {
    font-size: 10px;
    color: #666;
    font-weight: 500;
    position: absolute;
    top: -8px;
    left: 15px;
    background-color: white;
    padding: 0 5px;
    z-index: 2;
}

.flight-search-form .flight-input-group .flight-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.flight-search-form .flight-input-group input,
.flight-search-form .flight-input-group select {
    padding: 10px 10px 10px 40px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    width: 100%;
    color: #333;
    font-weight: 300;
    height: 46px;
    cursor: pointer;
}

.flight-search-form .flight-input-group input:disabled {
    background-color: #f5f5f5;
    color: #999;
}

.flight-search-form .flight-input-group i {
    position: absolute;
    left: 10px;
    color: #666;
    font-size: 14px;
    z-index: 1;
}

.flight-search-form .flight-input-group .flight-divider {
    position: absolute;
    left: 30px;
    height: 20px;
    width: 2px;
    background-color: #bbb;
    opacity: 1;
    z-index: 4;
}

.flight-search-form .flight-input-group:last-child .flight-input-wrapper .flight-divider {
    background-color: #999;
    z-index: 5;
}

.flight-search-form .flight-switch-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 44px;
}

.flight-search-form .flight-switch-wrapper .flight-switch-icon {
    font-size: 18px;
    color: #666;
    cursor: pointer;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    position: relative;
    z-index: 2;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flight-search-form .flight-switch-wrapper .switch-line {
    display: none;
}

.flight-search-form .flight-switch-wrapper-mobile {
    display: none;
    position: absolute;
    top: 33px;
    right: 10px;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 46px;
    z-index: 10;
}

.flight-search-form .flight-switch-wrapper-mobile .flight-switch-icon {
    font-size: 16px;
    color: #666;
    cursor: pointer;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 5px;
    transform: rotate(90deg);
    width: 45px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flight-search-form .flight-date-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.flight-search-form .flight-search-btn {
    background: linear-gradient(90deg, #ff6200, #ff8c00);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 46px;
    line-height: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.flight-search-form .flight-search-btn:hover {
    background: linear-gradient(90deg, #e55a00, #e57900);
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.flight-search-form .flight-bottom-row {
    display: flex;
    justify-content: flex-start;
}

.flight-passenger-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.flight-passenger-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.flight-passenger-dropdown .flight-passenger-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.flight-passenger-dropdown .flight-passenger-type:last-child {
    margin-bottom: 0;
}

.flight-passenger-dropdown .flight-passenger-type .flight-info {
    display: flex;
    flex-direction: column;
}

.flight-passenger-dropdown .flight-passenger-type .flight-info .flight-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.flight-passenger-dropdown .flight-passenger-type .flight-info .flight-subtitle {
    font-size: 12px;
    color: #666;
}

.flight-passenger-dropdown .flight-passenger-type .flight-counter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flight-passenger-dropdown .flight-passenger-type .flight-counter button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background-color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.flight-passenger-dropdown .flight-passenger-type .flight-counter button:hover {
    background-color: #ff6200;
    color: white;
    border-color: #ff6200;
}

.flight-passenger-dropdown .flight-passenger-type .flight-counter button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f5f5f5;
}

.flight-passenger-dropdown .flight-passenger-type .flight-counter button:disabled:hover {
    background-color: #f5f5f5;
    color: inherit;
    border-color: #ddd;
}

.flight-passenger-dropdown .flight-passenger-type .flight-counter span {
    width: 30px;
    text-align: center;
    font-weight: 600;
}

.flight-passenger-dropdown .flight-class-selector {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.flight-passenger-dropdown .flight-class-selector label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
}

.flight-passenger-dropdown .flight-class-selector select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background-color: white;
    cursor: pointer;
}

.flight-passenger-dropdown .flight-done-btn {
    margin-top: 15px;
    background-color: #ff6200;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.3s;
}

.flight-passenger-dropdown .flight-done-btn:hover {
    background-color: #e55a00;
}

/* Custom Datepicker Styles */
.datepicker {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: none;
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
}

.datepicker--nav {
    border-bottom: 1px solid #f0f0f0;
    padding: 12px;
    background-color: #fcfcfc;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.datepicker--nav-title {
    font-weight: 700;
    color: #0a1e3c;
    font-size: 16px;
}

.datepicker--nav-action path {
    stroke: #0a1e3c;
    transition: stroke 0.2s ease;
}

.datepicker--nav-action:hover path {
    stroke: #ff6200;
}

.datepicker--day-name {
    color: #0a1e3c;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 0;
}

.datepicker--cells {
    padding: 10px;
}

.datepicker--cell {
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.datepicker--cell.-current- {
    color: #ff6200;
    font-weight: 600;
    background-color: rgba(255, 98, 0, 0.05);
}

.datepicker--cell.-selected-, 
.datepicker--cell.-selected-.-current- {
    background: linear-gradient(45deg, #ff6200, #ff8c00);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 98, 0, 0.3);
    font-weight: 600;
}

.datepicker--cell.-selected-.-focus- {
    background: linear-gradient(45deg, #e55a00, #e57900);
}

.datepicker--cell.-focus- {
    background: rgba(255, 98, 0, 0.15);
}

.datepicker--cell.-disabled- {
    color: #ccc;
    cursor: not-allowed;
}

/* Select2 Custom Styles */
.select2-container--default .select2-selection--single {
    height: 46px !important;
    border: 1px solid #ddd !important;
    border-radius: 10px !important;
    padding: 0 10px !important;
}
.select2-container--open .select2-dropdown {
    max-width: 400px !important;
    width: auto !important;
    overflow-x: hidden !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 46px !important;
    padding-left: 40px !important;
    color: #333 !important;
    font-weight: 300 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px !important;
    right: 10px !important;
}
.select2-container {
    width: 290px !important;         /* Sabit bir genişlik değeri. Tasarımınıza göre ayarlayabilirsiniz. */
    min-width: 100% !important;
    max-width: 100% !important;
}
.select2-dropdown {
    max-width: 400px !important;      /* Dropdown'ın maksimum genişliği, ihtiyaca göre ayarlayabilirsiniz */
    overflow-x: hidden !important;    /* Yatay taşmayı gizle */
}

.select2-container--default .select2-results__option {
    white-space: normal !important;   /* Metnin tek satırda kalmasını engeller */
    word-wrap: break-word !important; /* Uzun kelimelerin dahi satırda taşmasını engeller */
    overflow-wrap: break-word !important; /* 'word-wrap' için daha modern ve uyumlu alternatif */
}

.select2-container--default .select2-results__option--highlighted:not([aria-selected]) {
    background-color: #f0f0f0 !important;
    color: #333 !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #f0f0f0 !important;
    color: #333 !important;
}

.select2-container--default .select2-results__option .fa {
    margin-right: 10px !important;
    color: #ff6200 !important;
    width: 16px !important;
    text-align: center !important;
}

.select2-container--default .select2-results__option[aria-disabled="true"].select2-option-header {
    font-weight: 600 !important;
    color: #333 !important;
    padding: 8px 12px !important;
    cursor: default !important;
    background-color: transparent !important;
    border-bottom: 1px solid #eee !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    padding: 8px !important;
    font-size: 14px !important;
    margin-bottom: 10px !important;
}

/* content section */
.content-section {
    padding: 40px 20px;
    max-width: 1590px;
    margin: 0 auto;
}

.content-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #0a1e3c;
}

.promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 10fr));
    gap: 20px;
}

.promo-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
}

.promo-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.promo-card .card-content {
    padding: 15px;
}

.promo-card h3 {
    margin-bottom: 10px;
    color: #0a1e3c;
}

.promo-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.promo-card .price {
    font-weight: 700;
    color: #ff6200;
    font-size: 18px;
}

/* Alt Kısım */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-links a i {
    color: #ff6200;
    font-size: 16px;
}

.footer-links a:hover {
    color: #ff6200;
}

/* Mobil Uyumluluk */
@media (max-width: 1024px) {
    .header {
        flex-direction: column;
        gap: 10px;
    }

    .header .nav {
        justify-content: center;
    }

    .sub-nav .tabs {
       margin-left: 5px;
    }

    .search-form .input-row {
        gap: 8px;
    }

    .search-form .input-group input,
    .search-form .input-group select {
        width: 100%;
    }

    .flight-search-form .flight-input-row {
        gap: 8px;
    }

    .flight-search-form .flight-input-group input,
    .flight-search-form .flight-input-group select {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        flex-wrap: nowrap;
    }

    .header .logo {
        font-size: 24px;
        margin-right: auto;
    }

    .toggle-btn {
        display: block;
        font-size: 24px;
        color: white;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
        margin-top: 15px;
        margin-left: 380px;
        position: absolute;
        width: auto;
        height: auto;
        border-radius: 25px;
    }

    .toggle-btn i {
        font-size: 24px;
        color: white;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .header .nav {
        display: none;
    }

    .header .nav::after {
        display: none;
    }

    .header .login {
        display: none;
    }

    .sub-nav h2 {
        font-size: 20px;
        margin-top: 15px;
        margin-bottom: 35px;
    }

    .sub-nav .tabs a {
        font-size: 13px;
        padding: 8px 16px;
    }

    .sub-nav .tabs a:nth-child(n+5) {
        display: none;
    }

    .search-form {
        padding: 15px;
    }

    .search-form .input-row {
        flex-direction: column;
        gap: 20px;
    }

    .input-group-wrapper {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .input-group-wrapper .input-group {
        width: 100%;
    }

    .input-group-wrapper .input-group input {
        border-right: 1px solid #ddd;
        width: 100%;
    }

    .input-group-wrapper .switch-wrapper .switch-icon {
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }

    .input-group-wrapper .input-group:last-child input {
        border-left: 1px solid #ddd;
    }

    .search-form .input-group {
        width: 100%;
    }

    .search-form .input-group input,
    .search-form .input-group select {
        width: 100%;
    }

    .search-form .switch-wrapper {
        display: none;
    }

    .search-form .switch-wrapper-mobile {
        display: flex;
    }

    .search-form .search-btn {
        width: 100%;
        padding: 10px 15px;
        font-size: 12px;
        height: auto;
    }

    .passenger-dropdown {
        width: 100%;
        left: 0;
        right: 0;
    }

    .flight-search-form {
        padding: 15px;
    }

    .flight-search-form .flight-input-row {
        flex-direction: column;
        gap: 20px;
    }

    .flight-input-group-wrapper {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .flight-input-group-wrapper .flight-input-group {
        width: 100%;
    }

    .flight-input-group-wrapper .flight-input-group input {
        border-right: 1px solid #ddd;
        width: 100%;
    }

    .flight-input-group-wrapper .flight-switch-wrapper .flight-switch-icon {
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }

    .flight-input-group-wrapper .flight-input-group:last-child input {
        border-left: 1px solid #ddd;
    }

    .flight-search-form .flight-input-group {
        width: 100%;
    }

    .flight-search-form .flight-input-group input,
    .flight-search-form .flight-input-group select {
        width: 100%;
    }

    .flight-search-form .flight-switch-wrapper {
        display: none;
    }

    .flight-search-form .flight-switch-wrapper-mobile {
        display: flex;
    }

    .flight-search-form .flight-search-btn {
        width: 100%;
        padding: 10px 15px;
        font-size: 12px;
        height: auto;
    }

    .flight-passenger-dropdown {
        width: 100%;
        left: 0;
        right: 0;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open .toggle-btn {
        visibility: hidden;
    }
}

@media (max-width: 480px) {
    .header .logo {
        font-size: 20px;
    }

    .sub-nav h2 {
        font-size: 18px;
        margin-top: 10px;
        margin-bottom: 25px;
    }

    .sub-nav .tabs a {
        font-size: 12px;
        padding: 6px 12px;
    }

    .search-form {
        padding: 10px;
    }

    .search-form .top-row {
        flex-direction: row;
        justify-content: space-between;
    }

    .search-form .radio-group {
        gap: 10px;
    }

    .search-form .radio-group label {
        font-size: 12px;
    }

    .search-form .checkbox-group label {
        font-size: 12px;
    }

    .search-form .input-group input,
    .search-form .input-group select {
        font-size: 11px;
        padding: 8px 8px 8px 30px;
    }

    .search-form .input-group i {
        font-size: 11px;
        left: 8px;
    }

    .search-form .input-group .divider {
        left: 22px;
        height: 16px;
    }

    .search-form .search-btn {
        padding: 8px 10px;
        font-size: 11px;
    }

    .flight-search-form {
        padding: 10px;
    }

    .flight-search-form .flight-top-row {
        flex-direction: row;
        justify-content: space-between;
    }

    .flight-search-form .flight-radio-group {
        gap: 10px;
    }

    .flight-search-form .flight-radio-group label {
        font-size: 12px;
    }

    .flight-search-form .flight-checkbox-group label {
        font-size: 12px;
    }

    .flight-search-form .flight-input-group input,
    .flight-search-form .flight-input-group select {
        font-size: 11px;
        padding: 8px 8px 8px 30px;
    }

    .flight-search-form .flight-input-group i {
        font-size: 11px;
        left: 8px;
    }

    .flight-search-form .flight-input-group .flight-divider {
        left: 22px;
        height: 16px;
    }

    .flight-search-form .flight-search-btn {
        padding: 8px 10px;
        font-size: 11px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .promo-cards {
        grid-template-columns: 1fr;
    }
}

/* Car Rental Section */
.car-rental-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #0a1e3c;
}

.rental-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 15px;
    padding: 0 20px;
    max-width: 1590px;
    margin: 0 auto;
}

.rental-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.2s ease-in-out;
    border: 1px solid #eee;
}

.rental-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.rental-card .card-icon {
    flex-shrink: 0;
}

.rental-card .card-icon i {
    font-size: 24px;
    color: #0a1e3c;
}

.rental-card .card-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rental-card .card-details .location {
    font-weight: 600;
    color: #333;
    font-size: 15px;
    margin-bottom: 2px;
}

.rental-card .card-details .date-company {
    font-size: 13px;
    color: #666;
}

.rental-card .card-price {
    font-weight: 700;
    color: #ff6200;
    font-size: 16px;
    flex-shrink: 0;
    margin-left: auto;
}

.rental-card .card-arrow {
    flex-shrink: 0;
    margin-left: 10px;
}

.rental-card .card-arrow i {
    font-size: 16px;
    color: #999;
    transition: color 0.2s ease-in-out;
}

.rental-card:hover .card-arrow i {
    color: #ff6200;
}

/* Mobil Uyumluluk için Medya Sorguları */
@media (max-width: 768px) {
    .rental-cards-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .rental-card {
        padding: 12px;
        gap: 10px;
    }

    .rental-card .card-icon i {
        font-size: 20px;
    }

    .rental-card .card-details .location {
        font-size: 14px;
    }

    .rental-card .card-details .date-company {
        font-size: 12px;
    }

    .rental-card .card-price {
        font-size: 15px;
    }

    .rental-card .card-arrow i {
        font-size: 14px;
    }
}
  /* CSS kodları, indirim kodu alanını gizlemek ve hemen sağa açmak için */
    .discount-input-area {
        display: none; /* Varsayılan olarak gizli */
        margin-left: 10px; /* Checkbox'tan biraz boşluk bırakır */
        white-space: nowrap; /* İçeriğin tek satırda kalmasını sağlar */
        align-items: center;
        gap: 5px; /* Giriş kutusu ve buton arasındaki boşluk */
    }

    .discount-input-area.visible {
        display: inline-flex; /* Görünür olduğunda esnek kutu olarak gösterir */
    }

    .discount-input-area input {
        border: 1px solid #ccc;
        padding: 4px;
        font-size: 14px;
        border-radius: 3px;
        width: 120px; /* Giriş kutusunun genişliğini ayarlar */
    }

    .discount-input-area button {
        background-color: #28a745;
        color: white;
        border: none;
        padding: 4px 8px;
        border-radius: 3px;
        cursor: pointer;
        font-size: 14px;
    }

    .discount-input-area button:hover {
        background-color: #218838;
    }