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

/* Mobil zoom sorununu çöz */
html {
  overflow-x: hidden;
  width: 100%;
}
  
  body {
    font-family: 'Open Sans', sans-serif;
    background: #fff;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
  }

  /* Ana sayfa scroll disable - sadece mobile */
  @media (max-width: 768px) {
    body.homepage-no-scroll {
      overflow: hidden;
      height: 100vh;
    }
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header Styles - Modern 3D */
  .header {
    background: linear-gradient(135deg, #8b1a1a 0%, #a52a2a 30%, #b83232 50%, #a52a2a 70%, #8b1a1a 100%);
    color: white;
    position: relative;
    overflow: visible;
    z-index: 1000;
  }

  .header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 50%, rgba(213, 51, 51, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(255, 107, 107, 0.15) 0%, transparent 50%);
    pointer-events: none;
  }
  
/* Desktop Header */
  .header-top {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
  }
  
  .header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header-top-left {
    display: flex;
    align-items: center;
    gap: 15px;
  }

.header-top-left a {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
  }

.header-top-left a:hover {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}
  
  .logo {
    height: 42px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
  }

.logo:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}
  


.header-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.app-download-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding-right: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.download-label i {
    font-size: 16px;
    color: #ffd700;
}

.app-store-btn,
.play-store-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.app-store-btn i,
.play-store-btn i {
    font-size: 20px;
}

.app-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.app-label {
    font-size: 10px;
    font-weight: 600;
    opacity: 0.85;
    line-height: 1.2;
}

.app-action {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.app-store-btn:hover,
.play-store-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.app-store-btn {
    background: rgba(0, 0, 0, 0.35);
}

.app-store-btn:hover {
    background: rgba(0, 0, 0, 0.5);
}

.play-store-btn {
    background: rgba(0, 0, 0, 0.35);
}

.play-store-btn:hover {
    background: rgba(0, 0, 0, 0.5);
}
  
.download-text {
    font-size: 14px;
    color: white;
    font-weight: 500;
    white-space: nowrap;
  }
  
.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.phone-icon svg {
    width: 160px;
    height: 45px;
}

.app-download-buttons svg {
    width: 20px;
    height: 20px;
}

.separator {
    width: 1px;
    height: 24px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  }
  
  .social-icons {
    display: flex;
    gap: 10px;
  }
  
  .social-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    backdrop-filter: blur(5px);
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }
  
  .social-icon:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.1));
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }
  
.customer-service {
    text-align: right;
    color: white;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
  }

.customer-service:hover {
    background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    border-color: rgba(255, 255, 255, 0.25);
}
  
.service-label {
    font-size: 11px;
    opacity: 0.85;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .phone-number {
    font-size: 18px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.phone-number:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Mobile Header - Kale Red 3D Style */
.mobile-header {
    display: none;
    background: linear-gradient(180deg, 
        #c41e3a 0%, 
        #d53333 50%,
        #b91c1c 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #fff;
    padding: 12px 0;
    border-bottom: none;
    box-shadow: 
        0 4px 20px rgba(196, 30, 58, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

.mobile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,0.3), rgba(255,255,255,0.5), rgba(255,255,255,0.3));
}

.mobile-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-logo {
    width: 45px;
    height: 36px;
    display: block !important;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 12px;
    padding: 6px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(196, 30, 58, 0.3);
    transition: all 0.3s ease;
}

.mobile-logo:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(196, 30, 58, 0.5);
}

.mobile-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-brand-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.mobile-brand-slogan {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

.mobile-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Mobile User Menu */
.mobile-user-menu {
    position: relative;
}

.mobile-user-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    z-index: 1001;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.mobile-user-dropdown.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-user-dropdown-item:last-child {
    border-bottom: none;
}

.mobile-user-dropdown-item:hover {
    background: #f8f9fa;
    color: #d53333;
}

.mobile-user-dropdown-item svg {
    flex-shrink: 0;
}

.user-icon {
    font-size: 18px;
    cursor: pointer;
    color: #fff;
}

/* Hamburger Menu - 3D Style */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: linear-gradient(145deg, rgba(255,255,255,0.25), rgba(255,255,255,0.1));
    border-radius: 10px;
    box-shadow: 
        0 4px 10px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    background: linear-gradient(145deg, rgba(255,255,255,0.35), rgba(255,255,255,0.2));
    transform: translateY(-2px);
}

.hamburger-menu span {
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  /* Navigation - Modern 3D */
  .navigation {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.95));
    color: #333;
    padding: 0;
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .navigation .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
  }
  
  .nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    padding: 8px 0;
  }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d53333, #ff6b6b);
    transition: width 0.3s ease;
    border-radius: 1px;
}

/* Küçük desktop ekranlar için menü ayarları */
@media (min-width: 769px) and (max-width: 1200px) {
    .nav-menu {
        gap: 15px;
    }
    .nav-link {
        font-size: 12px;
    }
}

@media (min-width: 1201px) and (max-width: 1400px) {
    .nav-menu {
        gap: 25px;
    }
    .nav-link {
        font-size: 13px;
    }
}
  
  .nav-link:hover {
    color: #d53333;
  }

  .nav-link:hover::after {
    width: 100%;
  }
  
  .dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
  }

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown {
    position: relative;
    z-index: 10000;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -10px;
    background: white;
    border: none;
    border-radius: 16px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10000;
    padding: 10px;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    border-radius: 10px;
    margin: 2px 0;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #d53333 0%, #ff6b6b 100%);
    color: white;
    padding-left: 24px;
    transform: translateX(5px);
}

.dropdown-menu a:hover::before {
    content: '›';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    font-size: 16px;
}

.dropdown-menu li:first-child a {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.dropdown-menu li:last-child a {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  
  .nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .login {
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 18px;
    border-radius: 25px;
    background: linear-gradient(145deg, rgba(213, 51, 51, 0.08), rgba(213, 51, 51, 0.03));
    border: 1px solid rgba(213, 51, 51, 0.15);
}

.login:hover {
    color: #d53333;
    background: linear-gradient(135deg, #d53333, #ff6b6b);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(213, 51, 51, 0.3);
    transform: translateY(-2px);
}

.login-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }
  
  /* Main Content */
  .main-content {
    position: relative;
    min-height: calc(100vh - 120px);
    background: white;
  }
  
/* Slider Wrapper */
.slider-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 32vw; /* Ekran genişliğinin %32'si - orantılı */
    min-height: 400px;
    max-height: 700px;
    overflow: hidden;
}

/* Owl Carousel Slider */
.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slider .slider-item {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider .slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-slider .slider-link {
    display: block;
    width: 100%;
    height: 100%;
}

/* Owl Carousel Navigation Buttons */
.hero-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.hero-slider .owl-nav button {
    pointer-events: all;
    color: white !important;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(5px);
    border: none !important;
    font-size: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-slider .owl-nav button:hover {
    background: rgba(213, 51, 51, 0.9) !important;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(213, 51, 51, 0.4);
}

.hero-slider .owl-nav button:active {
    background: rgba(213, 51, 51, 1) !important;
    transform: scale(0.95);
}

.hero-slider .owl-nav button.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Owl Carousel Dots */
.hero-slider .owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.hero-slider .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: white !important;
    opacity: 0.6;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-slider .owl-dot.active {
    background: #d53333 !important;
    opacity: 1;
}

/* Responsive Slider */
@media (max-width: 768px) {
    .hero-slider .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 16px !important;
    }
}

@media (max-width: 576px) {
    .hero-slider .owl-nav button {
        width: 35px;
        height: 35px;
    }
}

/* Booking Form - Below Slider Style */
.desktop-booking-section {
    background: transparent;
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.booking-form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background: transparent;
}

.booking-form {
    background: #fff;
    border-radius: 0 12px 12px 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    overflow: visible;
}

.trip-type-tabs {
    display: flex;
    border-bottom: none;
    gap: 0;
    background: transparent;
    position: relative;
    margin-bottom: 0;
}

.trip-tab {
    flex: 0 0 auto;
    padding: 0;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    border: none;
}

.trip-tab input[type="radio"] {
    display: none;
}

.trip-tab .tab-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: transparent;
    color: #666;
    border-radius: 10px 10px 0 0;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
    box-shadow: none;
}

.trip-tab:first-child .tab-label {
    border-radius: 12px 12px 0 0;
}

.trip-tab:last-child .tab-label {
    border-radius: 12px 12px 0 0;
}

.trip-tab:has(input:checked) .tab-label {
    background: linear-gradient(180deg, #d53333 0%, #a82222 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(213, 51, 51, 0.4), inset 0 1px 0 rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.trip-tab:not(:has(input:checked)) .tab-label {
    background: #e0e0e0;
    color: #555;
    box-shadow: none;
}

.trip-tab:not(:has(input:checked)):hover .tab-label {
    background: #d0d0d0;
    color: #333;
}

.trip-tab .tab-label::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.trip-tab:has(input:checked) .tab-label::before {
    border-color: white;
    background: white;
    box-shadow: inset 0 0 0 4px #d53333;
}

.form-row {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    padding: 25px 30px;
}

.form-group {
    flex: 1;
    min-width: 180px;
}

.form-group.departure-arrival {
    flex: 2;
    min-width: 250px;
}

.form-group.date-group {
    flex: 1;
    min-width: 200px;
}

.form-group.return-date-group {
    flex: 1;
    min-width: 200px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-weight: 500;
    color: #666;
    font-size: 13px;
}
  
  .radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
  }
  
  .radio-option input[type="radio"] {
    display: none;
  }
  
  .radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #d53333;
    border-radius: 50%;
    position: relative;
  }
  
  .radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #d53333;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .form-row {
    display: flex;
    gap: 15px;
    align-items: end;
    margin-bottom: 15px;
  }
  
  .form-group {
    flex: 1;
    min-width: 150px;
}

.form-group.departure-arrival {
    flex: 0 0 180px;
    min-width: 180px;
}

.form-group.date-group {
    flex: 1;
    min-width: 150px;
}

.form-group.return-date-group {
    flex: 1;
    min-width: 150px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
    font-size: 13px;
  }
  
  .select-wrapper {
    position: relative;
  }
  
  .form-select,
  .form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    transition: border-color 0.3s;
    cursor: pointer;
    height: 48px;
  }

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d53333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    padding-right: 40px;
  }
  
  .form-select:focus,
  .form-input:focus {
    outline: none;
    border-color: #d53333;
    box-shadow: 0 0 0 3px rgba(213, 51, 51, 0.1);
}

.form-select:hover {
    border-color: #d53333;
}

.date-input {
    cursor: pointer;
  }
  
  .search-button {
    background: linear-gradient(180deg, #d53333 0%, #a82222 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    height: 48px;
    min-width: 160px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 0 #8a1c1c, 0 6px 15px rgba(213, 51, 51, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  }
  
  .search-button:hover {
    background: linear-gradient(180deg, #e04040 0%, #b82828 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #8a1c1c, 0 8px 20px rgba(213, 51, 51, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  }
  
  .search-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #8a1c1c, 0 3px 10px rgba(213, 51, 51, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  }
  
.return-date-group {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hide desktop header, show mobile header */
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    /* Mobile header adjustments */
    .mobile-header .container {
        padding: 0 20px;
    }
    
    /* Mobile navigation styles */
    .navigation {
        background: white;
        color: #333;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .navigation.active {
        max-height: 300px;
    }
    
    .navigation .container {
        padding: 20px;
    display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-link {
        font-size: 16px;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-right {
        flex-direction: column;
        gap: 15px;
        padding-top: 15px;
        border-top: 1px solid #f0f0f0;
    }
    
    .login {
        font-size: 16px;
        gap: 8px;
        padding: 12px 0;
    }
    
    /* Form adjustments for mobile */
    .form-row {
      flex-direction: column;
      gap: 20px;
    }
    
    .date-input-group {
      gap: 12px;
    }
    
    .date-buttons {
      justify-content: center;
      gap: 12px;
      margin-top: 0;
    }
    
    .date-btn {
      padding: 10px 20px;
      font-size: 14px;
      height: 40px;
      min-width: 80px;
    }
    
    .booking-form-container {
        position: static;
        transform: none;
        margin: 20px auto;
        width: 95%;
    }
    
    .booking-form {
        padding: 25px;
    }
    
    /* Adjust main content height for mobile */
    .main-content {
        min-height: calc(100vh - 80px);
    }
}

@media (min-width: 769px) {
    /* Hide mobile header, show desktop header */
    .mobile-only {
        display: none !important;
    }
    
    .desktop-only {
        display: block !important;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 100001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

.modal[style*="display: block"] {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    margin: auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideIn 0.4s ease;
    overflow: hidden;
    position: relative;
}

.modal-header {
    background: linear-gradient(135deg, #d53333 0%, #b82828 100%);
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mobile Modal Responsive */
@media (max-width: 768px) {
    .modal {
        padding: 10px;
        min-height: 100vh;
    }
    
    .modal-content {
        margin: 0;
        width: 100%;
        max-width: none;
        border-radius: 15px;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-header {
        padding: 20px 15px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .modal-header h2 {
    font-size: 18px;
        flex: 1;
        min-width: 0;
    }
    
    .modal-title-with-logo {
        flex: 1;
        min-width: 0;
    }
    
    .modal-logo {
        height: 24px;
    }
    
    
}

.modal-title-with-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-divider {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    font-weight: 300;
}

.modal-logo {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
}





.close-modal svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.modal-body {
    padding: 30px;
}

/* Mobile Modal Body */
@media (max-width: 768px) {
    .modal-body {
        padding: 20px 15px;
    }
}



.search-form .form-group {
    margin-bottom: 30px;
}

.search-form label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
    text-align: center;
}

.search-form .form-input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Mobile Form Elements */
@media (max-width: 768px) {
    .search-form .form-group {
        margin-bottom: 20px;
    }
    
    .search-form label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .search-form .form-input {
        padding: 15px 15px;
        font-size: 16px;
        border-radius: 12px;
        letter-spacing: 0.5px;
    }
}

.search-form .form-input:focus {
    outline: none;
    border-color: #d53333;
    box-shadow: 0 0 0 4px rgba(213, 51, 51, 0.1);
    transform: translateY(-3px);
}

.search-form .form-input::placeholder {
    color: #bdc3c7;
    font-weight: 400;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.search-btn {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.cancel-btn {
    background: #d53333;
    color: white;
    border: 2px solid transparent;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}



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

.cancel-btn .btn-icon {
    width: 18px;
    height: 18px;
}

/* Mobile Form Actions */
@media (max-width: 768px) {
    .form-actions {
        gap: 10px;
        margin-top: 20px;
        flex-direction: column;
    }
    
    .search-btn,
    .cancel-btn {
        padding: 12px 20px;
        font-size: 15px;
        border-radius: 20px;
        width: 100%;
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Icon Styles */
.header-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    fill: currentColor;
}

/* Tarih Seçici Stilleri */
.date-picker-content {
    max-width: 400px;
    width: 90%;
}

.date-picker-header {
    background: #d53333;
    color: white;
    border-radius: 12px 12px 0 0;
    padding: 20px;
    text-align: center;
    position: relative;
}

.date-picker-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.date-picker-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
}

.date-picker-month-year {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: center;
    flex: 1;
    margin: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Date Picker */
@media (max-width: 768px) {
    .date-picker-content {
        width: 100%;
        max-width: none;
        margin: 0;
    }
    
    .date-picker-header {
        padding: 15px 10px;
        border-radius: 15px 15px 0 0;
    }
    
    .date-picker-header h2 {
        font-size: 16px;
    }
    
    .date-picker-controls {
        padding: 12px 15px;
    }
    
    .date-picker-month-year {
        font-size: 14px;
        margin: 0 10px;
    }
    
    .date-picker-logo {
        height: 20px;
    }
}

.date-picker-logo {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}

.date-nav-btn {
    background: #d53333;
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.date-nav-btn:hover {
    background: #b82828;
    transform: scale(1.05);
}

.date-nav-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.date-picker-calendar {
    background: white;
    padding: 0 20px 20px 20px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 15px;
}

.weekday {
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    padding: 10px 5px;
    background: #f8f9fa;
    border-radius: 6px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.calendar-day {
    text-align: center;
    padding: 12px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid transparent;
}

/* Mobile Date Picker Calendar */
@media (max-width: 768px) {
    .date-nav-btn {
        width: 35px;
        height: 35px;
        border-radius: 6px;
    }
    
    .date-nav-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .date-picker-calendar {
        padding: 0 15px 15px 15px;
    }
    
    .weekday {
        font-size: 12px;
        padding: 8px 3px;
        border-radius: 4px;
    }
    
    .calendar-day {
        padding: 10px 4px;
        font-size: 13px;
        border-radius: 4px;
    }
    
    .calendar-weekdays,
    .calendar-days {
        gap: 1px;
    }
}

.calendar-day:hover {
    background: #e9ecef;
    border-color: #d53333;
}

.calendar-day.active {
    background: #d53333;
    color: white;
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.other-month {
    color: #999;
}

.calendar-day.today {
    background: #f8f9fa;
    border-color: #d53333;
    color: #d53333;
    font-weight: 600;
}

.calendar-day.departure-date {
    background: white;
    border: 2px solid #d53333;
    color: #333;
    font-weight: 500;
}

.label-icon {
    width: 10px;
    height: 10px;
    margin-right: 8px;
    fill: currentColor;
    vertical-align: middle;
}

.btn-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    fill: currentColor;
    vertical-align: middle;
}

.link-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    fill: currentColor;
    vertical-align: middle;
}

/* Mobile Icon Sizes */
@media (max-width: 768px) {
    .label-icon,
    .btn-icon {
        width: 16px;
        height: 16px;
        margin-right: 6px;
    }
    
    .link-icon {
        width: 14px;
        height: 14px;
        margin-right: 4px;
    }
}

/* Login Form Styles */
.login-form .form-group {
    margin-bottom: 25px;
}

.login-form label {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.forgot-password {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* Mobile Login Form */
@media (max-width: 768px) {
    .login-form .form-group {
        margin-bottom: 20px;
    }
    
    .login-form label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .forgot-password {
        margin-top: 15px;
        padding-top: 15px;
        font-size: 14px;
    }
}

.forgot-link {
    color: #d53333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.forgot-link:hover {
    color: #b82828;
    text-decoration: underline;
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Hide page background on mobile - sadece ana sayfa için */
    body.homepage {
        background: none !important;
        overflow: hidden;
    }
    
    body.homepage .main-content {
        background: none !important;
        overflow: hidden;
    }
    
    .mobile-header {
        background: white;
        padding: 15px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .mobile-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-logo {
        height: 35px;
        width: auto;
    }

    .mobile-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    }

    .mobile-login-btn {
        min-width: 36px;
        height: 36px;
        padding: 0 12px;
        background: linear-gradient(145deg, rgba(255,255,255,0.25), rgba(255,255,255,0.1));
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 
            0 4px 10px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        white-space: nowrap;
    }
    
    .mobile-user-name {
        font-size: 13px;
        font-weight: 600;
        color: #ffffff;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }

    .mobile-login-btn:hover {
        background: linear-gradient(145deg, rgba(255,255,255,0.35), rgba(255,255,255,0.2));
        transform: translateY(-2px);
    }

    .mobile-login-btn svg {
        width: 20px;
        height: 20px;
        fill: #ffffff;
    }

    .mobile-hamburger {
        width: 36px;
        height: 36px;
        background: linear-gradient(145deg, rgba(255,255,255,0.25), rgba(255,255,255,0.1));
        border-radius: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        box-shadow: 
            0 4px 10px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
    .mobile-hamburger:hover {
        background: linear-gradient(145deg, rgba(255,255,255,0.35), rgba(255,255,255,0.2));
        transform: translateY(-2px);
    }

    .mobile-hamburger svg {
        width: 20px;
        height: 20px;
        color: #ffffff;
        transition: all 0.3s ease;
    position: absolute;
    }

    .mobile-hamburger .hamburger-icon {
        opacity: 1;
        transform: rotate(0deg);
    }

    .mobile-hamburger .close-icon {
        opacity: 0;
        transform: rotate(180deg);
    }

    .mobile-hamburger.active .hamburger-icon {
        opacity: 0;
        transform: rotate(-180deg);
    }

    .mobile-hamburger.active .close-icon {
        opacity: 1;
        transform: rotate(0deg);
    }

    .mobile-nav {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .mobile-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-menu {
        list-style: none;
        margin: 0;
        padding: 20px 0;
    }

    .mobile-nav-link {
        display: block;
        padding: 15px 20px;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        border-bottom: 1px solid #f0f0f0;
        transition: background 0.3s ease;
    }

    .mobile-nav-link:hover {
        background: #f8f9fa;
        color: #d53333;
    }

    .mobile-form-section {
        margin-top: 65px;
    position: relative;
        height: 100vh;
        overflow: hidden;
        background: none;
    }

    .mobile-hero-background {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 1;
    }

    .mobile-booking-form-container {
        position: relative;
        z-index: 2;
        padding: 30px 20px;
        padding-top: 20px;
    }

    .mobile-booking-form {
        background: white;
        border-radius: 20px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }

    .mobile-trip-type {
    display: flex;
        gap: 10px;
        margin-bottom: 25px;
    }

    .mobile-radio-option {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
    }

    .mobile-radio-option input[type="radio"] {
        display: none;
    }

    .mobile-radio-custom {
        width: 20px;
        height: 20px;
        border: 2px solid #ddd;
        border-radius: 50%;
        position: relative;
        transition: all 0.3s ease;
    }

    .mobile-radio-option input[type="radio"]:checked + .mobile-radio-custom {
        border-color: #d53333;
        background: #d53333;
    }

    .mobile-radio-option input[type="radio"]:checked + .mobile-radio-custom::after {
    content: '';
    position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 8px;
        height: 8px;
        background: white;
        border-radius: 50%;
    }

    .mobile-form-row {
        margin-bottom: 20px;
    }

    .mobile-form-group label {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 10px;
        font-weight: 600;
    color: #333;
        font-size: 14px;
    }

    .mobile-label-icon {
        width: 10px;
        height: 10px;
        fill: #666;
        flex-shrink: 0;
        display: block;
    }

    .mobile-select-wrapper {
        position: relative;
    }

    .mobile-form-select {
        width: 100%;
        padding: 15px;
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        font-size: 16px;
        background: white;
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 15px center;
        background-size: 16px;
        padding-right: 45px;
    }

    .mobile-date-row {
        display: flex;
        gap: 4px; /* Daha da küçültüldü */
        align-items: center; /* Dikey hizalama için center yapıldı */
        width: 100%;
        max-width: 100%;
    }

    .mobile-date-left {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center; /* Dikey hizalama için */
    }

    .mobile-date-right {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center; /* Butonları ortalamak için */
        justify-content: center; /* Dikey hizalama için */
    }

    .mobile-date-text {
        font-weight: 500;
        color: #333;
    }

    .mobile-date-buttons {
        display: flex;
        flex-direction: column;
        gap: 4px; /* Butonlar büyüdü, gap artırıldı */
        width: 100%;
        justify-content: center;
        align-items: center;
        height: 36px; /* Match input height */
        max-width: 100%;
        align-self: center; /* Dikey hizalama için */
    }

    .mobile-return-date-inline {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        box-sizing: border-box;
    }

    .mobile-date-input {
        width: 100%;
        padding: 6px 8px; /* Küçültüldü */
        border: 2px solid #e0e0e0;
        border-radius: 8px; /* Küçültüldü */
        font-size: 12px; /* Küçültüldü */
        background: white;
        color: #333;
        transition: border-color 0.3s;
        height: 36px; /* Küçültüldü */
        box-sizing: border-box;
        min-width: 0;
        max-width: 100%;
    }

    .mobile-date-input:focus {
        outline: none;
        border-color: #d53333;
    }

    .mobile-date-btn {
        padding: 6px 8px; /* Boyut büyütüldü */
        border: none;
        border-radius: 10px; /* Boyuta uygun */
        font-size: 11px; /* Yazı büyütüldü */
    font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        background: #e9ecef;
        color: #666;
        width: 60%; /* Genişlik küçültüldü */
        text-align: center;
        max-width: 60%;
        box-sizing: border-box;
    }

    .mobile-date-btn.active {
        background: #d53333;
        color: white;
    }

    .mobile-search-button {
        width: 100%;
        background: #d53333;
        color: white;
        border: none;
        padding: 18px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 20px;
    }

    .mobile-search-button:hover {
        background: #b82828;
        transform: translateY(-2px);
    }

    .mobile-date-labels {
        display: flex;
        gap: 3px; /* Daha da küçültüldü */
        margin-bottom: 6px; /* Daha da küçültüldü */
        align-items: center;
        flex-wrap: nowrap;
        width: 100%;
        max-width: 100%;
    }

    .mobile-date-label {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 2px; /* Küçültüldü */
        font-weight: 600;
    color: #333;
        font-size: 11px; /* Küçültüldü */
        height: 20px; /* Küçültüldü */
        line-height: 1;
        white-space: nowrap;
        min-width: 0;
        max-width: 100%;
    }

    .mobile-date-label span {
        display: inline-block;
        vertical-align: middle;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        flex-shrink: 1;
    }
}

/* Utility Classes */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Ana Sayfa İçerik Stilleri */
.main-sections {
    background: white;
}

/* Hero ve Özellikler Birleşik Bölümü */
.hero-features-section {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid #e8ecef;
}

.hero-content {
    text-align: center;
    margin-bottom: 60px;
}

.hero-content h1 {
    font-size: 32px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 16px;
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Profesyonel Özellikler Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: #fafbfc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.feature-item:hover {
    border-color: #d53333;
    box-shadow: 0 4px 12px rgba(213, 51, 51, 0.08);
    background: white;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #d53333;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
    line-height: 1.4;
}

.feature-content p {
    font-size: 14px;
    color: #718096;
    line-height: 1.5;
    margin: 0;
}

/* Popüler Seferler */
.popular-routes-section {
    padding: 60px 0;
    background: #f8fafb;
}

.popular-routes-section h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

/* Yeni Slider Tasarımı */
.routes-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.routes-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 10px;
}

.routes-slider::-webkit-scrollbar {
    display: none;
}

.routes-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(180deg, #e53e3e 0%, #d53333 50%, #b82828 100%);
    border: none;
    box-shadow: 0 4px 0 #991f1f, 0 6px 20px rgba(213, 51, 51, 0.35);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
}

.routes-slider-btn:hover {
    box-shadow: 0 6px 0 #991f1f, 0 10px 30px rgba(213, 51, 51, 0.45);
    transform: translateY(-50%) translateY(-2px);
}

.routes-slider-btn:active {
    box-shadow: 0 2px 0 #991f1f, 0 4px 15px rgba(213, 51, 51, 0.35);
    transform: translateY(-50%) translateY(2px);
}

.routes-slider-btn svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2.5;
}

.routes-slider-prev {
    left: 5px;
}

.routes-slider-next {
    right: 5px;
}

/* Yeni 3D Kart Tasarımı */
.route-card-new {
    flex: 0 0 auto;
    width: 380px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 10px 0 -5px rgba(0, 0, 0, 0.1),
        0 20px 25px -10px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transform: perspective(1000px) rotateX(2deg);
    transform-style: preserve-3d;
}

.route-card-new:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 0 -10px rgba(0, 0, 0, 0.08),
        0 40px 50px -15px rgba(213, 51, 51, 0.25),
        0 0 0 2px rgba(213, 51, 51, 0.3) inset;
}

.route-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.route-card-new:hover .route-card-bg {
    transform: scale(1.08);
}

.route-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.1) 70%,
        transparent 100%
    );
}

.route-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
}

.route-cities-inline {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.city-badge {
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.city-from-badge {
    background: white;
    color: #d53333;
    border-color: #d53333;
}

.city-to-badge {
    background: white;
    color: #d53333;
    border-color: #d53333;
}

.route-card-new:hover .city-badge {
    transform: translateY(-2px);
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.08), 0 8px 15px rgba(0, 0, 0, 0.2);
}

.route-price-badge {
    background: linear-gradient(180deg, #e53e3e 0%, #d53333 50%, #b82828 100%);
    padding: 12px 18px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 0 #991f1f, 0 6px 15px rgba(213, 51, 51, 0.4);
    transition: all 0.2s ease;
    min-width: 90px;
}

.route-card-new:hover .route-price-badge {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #991f1f, 0 10px 20px rgba(213, 51, 51, 0.5);
}

.route-price-badge .price-text {
    color: white;
    font-size: 18px;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.route-price-badge .duration-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.route-price-badge .duration-text i {
    font-size: 10px;
}

/* Popüler Seferler Sayfası - Grid Düzeni */
.routes-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.route-card-page {
    width: 100% !important;
    height: 200px !important;
}

.no-routes-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
}

@media (max-width: 768px) {
    .routes-grid-page {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 16px;
        padding: 10px;
    }
    
    .route-card-page {
        height: 160px !important;
    }
}

@media (max-width: 480px) {
    .routes-grid-page {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .route-card-page {
        height: 150px !important;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .route-card-new {
        width: 320px;
        height: 180px;
        transform: perspective(1000px) rotateX(1deg);
    }
    
    .route-card-new:hover {
        transform: perspective(1000px) rotateX(0deg) translateY(-8px) scale(1.02);
    }
    
    .city-badge {
        padding: 8px 14px;
        font-size: 11px;
    }
    
    .route-price-badge {
        padding: 10px 14px;
        min-width: 80px;
    }
    
    .route-price-badge .price-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .routes-slider-container {
        padding: 0 50px;
    }
    
    .routes-slider {
        gap: 16px;
        padding: 15px 5px;
    }
    
    .routes-slider-btn {
        width: 38px;
        height: 38px;
        box-shadow: 0 3px 0 #991f1f, 0 4px 12px rgba(213, 51, 51, 0.3);
    }
    
    .routes-slider-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .route-card-new {
        width: 280px;
        height: 160px;
        border-radius: 16px;
    }
    
    .route-card-content {
        padding: 12px 14px;
    }
    
    .route-cities-inline {
        gap: 6px;
    }
    
    .city-badge {
        padding: 6px 12px;
        font-size: 10px;
        border-radius: 20px;
        box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 8px rgba(0, 0, 0, 0.12);
    }
    
    .route-price-badge {
        padding: 8px 12px;
        border-radius: 10px;
        min-width: 70px;
        box-shadow: 0 3px 0 #991f1f, 0 4px 10px rgba(213, 51, 51, 0.35);
    }
    
    .route-price-badge .price-text {
        font-size: 14px;
    }
    
    .route-price-badge .duration-text {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .routes-slider-container {
        padding: 0 40px;
    }
    
    .routes-slider {
        gap: 12px;
    }
    
    .routes-slider-btn {
        width: 32px;
        height: 32px;
    }
    
    .routes-slider-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .route-card-new {
        width: 250px;
        height: 145px;
        border-radius: 14px;
    }
    
    .route-card-content {
        padding: 10px 12px;
    }
    
    .city-badge {
        padding: 5px 10px;
        font-size: 9px;
    }
    
    .route-price-badge {
        padding: 5px 8px;
        align-self: flex-end;
    }
    
    .route-price-badge .price-text {
        font-size: 11px;
    }
    
    .route-price-badge .duration-text {
        font-size: 8px;
    }
}

/* Eski grid tasarımı (popular-routes sayfası için) */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}

.route-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 0 #c42f2f;
    position: relative;
    border: 1px solid transparent;
}

.route-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(213, 51, 51, 0.2), 0 3px 0 #b82828;
    border-color: #d53333;
}

.route-image {
    height: 120px;
    overflow: hidden;
    position: relative;
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.route-card:hover .route-image img {
    transform: scale(1.1);
}

.route-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    pointer-events: none;
}

.route-content {
    padding: 14px;
}

/* Yeni şehir düzeni - dikey */
.route-cities {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
    padding: 10px;
    background: linear-gradient(135deg, #fef2f2, #fff);
    border-radius: 8px;
    border: 1px solid rgba(213, 51, 51, 0.15);
    box-shadow: 0 2px 0 rgba(213, 51, 51, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.city-from, .city-to {
    text-align: center;
    width: 100%;
}

.city-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.city-from h3, .city-to h3 {
    font-size: 13px;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    letter-spacing: -0.3px;
}

.city-from h3 {
    color: #d53333;
}

.route-arrow-vertical {
    background: linear-gradient(180deg, #e53e3e 0%, #d53333 50%, #b82828 100%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 0 #991f1f, 0 3px 8px rgba(213, 51, 51, 0.3);
    flex-shrink: 0;
}

.route-arrow-vertical svg {
    width: 14px;
    height: 14px;
    stroke: white;
}

/* Fiyat ve süre */
.route-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e2e8f0;
}

.route-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    font-weight: 600;
}

.price-value {
    font-size: 18px;
    font-weight: 800;
    color: #d53333;
    line-height: 1.2;
}

.route-duration {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #666;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5px 8px;
    border-radius: 14px;
    box-shadow: 0 1px 0 #ddd, 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
}

.route-duration i {
    color: #d53333;
}

.route-description {
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.5;
}

.buy-button {
    width: 100%;
    background: linear-gradient(180deg, #e53e3e 0%, #d53333 50%, #b82828 100%);
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 0 #991f1f, 0 4px 10px rgba(213, 51, 51, 0.25);
    position: relative;
    top: 0;
}

.buy-button svg {
    width: 14px;
    height: 14px;
    stroke: white;
    transition: transform 0.3s ease;
}

.buy-button:hover {
    background: linear-gradient(180deg, #e84848 0%, #d53333 50%, #c42f2f 100%);
    box-shadow: 0 3px 0 #991f1f, 0 6px 15px rgba(213, 51, 51, 0.35);
    top: -1px;
}

.buy-button:active {
    top: 1px;
    box-shadow: 0 1px 0 #991f1f, 0 2px 6px rgba(213, 51, 51, 0.25);
}

.buy-button:hover svg {
    transform: translateX(4px);
}

/* Eski route-info ve route-arrow stilleri (geriye uyumluluk) */
.route-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.route-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
    flex: 1;
}

.route-arrow {
    background: linear-gradient(180deg, #e53e3e 0%, #d53333 50%, #b82828 100%);
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 0 #991f1f, 0 4px 10px rgba(213, 51, 51, 0.3);
}

.route-arrow svg {
    width: 16px;
    height: 16px;
    fill: white;
}

/* Popüler Seferler Responsive */
@media (max-width: 768px) {
    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 12px;
    }
    
    .route-card {
        border-radius: 10px;
    }
    
    .route-image {
        height: 90px;
    }
    
    .route-content {
        padding: 10px;
    }
    
    .route-cities {
        padding: 8px;
        gap: 3px;
    }
    
    .city-from h3, .city-to h3 {
        font-size: 11px;
    }
    
    .route-arrow-vertical {
        width: 22px;
        height: 22px;
    }
    
    .route-arrow-vertical svg {
        width: 10px;
        height: 10px;
    }
    
    .city-label {
        font-size: 8px;
    }
    
    .price-value {
        font-size: 14px;
    }
    
    .route-duration {
        font-size: 9px;
        padding: 4px 6px;
    }
    
    .buy-button {
        padding: 8px 10px;
        font-size: 10px;
    }
    
    .buy-button svg {
        width: 12px;
        height: 12px;
    }
    
    .route-arrow-vertical svg {
        width: 18px;
        height: 18px;
    }
    
    .price-value {
        font-size: 22px;
    }
    
    .buy-button {
        padding: 12px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0 8px;
    }
    
    .route-image {
        height: 70px;
    }
    
    .route-content {
        padding: 8px;
    }
    
    .route-cities {
        padding: 6px;
        gap: 2px;
        margin-bottom: 8px;
    }
    
    .city-from h3, .city-to h3 {
        font-size: 10px;
    }
    
    .city-label {
        font-size: 7px;
        margin-bottom: 1px;
    }
    
    .route-arrow-vertical {
        width: 18px;
        height: 18px;
    }
    
    .route-arrow-vertical svg {
        width: 8px;
        height: 8px;
    }
    
    .price-label {
        font-size: 7px;
    }
    
    .price-value {
        font-size: 12px;
    }
    
    .route-duration {
        font-size: 8px;
        padding: 3px 5px;
    }
    
    .route-details {
        margin-bottom: 6px;
        padding-bottom: 6px;
    }
    
    .buy-button {
        padding: 6px 8px;
        font-size: 9px;
        border-radius: 6px;
    }
    
    .buy-button svg {
        width: 10px;
        height: 10px;
    }
}

/* Popüler Güzergahlar */
.popular-destinations {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.popular-destinations .section-header h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.popular-destinations .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.destination-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    background: linear-gradient(135deg, var(--card-color-1, #d53333), var(--card-color-2, #b82828));
    border-radius: 16px;
    text-decoration: none;
    color: white;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 160px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.destination-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.destination-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.destination-card:hover .destination-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.destination-icon i {
    font-size: 24px;
    color: white;
}

.destination-info {
    text-align: center;
    position: relative;
    z-index: 2;
}

.destination-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.destination-cta {
    font-size: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.destination-card:hover .destination-cta {
    opacity: 1;
    transform: translateY(0);
}

.destination-cta i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-cta i {
    transform: translateX(4px);
}

.destination-bg-pattern {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
    transition: all 0.4s ease;
}

.destination-card:hover .destination-bg-pattern {
    transform: scale(1.5);
    opacity: 0.8;
}

/* Eski stiller - geriye uyumluluk */
.destinations-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.destination-link {
    display: block;
    padding: 16px 20px;
    background: #fafbfc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    text-decoration: none;
    color: #1a202c;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    transition: all 0.2s ease;
}

.destination-link:hover {
    background: #d53333;
    color: white;
    border-color: #d53333;
}

/* Popüler Güzergahlar Responsive */
@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .popular-destinations {
        padding: 50px 0;
    }
    
    .popular-destinations .section-header h2 {
        font-size: 26px;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .destination-card {
        min-height: 140px;
        padding: 24px 16px;
    }
    
    .destination-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }
    
    .destination-icon i {
        font-size: 20px;
    }
    
    .destination-info h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 16px;
    }
    
    .destination-card {
        min-height: 120px;
        padding: 20px 12px;
        border-radius: 12px;
    }
    
    .destination-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 10px;
    }
    
    .destination-icon i {
        font-size: 18px;
    }
    
    .destination-info h3 {
        font-size: 14px;
    }
    
    .destination-cta {
        display: none;
    }
}

/* Şehir Tanıtımları */
.city-promotions {
    padding: 60px 0 60px 0;
    background: #f8f9fa;
    display: block;
    clear: both;
    width: 100%;
    overflow: hidden;
}

.city-promotions h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #718096;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    max-width: 1200px;
    margin: 0 auto;
    height: auto;
}

.city-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.city-card:hover {
    transform: scale(1.02);
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.city-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.city-overlay h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #1a202c;
}

/* Sol büyük kart */
.city-main {
    grid-row: 1 / -1;
}

/* Orta sütun */
.cities-middle {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
}

/* Sağ sütun */
.cities-right {
    display: grid;
    grid-template-rows: repeat(3, 1fr) 1fr;
    gap: 8px;
}

.cities-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

/* Footer - Modern 3D Tasarım */
.footer {
    background: linear-gradient(135deg, #6b1a1a 0%, #8b2525 30%, #9b3030 50%, #8b2525 70%, #6b1a1a 100%);
    color: #ecf0f1;
    padding: 0;
    margin: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(213, 51, 51, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Footer Floating Shapes */
.footer-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: footerFloat 20s infinite ease-in-out;
}

.footer-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: 10%;
    background: radial-gradient(circle, rgba(213, 51, 51, 0.2), transparent);
    animation-delay: 0s;
}

.footer-shape-2 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    right: 15%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.15), transparent);
    animation-delay: 7s;
}

@keyframes footerFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-30px) scale(1.1); opacity: 0.8; }
}

.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 0;
}

.footer-column {
    backdrop-filter: blur(5px);
}

.footer-column h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #d53333, #ff6b6b);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(213, 51, 51, 0.5);
}

.contact-info {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.contact-info p {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.8;
    transition: all 0.3s ease;
}

.contact-info p:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.contact-info strong {
    color: #ff6b6b;
    font-weight: 600;
    display: inline-block;
    margin-right: 8px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(8px);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #ff6b6b;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d53333, #ff6b6b);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Liste ok simgesi */
.footer-links li::before {
    content: '▶';
    color: #d53333;
    margin-right: 12px;
    font-size: 10px;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(213, 51, 51, 0.5);
}

.footer-links li:hover::before {
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.8);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 0;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.footer-logo { justify-self: start; }
.footer-logo img {
    height: 55px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.footer-links-bottom {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-self: center;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links-bottom a:hover { 
    color: #ff6b6b;
}

.footer-links-bottom a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d53333, #ff6b6b);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.footer-links-bottom a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 12px;
    justify-self: end;
}

.social-link {
    width: 46px;
    height: 46px;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.social-link:hover {
    background: linear-gradient(135deg, #d53333, #ff6b6b);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(213, 51, 51, 0.4);
}

.social-link svg { width: 20px; height: 20px; }

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer {
        display: none !important;
        padding: 24px 0 0 0;
    }
    
    .footer-columns { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    
    .footer-column h3 { font-size: 14px; margin-bottom: 12px; }
    
    .footer-links li { font-size: 13px; margin-bottom: 6px; }
    
    .contact-info { padding: 0; }
    
    .contact-info p { font-size: 13px; margin-bottom: 6px; }
    
    .footer-bottom-content { grid-template-columns: 1fr; gap: 12px; }
    
    .footer-links-bottom { gap: 12px; justify-self: center; }
    
    .footer-links-bottom a { font-size: 12px; }
    
    .footer-social { gap: 8px; justify-self: center; }
    
    .social-link { width: 36px; height: 36px; }
    
    .social-link svg { width: 16px; height: 16px; }
    
    .footer-copyright p { font-size: 12px; }
}

@media (max-width: 480px) {
    .footer-columns { grid-template-columns: 1fr; gap: 18px; }
    .footer-links-bottom { flex-direction: column; gap: 8px; }
    .footer-links-bottom a { width: fit-content; margin: 0 auto; }
}


/* İletişim Sayfası Stilleri */
.sub-header {
    position: relative;
    height: 400px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .sub-header {
        height: 250px;
        margin-top: 65px; /* Mobile header yüksekliği kadar */
    }
}

.sub-header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sub-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(213,51,51,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
}

.sub-header-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.breadcrumb {
    font-size: 16px;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    margin: 0 8px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8fafb;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
}

.contact-header p {
    font-size: 18px;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    gap: 60px;
}

/* Contact Info Cards */
.contact-info-section {
    margin-bottom: 40px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: #f8fafb;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #d53333;
    box-shadow: 0 8px 25px rgba(213, 51, 51, 0.1);
    transform: translateY(-5px);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: #d53333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.contact-card-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.contact-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

.contact-card-content p {
    color: #718096;
    line-height: 1.6;
}

.contact-card-content a {
    color: #d53333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-content a:hover {
    color: #b82828;
}

/* Contact Form and Map */
.contact-form-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-section {
    background: #f8fafb;
    border-radius: 12px;
    padding: 40px;
}



.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 30px;
    text-align: center;
}

/* İletişim Formu Özel Stiller */
.contact-form .contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.contact-form .contact-form-group label {
    display: block;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-form .contact-form-group input,
.contact-form .contact-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.contact-form .contact-form-group input:focus,
.contact-form .contact-form-group textarea:focus {
    outline: none;
    border-color: #d53333;
    box-shadow: 0 0 0 3px rgba(213, 51, 51, 0.1);
}

.contact-form .contact-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .contact-submit-btn {
    background: linear-gradient(135deg, #d53333 0%, #b82828 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.contact-form .contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(213, 51, 51, 0.3);
}

.contact-form .contact-submit-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Map Section */
.map-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 20px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    display: block;
}

  /* Mobile Dropdown Styles */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mobile-dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    background: #f8fafb;
    border-radius: 8px;
    margin: 8px 0;
    padding: 8px 0;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-menu li {
    list-style: none;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 2px 8px;
}

.mobile-dropdown-menu a:hover {
    background: #d53333;
    color: white;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    /* Mobile Contact Styles */
    .sub-header {
        height: 200px;
    }
    
    .sub-header-overlay h1 {
        font-size: 32px;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-header h2 {
        font-size: 28px;
    }
    
    .contact-header p {
    font-size: 16px;
  }
  
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-form-map {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-section {
        padding: 30px 20px;
    }
    
    .contact-form .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .mobile-only {
        display: block !important;
    }
}

/* Blog Sayfası Stilleri */
.blog-section {
    padding: 80px 0;
    background: white;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
}

.blog-header p {
    font-size: 18px;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #718096;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.blog-title {
    margin-bottom: 15px;
}

.blog-title a {
    color: #1a202c;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #d53333;
}

.blog-excerpt {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d53333;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #b82828;
    gap: 12px;
}

.blog-read-more svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Blog Detay Sayfası */
.blog-detail-section {
    padding: 80px 0;
    background: #f8fafb;
}

.blog-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-detail-article {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-detail-header {
    padding: 40px 40px 20px 40px;
}

.blog-detail-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #718096;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-detail-meta svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.blog-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.3;
    margin: 0;
}

.blog-detail-image {
    height: 400px;
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-body {
    padding: 40px;
    color: #4a5568;
    line-height: 1.8;
    font-size: 16px;
}

.blog-detail-body h3 {
    color: #1a202c;
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

.blog-detail-body p {
    margin-bottom: 20px;
}

.blog-detail-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.blog-detail-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.blog-detail-list li:last-child {
    border-bottom: none;
}

.blog-detail-footer {
    padding: 30px 40px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }
    
.blog-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tag-label {
    color: #718096;
    font-weight: 600;
    font-size: 14px;
}

.blog-tag {
    background: #f8fafb;
    color: #4a5568;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background: #d53333;
    color: white;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-label {
    color: #718096;
    font-weight: 600;
    font-size: 14px;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn svg {
    width: 16px;
    height: 16px;
    fill: white;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.blog-navigation {
    margin-top: 40px;
    text-align: center;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d53333;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid #d53333;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    background: #d53333;
    color: white;
}

.back-to-blog svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Blog Mobil Responsive */
@media (max-width: 768px) {
    .blog-section,
    .blog-detail-section {
        padding: 40px 0;
    }
    
    .blog-header h2,
    .blog-detail-title {
        font-size: 28px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-card {
        margin: 0 10px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-detail-header,
    .blog-detail-body,
    .blog-detail-footer {
        padding: 20px;
    }
    
    .blog-detail-image {
        height: 250px;
    }
    
    .blog-detail-footer {
      flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-meta,
    .blog-detail-meta {
      flex-direction: column;
        gap: 10px;
    }
}

/* Hakkımızda Sayfası Stilleri */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-header {
      text-align: center;
    margin-bottom: 60px;
}

.about-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
}

.about-header p {
    font-size: 18px;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    margin-bottom: 80px;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-intro-text h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 20px;
}

.about-intro-text p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-details {
    background: #f8fafb;
    padding: 40px;
    border-radius: 12px;
}

.about-details p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-details p:last-child {
    margin-bottom: 0;
}

/* Features Section */
.about-features {
    margin-bottom: 80px;
}

.about-features h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1a202c;
    text-align: center;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 100%;
    box-sizing: border-box;
}

.feature-item {
    background: white;
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    box-sizing: border-box;
    min-width: 0;
    display: block;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d53333 0%, #b82828 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 10px;
    line-height: 1.3;
}

.feature-item p {
    color: #718096;
    line-height: 1.5;
    font-size: 13px;
}

/* Timeline Section */
.about-timeline {
    background: #f8fafb;
    padding: 60px 40px;
    border-radius: 12px;
}

.about-timeline h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1a202c;
    text-align: center;
    margin-bottom: 40px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #d53333 0%, #b82828 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(135deg, #d53333 0%, #b82828 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    min-width: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    margin: 0 30px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-right: 10px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

/* Hakkımızda Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-item {
        padding: 25px 20px;
    }
}

/* Hakkımızda Mobil Responsive */
@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-header h2 {
        font-size: 28px;
    }
    
    .about-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-details {
        padding: 30px 20px;
    }
    
    .about-features,
    .about-timeline {
        margin-bottom: 40px;
    }
    
    .about-timeline {
        padding: 40px 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-item {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-item {
        padding: 15px 10px;
    }
    

    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        align-items: flex-start;
    }
    
    .timeline-year {
        min-width: 60px;
        font-size: 14px;
        padding: 8px 12px;
        margin-right: 20px;
    }
    
    .timeline-content {
        margin: 0;
        flex: 1;
    }
    
    .timeline-content::before {
        display: none;
    }
}

/* Mobil Uygulama Sayfası Stilleri */
.mobile-app-hero {
    padding: 80px 0;
    background: white;
}

.mobile-app-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.mobile-app-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.2;
}

.mobile-app-text p {
    font-size: 18px;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 40px;
}

.app-features {
    margin-bottom: 40px;
}

.mobile-app-hero .feature-item {
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
    padding: 15px;
    background: #f8fafb;
    border-radius: 12px;
    border-left: 4px solid #d53333;
}

.mobile-app-hero .feature-icon {
    width: 40px;
    height: 40px;
    background: #d53333;
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-sizing: border-box;
}

.mobile-app-hero .feature-item span {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
}

.app-download-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.app-store-btn,
.play-store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #000;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 180px;
}

.app-store-btn:hover,
.play-store-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.app-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.app-store-btn div,
.play-store-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-text {
    font-size: 11px;
    opacity: 0.8;
    line-height: 1;
}

.store-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

.mobile-app-qr {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-container {
    text-align: center;
    padding: 40px;
    background: #f8fafb;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
}

.mobile-app-image {
    width: 250px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.qr-code {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.qr-container p {
    font-size: 16px;
    color: #4a5568;
    font-weight: 500;
    margin: 0;
}

/* App Features Section */
.app-features-section {
    padding: 80px 0;
    background: #f8fafb;
}

.app-features-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 60px;
}

.app-features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.app-features-section .feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08), 0 4px 0 #e2e8f0;
}

.app-features-section .feature-card:hover {
    border-color: #d53333;
    box-shadow: 0 12px 30px rgba(213, 51, 51, 0.15), 0 6px 0 #c42f2f;
    transform: translateY(-8px);
}

.feature-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(180deg, #e53e3e 0%, #d53333 50%, #b82828 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    box-shadow: 0 6px 0 #991f1f, 0 8px 20px rgba(213, 51, 51, 0.3);
}

.feature-card-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.app-features-section .feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
}

.app-features-section .feature-card p {
    font-size: 16px;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* Mobile App Responsive */
  @media (max-width: 768px) {
    .mobile-app-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .mobile-app-text h2 {
        font-size: 28px;
    }
    
    .mobile-app-text p {
        font-size: 16px;
    }
    
    .app-download-buttons {
        justify-content: center;
      flex-direction: column;
        align-items: center;
    }
    
    .qr-container {
        padding: 30px 20px;
    }
    
    .mobile-app-image {
        width: 200px;
        margin-bottom: 15px;
    }
    
    .qr-code {
        width: 120px;
        height: 120px;
    }
    
    .app-features-section .features-grid {
        grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .app-features-section .feature-card {
        padding: 30px 20px;
    }
    
    .app-features-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

/* Legal Pages Styles */
.legal-section {
    padding: 80px 0;
    background: white;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 30px;
      text-align: center;
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #d53333;
    margin: 40px 0 20px 0;
    border-bottom: 2px solid #f8fafb;
    padding-bottom: 10px;
}

.legal-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin: 30px 0 15px 0;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
    text-align: justify;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 10px;
}

.company-info {
    background: #f8fafb;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid #d53333;
}

.company-info h4 {
    color: #d53333;
    margin-bottom: 15px;
}

.company-info p {
    margin-bottom: 10px;
}

.contact-info {
    background: #f8fafb;
      padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.service-details table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-details table td {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 16px;
}

.service-details table tr:last-child td {
    border-bottom: none;
}

.service-details table td:first-child {
    background: #f8fafb;
    width: 200px;
    font-weight: 600;
    color: #1a202c;
}

.cancellation-rules {
    background: #fff8dc;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #f39c12;
    margin: 25px 0;
}

.cancellation-rules h4 {
    color: #d68910;
    margin-bottom: 15px;
}

.court-info {
    background: #f0f8ff;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #3498db;
    margin: 25px 0;
}

.court-info table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 14px;
}

.court-info table th,
.court-info table td {
    padding: 12px;
    border: 1px solid #bdc3c7;
    text-align: left;
}

.court-info table th {
    background: #3498db;
    color: white;
    font-weight: 600;
}

.acceptance {
    background: #e8f5e8;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #27ae60;
    margin: 30px 0;
    text-align: center;
}

.academy-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.academy-info h3 {
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.academy-info p {
    color: rgba(255, 255, 255, 0.9);
}

.training-features {
    margin: 40px 0;
}

.training-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.training-item {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.training-item:hover {
    border-color: #d53333;
    box-shadow: 0 8px 25px rgba(213, 51, 51, 0.1);
    transform: translateY(-5px);
}

.training-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d53333 0%, #b82828 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.training-icon svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.training-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 15px;
}

.training-item p {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* Legal Pages Mobile Responsive */
@media (max-width: 768px) {
    .legal-section {
        padding: 40px 0;
    }
    
    .legal-content {
        padding: 0 20px;
    }
    
    .legal-content h2 {
        font-size: 28px;
    }
    
    .legal-content h3 {
        font-size: 20px;
    }
    
    .legal-content h4 {
        font-size: 18px;
    }
    
    .legal-content p,
    .legal-content ul li {
        font-size: 15px;
    }
    
    .company-info,
    .contact-info,
    .cancellation-rules,
    .court-info,
    .academy-info {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .service-details table td {
        padding: 12px 10px;
        font-size: 14px;
    }
    
    .service-details table td:first-child {
        width: 120px;
    }
    
    .training-features .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .training-item {
        padding: 25px 15px;
    }
}

/* Şehir Tanıtım Sayfası Stilleri */
.city-detail-section {
    padding: 80px 0;
    background: white;
}

.city-hero-image {
    margin-bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.city-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.city-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.city-header {
    text-align: center;
    margin-bottom: 60px;
}

.city-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    position: relative;
}

.city-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d53333 0%, #ff6b6b 100%);
    border-radius: 2px;
}

.city-subtitle {
    font-size: 18px;
    color: #718096;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

.city-attractions {
    margin-bottom: 60px;
}

.attraction-item {
    background: #f8fafb;
    padding: 35px;
    margin-bottom: 25px;
    border-radius: 15px;
    border-left: 5px solid #d53333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.attraction-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(213, 51, 51, 0.02) 0%, rgba(255, 107, 107, 0.02) 100%);
    z-index: 1;
}

.attraction-item > * {
    position: relative;
    z-index: 2;
}

.attraction-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(213, 51, 51, 0.1);
    border-left-width: 8px;
}

.attraction-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #d53333;
    margin-bottom: 15px;
    position: relative;
}

.attraction-item h3::before {
    content: '📍';
    margin-right: 12px;
    font-size: 20px;
}

.attraction-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
    text-align: justify;
}

.city-conclusion {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.city-conclusion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.city-conclusion p {
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

/* Şehir Tanıtım Sayfası Mobile Responsive */
@media (max-width: 768px) {
    .city-detail-section {
        padding: 40px 0;
    }
    
    .city-hero-image {
        margin-bottom: 40px;
        border-radius: 15px;
    }
    
    .city-main-image {
        height: 250px;
    }
    
    .city-detail-content {
        padding: 0 20px;
    }
    
    .city-header {
        margin-bottom: 40px;
    }
    
    .city-header h2 {
      font-size: 32px;
        margin-bottom: 15px;
    }
    
    .city-header h2::after {
        width: 60px;
        height: 3px;
        bottom: -10px;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    border-top: 3px solid #d53333;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
}

.cookie-banner-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.cookie-banner-text a {
    color: #d53333;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
    color: #ff4444;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept {
    background: #d53333;
    color: white;
    box-shadow: 0 4px 15px rgba(213, 51, 51, 0.3);
}

.cookie-accept:hover {
    background: #ff4444;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(213, 51, 51, 0.4);
}

.cookie-reject {
    background: transparent;
    color: #e0e0e0;
    border: 2px solid #666;
}

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #999;
    color: white;
}

/* Cookie Banner Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
        bottom: 85px;
        z-index: 99997;
        border-radius: 16px 16px 0 0;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cookie-banner-text strong {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .cookie-banner-text p {
        font-size: 13px;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .city-subtitle {
        font-size: 16px;
    }
    
    .city-attractions {
        margin-bottom: 40px;
    }
    
    .attraction-item {
        padding: 25px 20px;
        margin-bottom: 20px;
        border-radius: 12px;
    }
    
    .attraction-item h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .attraction-item h3::before {
        font-size: 16px;
        margin-right: 8px;
    }
    
    .attraction-item p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .city-conclusion {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .city-conclusion p {
        font-size: 16px;
    }
}

/* Tümünü Gör Butonları */
.btn-view-all {
    display: block;
    width: fit-content;
    margin: 20px auto 0 auto;
    background: linear-gradient(180deg, #e53e3e 0%, #d53333 50%, #b82828 100%);
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    box-shadow: 0 4px 0 #991f1f, 0 6px 15px rgba(213, 51, 51, 0.3);
    position: relative;
    top: 0;
}

.btn-view-all:hover {
    background: linear-gradient(180deg, #e84848 0%, #d53333 50%, #c42f2f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #991f1f, 0 10px 25px rgba(213, 51, 51, 0.4);
    top: -2px;
}

.btn-view-all:active {
    top: 2px;
    transform: translateY(2px);
    box-shadow: 0 2px 0 #991f1f, 0 4px 10px rgba(213, 51, 51, 0.3);
}

/* Swap Buttons Styles */
.swap-stations-btn,
.mobile-swap-stations-btn,
.swap-btn,
.desktop-swap-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #e53e3e 0%, #d53333 50%, #b82828 100%);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 3px 0 #991f1f, 0 4px 10px rgba(213, 51, 51, 0.3);
    position: relative;
    top: 0;
}

.swap-stations-btn:hover,
.mobile-swap-stations-btn:hover,
.swap-btn:hover,
.desktop-swap-btn:hover {
    background: linear-gradient(180deg, #e84848 0%, #d53333 50%, #c42f2f 100%);
    box-shadow: 0 4px 0 #991f1f, 0 6px 15px rgba(213, 51, 51, 0.4);
    top: -2px;
}

.swap-stations-btn:active,
.mobile-swap-stations-btn:active,
.swap-btn:active,
.desktop-swap-btn:active {
    top: 2px;
    box-shadow: 0 1px 0 #991f1f, 0 2px 5px rgba(213, 51, 51, 0.3);
}
    flex-shrink: 0;
}

.swap-btn,
.desktop-swap-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 0;
    align-self: flex-end;
    margin-bottom: 2px;
}

.swap-btn:hover,
.desktop-swap-btn:hover {
    background: #b82828;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(213, 51, 51, 0.3);
}

.swap-btn svg,
.desktop-swap-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.swap-stations-btn {
    width: 44px;
    height: 44px;
    margin-bottom: 2px;
    flex-shrink: 0;
    align-self: flex-end;
}

.swap-stations-btn:hover {
    background: #b82828;
    transform: rotate(180deg) scale(1.05);
    box-shadow: 0 4px 12px rgba(213, 51, 51, 0.3);
}

.mobile-swap-stations-btn {
    width: 32px;
    height: 32px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    z-index: 3;
    border-radius: 10px;
}

.mobile-swap-stations-btn:hover {
    background: #b82828;
    box-shadow: 0 4px 12px rgba(213, 51, 51, 0.3);
}

/* Desktop form swap button positioning */
.swap-stations-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Mobile container for swap button */
.mobile-stations-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.mobile-swap-stations-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Mobile Station Trigger Button */
.mobile-station-trigger {
    width: 100%;
    height: 48px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 16px;
    color: #333;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.mobile-station-trigger:hover {
    border-color: #d53333;
}

.mobile-station-trigger:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.mobile-station-trigger .station-placeholder {
    color: #999;
}

.mobile-station-trigger .station-selected {
    color: #333;
    font-weight: 500;
}

/* Mobile Station Modal */
.mobile-station-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100001;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.mobile-station-modal.open {
    display: flex;
}

.mobile-station-modal-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    max-height: 80vh;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.mobile-station-modal-header {
    background: #d53333;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.mobile-station-modal-header .modal-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
}

.mobile-station-search-input {
    width: 100%;
    height: 48px;
    background: #fff;
    border: none;
    border-radius: 8px;
    padding: 0 16px;
    font-size: 16px;
    color: #333;
    outline: none;
}

.mobile-station-search-input::placeholder {
    color: #999;
}

.mobile-station-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
}

.mobile-station-modal-close svg {
    width: 16px;
    height: 16px;
    fill: white;
}

.mobile-station-list {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.mobile-station-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s ease;
    gap: 12px;
}

.mobile-station-item:hover,
.mobile-station-item:active {
    background: #f5f5f5;
}

.mobile-station-item-icon {
    width: 32px;
    height: 32px;
    background: #fdeaea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-station-item-icon svg {
    width: 16px;
    height: 16px;
    fill: #d53333;
}

.mobile-station-item-text {
    font-size: 15px;
    color: #333;
    font-weight: 400;
}

.mobile-station-empty {
    padding: 40px 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* Select Wrapper - for dropdown positioning */
.select-wrapper {
    position: relative;
    z-index: 100;
}

.form-group.departure-arrival:first-child .select-wrapper {
    z-index: 102;
}

.form-group.departure-arrival:nth-child(3) .select-wrapper {
    z-index: 101;
}

/* Desktop Station Trigger Button */
.desktop-station-trigger {
    width: 100%;
    height: 48px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 14px;
    color: #333;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.desktop-station-trigger span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.desktop-station-trigger:hover {
    border-color: #d53333;
}

.desktop-station-trigger:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.desktop-station-trigger .station-placeholder {
    color: #999;
}

.desktop-station-trigger .station-selected {
    color: #333;
    font-weight: 500;
}

/* Desktop Station Modal - Dropdown Style */
.desktop-station-modal {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 350px;
    min-width: 300px;
    max-width: 400px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 100001;
    overflow: hidden;
}

.desktop-station-modal.open {
    display: block;
}

.desktop-station-modal-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 350px;
    background: #fff;
    overflow: hidden;
}

.desktop-station-modal-header {
    background: #d53333;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.desktop-station-modal-header .modal-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.desktop-station-search-input {
    width: 100%;
    height: 38px;
    background: #fff;
    border: none;
    border-radius: 6px;
    padding: 0 12px;
    font-size: 14px;
    color: #333;
    outline: none;
}

.desktop-station-search-input::placeholder {
    color: #999;
}

.desktop-station-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: background 0.2s ease;
}

.desktop-station-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.desktop-station-modal-close svg {
    width: 16px;
    height: 16px;
    fill: white;
}

.desktop-station-list {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    max-height: 280px;
}

.desktop-station-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s ease;
    gap: 10px;
}

.desktop-station-item:hover {
    background: #fef5f5;
}

.desktop-station-item:last-child {
    border-bottom: none;
}

.desktop-station-item-icon {
    width: 32px;
    height: 32px;
    background: #fdeaea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.desktop-station-item-icon svg {
    width: 16px;
    height: 16px;
    fill: #d53333;
}

.desktop-station-item-text {
    font-size: 14px;
    color: #333;
    font-weight: 400;
}

.desktop-station-empty {
    padding: 30px 16px;
    text-align: center;
    color: #999;
    font-size: 13px;
}

/* Tracking Alert Toast */
.tracking-alert-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.tracking-alert-content {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 14px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #f59e0b;
}

.tracking-alert-content i {
    color: #f59e0b;
    font-size: 20px;
}

.tracking-alert-content span {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.tracking-alert-close {
    background: none;
    border: none;
    font-size: 22px;
    color: #999;
    cursor: pointer;
    margin-left: 10px;
    line-height: 1;
}

.tracking-alert-close:hover {
    color: #666;
}

/* Disabled Track Button */
.disabled-track-btn {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    background-color: #9ca3af !important;
    border-color: #9ca3af !important;
    color: #6b7280 !important;
}

.disabled-track-btn:hover {
    background-color: #9ca3af !important;
    border-color: #9ca3af !important;
    color: #6b7280 !important;
}

.disabled-track-btn i {
    color: #6b7280 !important;
}

/* ============================================
   MOBILE BOTTOM NAVIGATION - 3D DESIGN (KALE RED)
   ============================================ */

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    display: none;
    padding: 0 8px 8px 8px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
}

.mobile-bottom-nav-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        #c41e3a 0%, 
        #d53333 50%,
        #b91c1c 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px 24px 0 0;
    box-shadow: 
        0 -10px 40px rgba(196, 30, 58, 0.4),
        0 -4px 15px rgba(196, 30, 58, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: none;
}

.mobile-bottom-nav-container {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    padding: 12px 8px 8px 8px;
    max-width: 100%;
}

.mobile-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    min-width: 60px;
}

.mobile-bottom-nav-item:active {
    transform: scale(0.92);
}

.nav-item-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255,255,255,0.25), rgba(255,255,255,0.1));
    border-radius: 14px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-item-icon svg {
    width: 22px;
    height: 22px;
    fill: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.nav-item-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Active State */
.mobile-bottom-nav-item.active .nav-item-icon {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    border: none;
}

.mobile-bottom-nav-item.active .nav-item-icon svg {
    fill: #c41e3a;
}

.mobile-bottom-nav-item.active .nav-item-label {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Hover State */
.mobile-bottom-nav-item:not(.active):hover .nav-item-icon {
    background: linear-gradient(145deg, rgba(255,255,255,0.35), rgba(255,255,255,0.2));
    transform: translateY(-3px);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.mobile-bottom-nav-item:not(.active):hover .nav-item-icon svg {
    fill: #ffffff;
}

.mobile-bottom-nav-item:not(.active):hover .nav-item-label {
    color: #ffffff;
}

/* Center Button - Logo */
.mobile-bottom-nav-center {
    position: relative;
    margin-top: -25px;
}

.nav-item-icon-center {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #e5e5e5 100%);
    border-radius: 20px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.35),
        0 4px 10px rgba(0, 0, 0, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 0.9),
        inset 0 -2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-bottom: 6px;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(196, 30, 58, 0.4);
}

.nav-item-icon-center::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.5s ease;
}

.mobile-bottom-nav-center:hover .nav-item-icon-center::before {
    left: 100%;
}

.nav-item-icon-center svg {
    width: 28px;
    height: 28px;
    fill: #c41e3a;
    position: relative;
    z-index: 1;
}

.mobile-bottom-nav-center .nav-item-label {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.mobile-bottom-nav-center:hover .nav-item-icon-center {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.4),
        0 6px 15px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(196, 30, 58, 0.6);
}

.mobile-bottom-nav-center:active .nav-item-icon-center {
    transform: translateY(-2px) scale(0.98);
}

/* Mobile Responsive - Show on mobile only */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: block;
    }
    
    /* Add padding to body/main content so it doesn't go under the nav */
    body {
        padding-bottom: 100px !important;
    }
    
    /* Hide footer on mobile if needed or add padding */
    .footer {
        padding-bottom: 100px;
    }
    
    /* Ensure WhatsApp button doesn't overlap */
    .whatsapp-float {
        bottom: 110px !important;
    }
    
    /* Mobile header 3D Kale Red enhancement */
    .mobile-header {
        background: linear-gradient(180deg, 
            #c41e3a 0%, 
            #d53333 50%,
            #b91c1c 100%);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-bottom: none;
        box-shadow: 
            0 4px 20px rgba(196, 30, 58, 0.4),
            0 1px 3px rgba(0, 0, 0, 0.15);
    }
    
    /* Ensure content stays above mobile bottom nav */
    .main-content,
    main,
    .container,
    .content-wrapper,
    .page-content {
        position: relative;
        z-index: 1;
    }
    
    /* Fixed elements like seat selection should be above mobile nav */
    .seat-selection-fixed,
    .fixed-bottom-bar,
    .booking-summary-fixed,
    .seat-summary,
    .seat-summary-bar,
    .journey-summary-fixed,
    .bottom-fixed-bar,
    .action-bar-fixed,
    .sticky-bottom,
    [class*="fixed-bottom"],
    [class*="sticky-bottom"] {
        z-index: 99997 !important;
        bottom: 85px !important;
    }
    
    /* Cookie banner above mobile nav */
    .cookie-banner {
        bottom: 85px !important;
        z-index: 99997 !important;
    }
}

@media (max-width: 380px) {
    .mobile-bottom-nav-item {
        min-width: 50px;
        padding: 6px 6px;
    }
    
    .nav-item-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
    
    .nav-item-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .nav-item-icon-center {
        width: 54px;
        height: 54px;
        border-radius: 18px;
    }
    
    .nav-item-icon-center svg {
        width: 26px;
        height: 26px;
    }
    
    .nav-item-label {
        font-size: 9px;
    }
}

/* ============================================
   MOBILE BOTTOM NAV - LOGO & DROPDOWN STYLES
   ============================================ */

/* Logo Button in Center */
.nav-item-logo {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    padding: 8px;
    border: 3px solid rgba(213, 51, 51, 0.3);
}

.nav-item-logo:hover {
    border-color: rgba(213, 51, 51, 0.6);
}

.bottom-nav-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Dropdown Container */
.mobile-bottom-dropdown {
    position: relative;
    cursor: pointer;
}

/* Dropdown Menu - Opens Upward */
.mobile-bottom-dropdown-menu {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 180px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 
        0 -10px 40px rgba(0, 0, 0, 0.15),
        0 -4px 15px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 100000;
    padding: 8px;
    pointer-events: none;
}

.mobile-bottom-dropdown-menu::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(255, 255, 255, 0.98);
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
}

/* Show dropdown on click */
.mobile-bottom-dropdown.active .mobile-bottom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Dropdown Items */
.mobile-bottom-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.2s ease;
    margin: 2px 0;
}

.mobile-bottom-dropdown-item svg {
    width: 20px;
    height: 20px;
    fill: #9ca3af;
    transition: all 0.2s ease;
}

.mobile-bottom-dropdown-item:hover,
.mobile-bottom-dropdown-item:active {
    background: linear-gradient(135deg, #d53333 0%, #ff6b6b 100%);
    color: white;
}

.mobile-bottom-dropdown-item:hover svg,
.mobile-bottom-dropdown-item:active svg {
    fill: white;
}

/* When dropdown is active, highlight the nav item */
.mobile-bottom-dropdown.active .nav-item-icon {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    border: none;
}

.mobile-bottom-dropdown.active .nav-item-icon svg {
    fill: #c41e3a;
}

.mobile-bottom-dropdown.active .nav-item-label {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Overlay when dropdown is open */
.mobile-bottom-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-bottom-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}