/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Trip Type Selection Styles */
.trip-type-selection {
    margin-bottom: 20px;
    width: 100%;
}

.trip-type-options {
    display: flex;
    gap: 15px;
    margin-top: 8px;
}

.trip-option {
    position: relative;
    width: 50%;
}

.trip-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.trip-option label {
    display: block;
    text-align: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
    font-size: 1rem;
    height: 52px;
    min-height: 52px;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
    line-height: 1.2;
}

.trip-option input[type="radio"]:checked + label {
    background: rgba(74, 144, 226, 0.3);
    border-color: #4a90e2;
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.4);
}

.trip-option:hover label {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

#return_fields {
    animation: fadeIn 0.5s ease;
    width: 100%;
}

#return_fields .form-group {
    width: 100%;
}

#return_fields input[type="date"],
#return_fields input[type="time"] {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    height: 52px;
    min-height: 52px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1a2a5a 0%, #0f1a3a 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    padding-top: 0;
}

/* Reservation Page Background */
body.reservation-page {
    background: linear-gradient(135deg, #1a2a5a 0%, #0f1a3a 50%, #1a2a5a 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

@media (max-width: 768px) {
    body.reservation-page {
        padding: 0;
        margin: 0;
        width: 100%;
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    body.reservation-page {
        background-attachment: scroll;
    }
}

/* Reservation page navbar - always dark blue background */
body.reservation-page .navbar {
    background: rgba(25, 47, 89, 0.95) !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

body.reservation-page .navbar.scrolled {
    background: rgba(25, 47, 89, 0.95) !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

.reservation-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.03) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.reservation-main-container {
    background: linear-gradient(135deg, #1a2a5a 0%, #0f1a3a 100%);
    backdrop-filter: blur(10px);
    border-radius: 0;
    margin: 0;
    padding: 40px;
    width: 100%;
    min-height: 100vh;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .reservation-main-container {
        padding: 20px 0;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .reservation-main-container {
        padding: 15px 0;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
}

.reservation-main-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #000000 25%, #333333 50%, #000000 75%, transparent 100%);
    z-index: 1;
}

.reservation-main-container::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.01) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
    height: 80px;
    overflow: visible !important;
}

@media (max-width: 768px) {
    .header {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .header {
        height: 60px;
    }
}

.navbar {
    padding: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    margin: 0;
    height: 80px;
    display: flex;
    align-items: center;
    overflow: visible !important;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(25, 47, 89, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
    width: 100%;
    margin: 0;
    padding: 0 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: visible !important;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    height: auto;
    min-width: auto;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 300px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.3) saturate(1.1) drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
    transition: all 0.4s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    margin: 0;
    padding: 0;
/* Removed vertical-align since it has no effect with display: block */
    display: block;
}

.logo:hover .logo-img {
    filter: brightness(1.4) contrast(1.4) saturate(1.2) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
    align-items: center;
    background: linear-gradient(135deg, #1a2a5a 0%, #0f1a3a 100%);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 8px 15px;
    border: 1px solid rgba(95, 221, 219, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 12px 20px;
    border-radius: 25px;
    background: transparent;
    overflow: hidden;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}



.nav-link:hover,
.nav-link.active {
    color: #5FDDDB;
    background: rgba(95, 221, 219, 0.1);
    box-shadow: 0 2px 8px rgba(95, 221, 219, 0.2);
}



/* Language and Currency Selector Styles */
.language-currency {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-left: 20px;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(95, 221, 219, 0.1), rgba(77, 208, 225, 0.08));
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(95, 221, 219, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 50px !important;
    width: 240px !important;
    flex-wrap: nowrap !important;
}

.language-currency:hover {
    background: linear-gradient(135deg, rgba(95, 221, 219, 0.15), rgba(77, 208, 225, 0.12));
    border-color: rgba(95, 221, 219, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Force horizontal layout */
.language-currency > * {
    flex-shrink: 0 !important;
    margin: 0 !important;
}

.language-currency .gtranslate_wrapper,
.language-currency .currency-selector {
    float: none !important;
    clear: none !important;
    display: inline-flex !important;
    vertical-align: middle !important;
}

.gtranslate_wrapper,
.currency-selector {
    position: relative;
    flex: 0 0 110px !important;
    width: 110px !important;
    height: 35px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* GTranslate Widget Styles */
.gtranslate_wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 110px !important;
    height: 35px !important;
}

.gtranslate_wrapper .gt_selector {
    width: 110px !important;
    height: 35px !important;
    background: rgba(25, 47, 89, 1.0);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: #ffffff;
    padding: 0 10px;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    appearance: none;
    outline: none;
}

.gtranslate_wrapper .gt_selector:hover {
    background: rgba(25, 47, 89, 0.8);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(25, 47, 89, 0.3);
}

.gtranslate_wrapper .gt_selector:focus {
    background: linear-gradient(135deg, #5FDDDB, #4dd0e1);
    color: #ffffff;
    border-color: rgba(95, 221, 219, 0.8);
    box-shadow: 0 0 0 3px rgba(95, 221, 219, 0.2);
}

/* Translation Quality Improvements */
.gtranslate_wrapper select {
    font-family: inherit;
    font-size: inherit;
}

/* Prevent translation of specific elements */
.notranslate {
    translate: no;
}

/* Improve translation appearance */
body.translated {
    font-family: inherit !important;
}

/* Fix translated text alignment */
.translated * {
    text-align: inherit !important;
    direction: inherit !important;
}

/* Preserve original styling after translation */
.translated h1, .translated h2, .translated h3, 
.translated h4, .translated h5, .translated h6 {
    font-family: 'Playfair Display', serif !important;
    font-weight: inherit !important;
}

.translated p, .translated span, .translated div {
    font-family: 'Inter', sans-serif !important;
}

/* Select elements styling for compatibility */
.gtranslate_wrapper select,
.currency-selector select {
    width: 100%;
    height: 40px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 2px solid rgba(95, 221, 219, 0.3);
    border-radius: 10px;
    color: #ffffff;
    padding: 0 15px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    appearance: none;
    text-align: center;
}

.gtranslate_wrapper select:hover,
.currency-selector select:hover {
    background: linear-gradient(135deg, #5FDDDB, #4dd0e1);
    color: #ffffff;
    border-color: rgba(95, 221, 219, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(95, 221, 219, 0.3);
}

.gtranslate_wrapper select:focus,
.currency-selector select:focus {
    background: linear-gradient(135deg, #5FDDDB, #4dd0e1);
    color: #ffffff;
    border-color: rgba(95, 221, 219, 0.8);
    box-shadow: 0 0 0 3px rgba(95, 221, 219, 0.2);
}

.gtranslate_wrapper select option,
.currency-selector select option {
    background-color: rgba(25, 47, 89, 1.0);
    color: #ffffff;
    padding: 10px;
    font-weight: 600;
}

/* Currency Dropdown Styles */
.currency-dropdown {
    position: relative;
    cursor: pointer;
    width: 110px !important;
    height: 35px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.selected-currency {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 110px !important;
    height: 35px !important;
    padding: 0 10px;
    background: rgba(25, 47, 89, 1.0);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    outline: none;
}

.selected-currency:hover {
    background: rgba(25, 47, 89, 0.8);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(25, 47, 89, 0.3);
}

.selected-currency:focus {
    background: linear-gradient(135deg, #5FDDDB, #4dd0e1);
    color: #ffffff;
    border-color: rgba(95, 221, 219, 0.8);
    box-shadow: 0 0 0 3px rgba(95, 221, 219, 0.2);
}

.selected-currency i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.selected-currency:hover i {
    transform: rotate(180deg);
}

.currency-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 110px !important;
    background: rgba(25, 47, 89, 1.0);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 9999 !important;
    display: none;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.currency-options.show {
    display: block;
}

.currency-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    color: #ffffff;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.currency-option:last-child {
    border-bottom: none;
}

.currency-option:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: scale(1.02);
}

/* Removed flag-icon styles as we're using GTranslate widget */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000;
    padding: 10px;
    position: relative;
}

/* Responsive styles for language and currency selectors */
@media (max-width: 992px) {
    .language-currency {
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .navbar {
        height: 70px;
        padding: 0 10px;
        width: 100%;
        max-width: 100vw;
    }
    
    .nav-container {
        padding: 0 10px;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }
    
    .logo-img {
        height: 280px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .language-currency {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px;
        margin-right: 10px;
        margin-left: 0;
        height: 40px !important;
        width: auto !important;
    }
    
    .gtranslate_wrapper,
    .currency-selector {
        min-width: 60px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .gtranslate_wrapper select,
    .currency-selector select {
        padding: 2px 15px 2px 6px;
        font-size: 11px;
        min-width: 60px;
        text-align: center;
    }
    
    .selected-language,
     .selected-currency {
         padding: 2px 6px;
         font-size: 11px;
         min-width: 60px;
         display: flex;
         align-items: center;
         justify-content: center;
     }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .navbar {
        height: 60px;
        padding: 0 5px;
        width: 100%;
        max-width: 100vw;
    }
    
    .nav-container {
        padding: 0 5px;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }
    
    .logo-img {
        height: 240px;
    }
    
    .language-currency {
        gap: 5px;
        margin-right: 5px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 35px !important;
    }
    
    .gtranslate_wrapper,
    .currency-selector {
        min-width: 50px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .gtranslate_wrapper select,
    .currency-selector select {
        padding: 1px 12px 1px 4px;
        font-size: 10px;
        min-width: 50px;
        text-align: center;
    }
    
    .selected-language,
     .selected-currency {
         padding: 1px 4px;
         font-size: 10px;
         min-width: 50px;
     }
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8e8e6;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, transparent 0%, rgba(25,47,89,0.3) 30%, rgba(25,47,89,0.7) 70%, rgba(25,47,89,0.95) 100%);
    z-index: 20;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    filter: brightness(0.9) contrast(1.1);
}

.hero-image.static {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 12;
}

.hero-content {
    position: relative;
    z-index: 13;
    text-align: center;
    color: #ffffff;
    width: 100%;
    padding: 0 20px;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
    animation: heroFadeIn 1.2s ease-out;
    position: relative;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, transparent, rgba(95, 221, 219, 0.1), transparent);
    border-radius: 20px;
    opacity: 0;
    animation: textGlow 4s ease-in-out 3s infinite;
}

@keyframes textGlow {
    0%, 100% {
        opacity: 0;
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: #ffffff;
    animation: titleSlideUp 1.5s ease-out 0.3s both;
    position: relative;
    overflow: hidden;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(95, 221, 219, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0.8);
    animation: titleGlow 4s ease-in-out 3s infinite;
    border-radius: 50%;
    filter: blur(20px);
}

@keyframes titleSlideUp {
    from {
        opacity: 0;
        transform: translateY(80px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes titleGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.title-line {
    display: block;
    margin-bottom: 10px;
}

.title-line.highlight {
    background: linear-gradient(45deg, #5FDDDB, #4dd0e1, #5FDDDB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    text-shadow: none;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 200% 0;
    }
    50% {
        background-position: -200% 0;
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    animation: subtitleFadeIn 1.8s ease-out 0.8s both;
    position: relative;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5FDDDB, #4dd0e1, #5FDDDB);
    transform: translateX(-50%);
    animation: underlineExpand 2s ease-out 1.5s both;
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes underlineExpand {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.feature-item i {
    color: #5FDDDB;
    font-size: 1.2rem;
}

.hero-description {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    animation: descriptionSlideIn 2s ease-out 1.2s both;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes descriptionSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: buttonsPopIn 2.2s ease-out 1.8s both;
}

@keyframes buttonsPopIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-btn {
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.hero-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.btn-primary {
    background: linear-gradient(45deg, #5FDDDB, #4ECDC4);
    color: #000;
    border: 2px solid transparent;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #4ECDC4, #5FDDDB);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(95, 221, 219, 0.4);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

/* Hero navigation and indicators removed for static image */

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 14;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.scroll-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .hero-features {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    /* Hero navigation buttons removed for static image */
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
}

/* Quick Reservation */
.quick-reservation {
    position: relative;
    z-index: 25;
    padding: 20px 0;
    background: rgba(25, 47, 89, 0.95);
    width: 90%;
    max-width: 1200px;
    margin: -100px auto 0;
    border-radius: 20px;
    backdrop-filter: none;
}

@media (max-width: 768px) {
    .quick-reservation {
        margin-top: 20px;
        width: 95%;
        z-index: 30;
        position: relative;
        padding: 10px;
        transform: none;
        left: auto;
        top: auto;
    }
}

.reservation-form-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: -100px auto 0;
    position: relative;
    z-index: 1000;
    background: rgba(25, 42, 86, 0.95);
    border: none;
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    color: white;
}

@media (max-width: 768px) {
    .reservation-form-wrapper {
        width: 100%;
        padding: 15px 0;
        border-radius: 15px;
        margin-top: -200px;
    }
}

.form-fields {
    display: flex;
    align-items: stretch;
    gap: 20px;
    width: 100%;
}

.field-container {
    flex: 1;
    position: relative;
    min-width: 0;
}

.passenger-field {
    display: flex;
    align-items: stretch;
    gap: 15px;
    width: 100%;
}

.input-wrapper {
    position: relative;
    width: 100%;
    flex: 1;
}

.field-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 16px;
    z-index: 3;
    pointer-events: none;
}

.form-input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #4a5a7a;
    border-radius: 12px;
    font-size: 16px;
    background: #1a2a56;
    color: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
    height: 50px;
}

.form-input:focus {
    outline: none;
    border-color: #5FDDDB;
    box-shadow: 0 0 0 3px rgba(95, 221, 219, 0.1);
}

.form-input::placeholder {
    color: #ffffff;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a2a56;
    border: 1px solid #4a5a7a;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 2px;
    color: white;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-option {
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #4a5a7a;
    color: white;
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option:hover {
    background-color: #2a3a66;
}

.passenger-dropdown {
    flex: 1;
    min-width: 280px;
    padding: 15px;
}

.passenger-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #4a5a7a;
}

.passenger-option:last-of-type {
    border-bottom: none;
    margin-bottom: 15px;
}

.passenger-label {
    font-weight: 500;
    color: white;
}

.counter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.counter-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #4a5a7a;
    background: #2a3a66;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.2s ease;
    color: white;
}

.counter-btn:hover {
    background: #3a4a76;
    border-color: #5FDDDB;
}

.counter-btn.minus {
    color: #dc3545;
}

.counter-btn.plus {
    color: #28a745;
}

.counter-value {
    min-width: 20px;
    text-align: center;
    font-weight: 500;
    color: white;
}

.apply-button {
    width: 100%;
    padding: 10px;
    background: #5FDDDB;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.apply-button:hover {
    background: #4ECDC4;
}

.search-button {
    flex: 1;
    padding: 0 25px;
    background: linear-gradient(45deg, #5FDDDB, #4ECDC4);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    white-space: nowrap;
    min-width: 120px;
}

.search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(95, 221, 219, 0.3);
}



/* Responsive Design */
@media (max-width: 768px) {
    .form-fields {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    
    .passenger-field {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-button {
        width: 100%;
        justify-content: center;
    }
    
    .passenger-dropdown {
        width: 100%;
    }
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 25px;
    text-shadow: none;
}

.form-steps {
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: center;
    width: 100%;
}

.step {
    flex: 1;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.5s ease;
    pointer-events: all;
    min-width: 0;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: #e0e0e0;
    z-index: 1;
}

.step.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.step h3 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .form-steps {
        flex-direction: column;
        gap: 15px;
    }
    
    .step {
        flex: none;
        width: 100%;
        opacity: 1;
        margin-bottom: 0;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .step h3 {
        color: #ffffff;
        font-size: 1rem;
        margin-bottom: 8px;
        font-weight: 600;
        text-align: left;
        display: block;
    }
    
    .input-group {
         height: auto;
         min-height: 50px;
         overflow: visible !important;
     }
    
    .reservation-form {
        padding: 20px 15px;
        border-radius: 20px;
    }
}

.input-group {
    position: relative;
    margin-bottom: 0;
    height: 50px;
}

.input-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    z-index: 2;
    font-size: 18px;
}

.input-group select,
.input-group input {
    width: 100%;
    padding: 15px 20px 15px 55px;
    background: transparent;
    border: none;
    border-radius: 0;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    height: 50px;
    box-sizing: border-box;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.person-selector {
    position: relative;
    width: 100%;
}

.person-selector input[type="text"] {
    width: 100%;
    padding: 15px 20px 15px 55px;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 50px;
    box-sizing: border-box;
}

.person-dropdown {
    position: fixed !important;
    background: rgba(25, 47, 89, 1.0) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 12px !important;
    padding: 20px !important;
    z-index: 9999999999 !important;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: none !important;
    min-width: 200px !important;
    height: auto !important;
    overflow: visible !important;
}

.person-dropdown.active {
    display: block;
}

.person-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: #ffffff;
    padding: 5px 0;
}

.person-option:last-of-type {
    margin-bottom: 15px;
}

.person-option span {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

.counter {
    display: flex;
    align-items: center;
    gap: 15px;
}

.counter-btn {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #333;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.counter-btn:hover {
    background: #5FDDDB;
    color: #333333;
    border-color: #5FDDDB;
}

.counter span {
    min-width: 30px;
    text-align: center;
    color: #333;
    font-weight: 600;
    font-size: 16px;
}

.apply-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #5FDDDB, #4ECDC4);
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-size: 14px;
}

.apply-btn:hover {
    background: linear-gradient(45deg, #4ECDC4, #5FDDDB);
    transform: translateY(-1px);
}

.input-group select:focus,
.input-group input:focus {
    outline: none;
    background: rgba(95, 221, 219, 0.05);
    color: #333;
}

.input-group select option {
    background: #ffffff;
    color: #333;
}

/* Search Dropdown Styles */
.search-dropdown {
    position: fixed !important;
    background: rgba(25, 47, 89, 1.0) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 12px !important;
    height: auto !important;
    overflow: visible !important;
    z-index: 999999999 !important;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: none !important;
}

.search-dropdown.show {
    display: block;
}

.search-option {
    padding: 15px 20px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
}

.search-option:last-child {
    border-bottom: none;
}

.search-option:hover,
.search-option.highlighted {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.search-option.hidden {
    display: none;
}

/* Reservation Page Styles */
.reservation-page {
    min-height: 100vh;
    padding-top: 0;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 50%, #1565c0 100%);
    color: #ffffff;
}

.reservation-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #1a2a5a 0%, #0f1a3a 100%);
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.2);
    display: none;
}

.reservation-header h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.route-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.route-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
}

.route-item i {
    color: #ffffff;
    font-size: 1.5rem;
}

.route-arrow {
    color: #ffffff;
    font-size: 1.5rem;
}

.passenger-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #cccccc;
    font-size: 1rem;
}

.passenger-info i {
    color: #ffffff;
    margin-right: 5px;
}

.no-routes {
    text-align: center;
    padding: 60px 20px;
}

.alert {
    background: linear-gradient(135deg, #1a2a5a 0%, #0f1a3a 100%);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    padding: 40px;
    color: #ffffff;
}

.alert i {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.alert h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.vehicle-selection {
    margin-bottom: 40px;
    background: linear-gradient(135deg, #1a2a5a 0%, #0f1a3a 100%);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(212,175,55,0.2);
}

.vehicle-selection h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .vehicles-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 20px;
        padding: 0 5px;
    }
}

@media (max-width: 480px) {
    .vehicles-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 15px;
        padding: 0;
    }
}

.vehicle-card {
    background: linear-gradient(135deg, #1a2a5a 0%, #0f1a3a 100%);
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 15px;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .vehicle-card {
        margin: 0 5px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .vehicle-card {
        margin: 0;
        border-radius: 10px;
    }
}

.vehicle-card:hover {
    transform: translateY(-5px);
    border-color: #000000;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.vehicle-card.selected {
    border-color: #000000;
    background: rgba(0,0,0,0.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.vehicle-image-slider {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 200px;
    background: #f8f9fa;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1;
    background: #f8f9fa;
    visibility: hidden;
}

.slide.active {
    opacity: 1;
    z-index: 2;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    background: #f8f9fa;
    display: block;
}

.vehicle-card:hover .slide img {
    transform: scale(1.05);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.slider-btn {
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    pointer-events: all;
    opacity: 0;
}

.vehicle-image-slider:hover .slider-btn {
    opacity: 1;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: white;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.vehicle-header {
    padding: 20px 25px 15px;
}

.vehicle-header h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.vehicle-model {
    color: #cccccc;
    font-size: 0.95rem;
    margin-bottom: 10px;
    font-style: italic;
}

.vehicle-capacity {
    display: flex;
    gap: 15px;
    margin-bottom: 0;
    color: #cccccc;
    font-size: 0.9rem;
}

.vehicle-capacity i {
    color: #ffffff;
    margin-right: 5px;
}

.vehicle-features {
    padding: 0 25px 15px;
    flex-grow: 1;
}

.vehicle-features h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.vehicle-features h4 i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    font-size: 13px;
    color: #ffffff;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.features-list li i {
    color: #28a745;
    margin-right: 8px;
    font-size: 12px;
    width: 12px;
    flex-shrink: 0;
}

.features-list li:last-child {
    margin-bottom: 0;
}

.vehicle-price {
    text-align: center;
    margin-bottom: 20px;
    padding: 0 25px;
}

.vehicle-price .price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.vehicle-price .price-note {
    color: #ffffff;
    font-size: 0.9rem;
}

.btn-select {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 12px;
    background: linear-gradient(45deg, #ffffff, #f8f9fa);
    border: none;
    border-radius: 8px;
    color: #000000 !important;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
    box-sizing: border-box;
}

.btn-select:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212,175,55,0.4);
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
}

/* Mobil görünümde araç seçimi butonu düzeltmesi */
@media (max-width: 768px) {
    .btn-select {
        width: calc(100% - 40px) !important;
        margin: 0 20px 20px !important;
        padding: 15px !important;
        font-size: 1rem !important;
        text-align: center !important;
        display: block !important;
        box-sizing: border-box !important;
    }
}

.reservation-form-section {
    background: linear-gradient(135deg, #1a2a5a 0%, #0f1a3a 100%);
    border-radius: 15px;
    padding: 35px;
    border: 1px solid rgba(212,175,55,0.2);
    margin-top: 40px;
}

.reservation-form-section h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    height: 52px;
    min-height: 52px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .reservation-form-section {
        padding: 25px 15px;
        margin-top: 20px;
        border-radius: 10px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        background: rgba(25, 47, 89, 0.8) !important;
        color: #ffffff !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .reservation-form-section h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}

.form-group textarea {
    height: auto;
    min-height: 120px;
    resize: vertical;
    padding: 15px 20px;
}

.form-help {
    font-size: 0.8rem;
    color: #ffffff;
    margin-top: 5px;
    font-style: italic;
}

/* Date and Time input specific styles */
.form-group input[type="date"],
.form-group input[type="time"] {
    cursor: pointer !important;
    position: relative !important;
    color-scheme: dark !important;
    width: 100% !important;
    padding: 15px 20px 15px 50px !important;
    height: 52px !important;
    min-height: 52px !important;
    max-height: 52px !important;
    box-sizing: border-box !important;
    background: rgba(25, 47, 89, 0.9) !important;
    border: 2px solid rgba(95, 221, 219, 0.3) !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
    line-height: 1.5 !important;
    vertical-align: top !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator,
.form-group input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(0.4) sepia(1) saturate(3) hue-rotate(160deg) brightness(1.5);
    opacity: 1;
    position: absolute;
    right: 0;
    top: 0;
    transform: none;
    width: 100% !important;
    height: 100% !important;
    margin: 0;
    padding: 0;
    z-index: 2;
    background: transparent;
}

.form-group input[type="date"]:focus,
.form-group input[type="time"]:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input[type="date"]::-webkit-datetime-edit,
.form-group input[type="time"]::-webkit-datetime-edit {
    cursor: pointer;
    width: 100%;
    height: 100%;
    padding: 0;
}

.form-group input[type="date"]::-webkit-datetime-edit-text,
.form-group input[type="date"]::-webkit-datetime-edit-month-field,
.form-group input[type="date"]::-webkit-datetime-edit-day-field,
.form-group input[type="date"]::-webkit-datetime-edit-year-field,
.form-group input[type="time"]::-webkit-datetime-edit-text,
.form-group input[type="time"]::-webkit-datetime-edit-hour-field,
.form-group input[type="time"]::-webkit-datetime-edit-minute-field {
    cursor: pointer;
}

.form-group input[type="date"]::-webkit-inner-spin-button,
.form-group input[type="time"]::-webkit-inner-spin-button {
    display: none;
}

.form-group input[type="date"]::-webkit-clear-button,
.form-group input[type="time"]::-webkit-clear-button {
    display: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    padding: 15px 20px;
}

/* Passenger Management Styles */
.passengers-section {
    margin-bottom: 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
}

@media (max-width: 768px) {
    .passengers-section {
        padding: 20px 15px;
        margin-bottom: 20px;
        border-radius: 12px;
    }
    
    .passengers-header h3 {
        font-size: 1.2rem;
    }
    
    .passengers-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .passengers-section {
        padding: 15px 10px;
        margin-bottom: 15px;
        border-radius: 10px;
    }
    
    .passengers-header h3 {
        font-size: 1.1rem;
    }
    
    .passengers-description {
        font-size: 12px;
    }
}

.passengers-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.3);
}

.passengers-header .passengers-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.passengers-description {
    color: #ffffff;
    font-size: 14px;
    margin: 0;
    font-style: italic;
}

.passengers-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
}

.btn-add-passenger {
    background: linear-gradient(45deg, #000000, #333333);
    color: #333333;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.btn-add-passenger:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0,0.4);
}

.passenger-item {
    background: linear-gradient(135deg, #1a2a5a 0%, #0f1a3a 100%);
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.passenger-item:hover {
    border-color: rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.05);
}

.passenger-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.2);
}

.passenger-header h4 {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.btn-remove-passenger {
    background: rgba(220,53,69,0.8);
    color: #333333;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-remove-passenger:hover {
    background: rgba(220,53,69,1);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(220,53,69,0.3);
}

.btn-remove-passenger i {
    font-size: 12px;
}

#passengers-container:empty::before {
    content: "Henüz yolcu eklenmedi. Yolcu eklemek için yukarıdaki butonu kullanın.";
    color: rgba(0, 0, 0,0.7);
    font-style: italic;
    display: block;
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.02);
    border: 2px dashed rgba(0,0,0,0.3);
    border-radius: 12px;
    font-size: 14px;
}

/* Vehicle Selection Toggle Styles */
.vehicle-selection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #1a2a5a 0%, #0f1a3a 100%);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(212,175,55,0.2);
}

.vehicle-selection-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vehicle-selection-header h2 {
    margin: 0;
}

.selected-vehicle-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.selected-vehicle-label {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.selected-vehicle-name {
    color: #ffffff;
    font-weight: 600;
    background: linear-gradient(135deg, #1a2a5a 0%, #0f1a3a 100%);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-toggle-vehicles {
    background: linear-gradient(45deg, #000000, #333333);
    color: #ffffff !important;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-toggle-vehicles:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0,0.4);
}

.btn-toggle-vehicles i {
    font-size: 12px;
}

@media (max-width: 768px) {
    .vehicle-selection-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Baggage Selection Styles */
.baggage-section {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0, 0, 0,0.2);
    border-radius: 15px;
    padding: 25px;
    margin-top: 25px;
    backdrop-filter: blur(10px);
}

.baggage-section h3 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px 0;
    text-align: center;
}

.baggage-description {
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.baggage-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.baggage-item {
    background: linear-gradient(135deg, #1a2a5a 0%, #0f1a3a 100%);
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.baggage-item:hover {
    border-color: rgba(0,0,0,0.5);
    transform: translateY(-2px);
}

.baggage-item label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.counter-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.counter-btn {
    background: #ffffff;
    color: #333;
    border: 1px solid #e0e0e0;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.counter-btn:hover {
    background: #5FDDDB;
    color: #333333;
    border-color: #5FDDDB;
}

.counter-group input {
    width: 60px;
    height: 45px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 8px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .baggage-options {
        grid-template-columns: 1fr;
    }
    
    .baggage-item {
        padding: 15px;
        margin-bottom: 10px;
    }
    
    .counter-group {
        gap: 8px;
    }
    
    .counter-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .counter-group input {
        width: 70px;
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .baggage-item {
        padding: 12px;
        margin-bottom: 8px;
    }
    
    .baggage-item label {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .counter-group {
        gap: 6px;
    }
    
    .counter-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .counter-group input {
        width: 60px;
        height: 35px;
        font-size: 13px;
    }
}

/* Extra Services Styles */
.extra-services-section {
    background: linear-gradient(135deg, #1a2a5a 0%, #0f1a3a 100%);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 15px;
    padding: 30px;
    margin-top: 25px;
    backdrop-filter: blur(10px);
}

.extra-services-section h3 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px 0;
    text-align: center;
}

.services-description {
    color: #ffffff;
    text-align: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

@media (max-width: 768px) {
    .extra-services-section {
        padding: 20px 15px;
        margin-top: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .extra-services-section h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .extra-services-section {
        padding: 15px 10px;
        margin-top: 15px;
    }
    
    .services-grid {
        gap: 10px;
    }
    
    .extra-services-section h3 {
        font-size: 18px;
    }
    
    .services-description {
        font-size: 13px;
    }
}

.service-item {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    gap: 15px;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Fleet Info Content Service Items */
.fleet-info-content .fleet-service-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 15px;
    transition: all 0.3s ease;
    gap: 15px;
    text-align: left;
}

.fleet-info-content .fleet-service-item:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.fleet-info-content .fleet-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5ce6fa 0%, #4dd0e1 100%);
    border-radius: 50%;
    margin: 0;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(92, 230, 250, 0.4);
}

.fleet-info-content .fleet-service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.fleet-info-content .fleet-service-icon:hover::before {
    transform: rotate(45deg) translateX(100%);
}

.fleet-info-content .fleet-service-icon i {
    font-size: 2rem;
    color: #000000;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.fleet-info-content .fleet-service-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(92, 230, 250, 0.6);
}

.fleet-info-content .fleet-service-icon:hover i {
    transform: scale(1.1);
    color: #000000;
}

.fleet-info-content .fleet-service-text {
    text-align: left;
    flex: 1;
}

.fleet-info-content .fleet-service-text h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.fleet-info-content .fleet-service-text p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.service-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    width: 100%;
}

.service-info i {
    font-size: 24px;
    color: #ffffff;
    min-width: 30px;
}

.service-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.service-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 3px;
}

.service-desc {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 4px;
}

.service-price {
    font-size: 0.85em;
    color: #e74c3c;
    font-weight: 600;
    display: block;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-item {
        padding: 15px;
    }
    
    .counter-group {
        width: 100%;
        justify-content: center;
    }
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: #5FDDDB;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(0, 0, 0,0.3);
    border-radius: 8px;
    color: #404040;
    font-size: 1rem;
    height: 48px;
    min-height: 48px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group textarea {
    height: auto;
    min-height: 100px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5FDDDB;
    background: rgba(95, 221, 219, 0.1);
    box-shadow: 0 0 15px rgba(95, 221, 219, 0.3);
    transform: translateY(-1px);
}

.reservation-summary {
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0,0.2);
}

.reservation-summary h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #ffffff;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid rgba(255,255,255,0.3);
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(45deg, #5FDDDB, #4ECDC4);
    color: #000000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(95, 221, 219, 0.4);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .reservation-header h1 {
        font-size: 2rem;
    }
    
    .route-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .route-arrow {
        transform: rotate(90deg);
    }
    
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

.btn-search {
    background: #5ce6fa;
    border: none;
    padding: 12px 40px;
    border-radius: 30px;
    color: #000000;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(92, 230, 250, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    height: 50px;
    min-width: 120px;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(92, 230, 250, 0.4);
    background: #4dd0e1;
}

.btn-search:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(95, 221, 219, 0.3);
}

.btn-search i {
    font-size: 18px;
}

/* Form navigation removed - button moved inline */

.btn-prev,
.btn-next {
    padding: 10px 20px;
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-submit {
    padding: 12px 25px;
    background: #FF9800;
    border: none;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-prev::before,
.btn-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #000000, #333333);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-prev:hover::before,
.btn-next:hover::before {
    left: 0;
}

.btn-prev:hover,
.btn-next:hover {
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0,0.3);
}

.btn-submit:hover {
    background: #F57C00;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
    display: none;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.step-item {
    text-align: center;
    position: relative;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.step-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.step-item:hover .step-circle {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(92, 230, 250, 0.4);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: #333333;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    border: 2px solid #000000;
    z-index: 2;
}

.step-icon {
    color: #000000;
    font-size: 40px;
    z-index: 1;
}

.step-content h3 {
    color: #000000;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.step-content p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for How It Works */
@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .step-circle {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    
    .step-icon {
        font-size: 32px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 16px;
        top: -8px;
        right: -8px;
    }
    
    .step-content h3 {
        font-size: 20px;
    }
    
    .step-content p {
        font-size: 14px;
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: rgba(25, 47, 89, 1.0);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-intro h3 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
}

.about-intro h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #5ce6fa 0%, #4dd0e1 100%);
    border-radius: 2px;
}

.about-description {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 20px 0;
    text-align: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    margin: 60px 0;
    padding: 0;
}

.stat-item {
    text-align: center;
    padding: 0;
    background: none;
    border: none;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 900;
    color: #5ce6fa;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(92, 230, 250, 0.3);
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #5ce6fa, #4dd0e1);
    border-radius: 2px;
    opacity: 0.7;
}

.stat-label {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    margin-top: 10px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-label {
    color: #ffffff;
    opacity: 1;
    transform: translateY(-2px);
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 4px 20px rgba(92, 230, 250, 0.5);
}





@media (max-width: 992px) {
    .about-content {
        gap: 50px;
    }
    
    .about-stats {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 30px;
        padding: 35px;
    }
    
    .about-features {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-content {
        gap: 40px;
        margin-top: 30px;
    }
    
    .about-intro h3 {
        font-size: 2.2rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 40px;
        margin: 40px 0;
        padding: 0;
    }
    
    .stat-item:hover {
        transform: translateY(-3px);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-number::after {
        width: 30px;
        height: 2px;
    }
    
    .stat-label {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    

    

}

/* Services Section */
.services {
    padding: 50px 0 100px 0;
    background: linear-gradient(135deg, #1a1a1a, #000000);
    position: relative;
    margin-top: -50px;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(0, 0, 0,0.1), transparent 50%);
}

/* Transfer Regions Section */
.transfer-regions {
    padding: 100px 0;
    background: rgba(25, 47, 89, 1.0);
    backdrop-filter: blur(15px);
    position: relative;
    margin-top: 0;
    z-index: 1 !important;
}

.transfer-regions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #5ce6fa;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #5ce6fa 0%, #4ecdc4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.section-title::before,
.section-title::after {
    content: '';
    width: 160px;
    height: 160px;
    background-image: url('../images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    opacity: 1.0;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3)) 
            drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2)) 
            drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
    transition: transform 0.3s ease;
}

.section-title::before:hover,
.section-title::after:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1.05);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.transfer-regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.service-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0,0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Transfer Card Styles */
.transfer-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0,0.2);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.transfer-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.5);
}

.location-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    margin-right: 15px;
}

.transfer-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.transfer-info h3 {
    color: #ffffff;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.price {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.view-all-btn {
    text-align: center;
    margin-top: 20px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255,255,255,0.2);
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-view-all i {
    margin-left: 10px;
}

.btn-view-all:hover {
    background-color: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.3);
}

.service-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.service-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Footer Minimal */
.footer-minimal {
    background: rgba(25, 47, 89, 1.0);
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 0;
    padding: 0;
}

.footer-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 20px 40px 40px 40px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    margin: 0;
}

.footer-logo {
    height: 300px;
    width: auto;
    object-fit: contain;
    margin: -100px 0 -60px 0;
    display: block;
}

.footer-tagline {
    color: #ffffff;
    font-size: 0.85rem;
    margin: 0;
    font-style: italic;
    font-weight: bold;
}

.footer-services h4,
.footer-contact h4,
.footer-social h4 {
    color: #5ce6fa;
    font-size: 1rem;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.footer-services li:before {
    content: '▸';
    color: #5ce6fa;
    position: absolute;
    left: 0;
    top: 0;
}

.footer-services li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: bold;
}

.footer-services li a:hover {
    color: #5ce6fa;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: bold;
}

.contact-item i {
    color: #5ce6fa;
    width: 16px;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-links-wrapper {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(92,230,250,0.1);
    border: 1px solid rgba(92,230,250,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5ce6fa;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #5ce6fa;
    color: #000000;
    border-color: #5ce6fa;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding: 15px 40px;
    background: rgba(0,0,0,0.5);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    margin: 0;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: bold;
}

.developer-info {
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: bold;
}

.developer-link {
    color: #5ce6fa;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.developer-link:hover {
    color: #4dd4e8;
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .footer-minimal {
        margin-top: 0 !important;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px !important;
        padding: 15px 20px 30px 20px !important;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
        margin-bottom: 20px;
    }
    
    .footer-logo {
        height: 220px !important;
        margin: -70px 0 -45px 0 !important;
        display: block !important;
    }
    
    .footer-tagline {
        font-size: 0.9rem !important;
        color: #000000 !important;
        margin-bottom: 0;
        font-weight: bold !important;
    }
    
    .footer-services,
    .footer-contact,
    .footer-social {
        margin-bottom: 25px;
    }
    
    .footer-services h4,
    .footer-contact h4,
    .footer-social h4 {
        font-size: 1.1rem !important;
        margin-bottom: 20px !important;
        color: #5ce6fa !important;
    }
    
    .footer-services ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .footer-services li {
        font-size: 0.9rem !important;
        margin-bottom: 0;
        padding-left: 0;
        text-align: center;
    }
    
    .footer-services li:before {
        display: none;
    }
    
    .contact-item {
        justify-content: center;
        font-size: 0.95rem !important;
        margin-bottom: 12px;
    }
    
    .contact-item i {
        font-size: 1rem !important;
        margin-right: 10px;
    }
    
    .social-links-wrapper {
        justify-content: center;
        gap: 15px !important;
    }
    
    .social-link {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        padding: 20px !important;
        margin-top: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 12px !important;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 0.9rem !important;
        line-height: 1.5;
        color: #ffffff !important;
        font-weight: bold !important;
    }
    
    .developer-info {
        font-size: 0.85rem !important;
        color: #ffffff !important;
        font-weight: bold !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, rgba(0,0,0,0.95), rgba(20,20,20,0.95));
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px 20px 20px 20px;
        transition: left 0.3s ease;
        z-index: 999;
        backdrop-filter: blur(10px);
        box-shadow: 0 0 20px rgba(0,0,0,0.3);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0 !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-menu .nav-link {
        color: #ffffff;
        font-size: 1.2rem;
        font-weight: 400;
        padding: 15px 20px;
        margin: 5px 0;
        text-align: left;
        width: 100%;
        background: transparent;
        border: none;
        transition: color 0.3s ease;
        text-decoration: none;
        display: block;
        box-sizing: border-box;
    }
    
    .nav-menu .nav-link:hover {
        color: #ffffff;
        background: linear-gradient(135deg, #5FDDDB, #4ECDC4);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(95, 221, 219, 0.3);
        border-color: rgba(95, 221, 219, 0.5);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    

    
    .form-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
        gap: 20px;
    }
    
    .section-title::before,
    .section-title::after {
        width: 120px;
        height: 120px;
        display: block;
    }
    
    .form-navigation {
        flex-direction: column;
    }
    
    .prev-btn,
    .next-btn {
        width: 40px;
        height: 40px;
    }
    
    .prev-btn {
        left: 20px;
    }
    
    .next-btn {
        right: 20px;
    }
    


    

    
    /* Mobil görünümde tarih ve saat input iconları */
    .form-group input[type="date"]::-webkit-calendar-picker-indicator,
    .form-group input[type="time"]::-webkit-calendar-picker-indicator {
        filter: invert(0.4) sepia(1) saturate(3) hue-rotate(160deg) brightness(1.5) !important;
    }
    
    /* Mobil görünümde tarih ve saat input alanları için agresif kurallar */
    .form-group input[type="date"],
    .form-group input[type="time"] {
        height: 50px !important;
        min-height: 50px !important;
        max-height: 50px !important;
        padding: 15px 15px 15px 50px !important;
        line-height: 1.5 !important;
        font-size: 1rem !important;
        box-sizing: border-box !important;
        background: rgba(25, 47, 89, 0.95) !important;
        border: 2px solid rgba(95, 221, 219, 0.3) !important;
        border-radius: 10px !important;
        color: #ffffff !important;
        color-scheme: dark !important;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
    }
    

    
    .person-with-button {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .inline-next {
        width: 100%;
        margin-top: 10px;
        background: #000000;
        color: #000;
        font-weight: 600;
        border: none;
        border-radius: 8px;
        padding: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }
    
    .inline-next:hover {
        background: #000000;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .quick-reservation {
        margin-top: -100px;
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
        gap: 15px;
    }
    
    .section-title::before,
    .section-title::after {
        width: 80px;
        height: 80px;
        display: block;
    }
    
    .form-group input,
    .form-group textarea {
        border: 2px solid rgba(95, 221, 219, 0.7);
        border-radius: 6px;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        border: 2px solid #5FDDDB;
        box-shadow: 0 0 8px rgba(95, 221, 219, 0.5);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0,0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0,0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Person selector with inline button */
.person-with-button {
    display: flex;
    align-items: center;
    gap: 15px;
}

.person-with-button .person-selector {
    flex: 1;
}

.person-with-button .btn-search {
    flex-shrink: 0;
    margin: 0;
}

.inline-next {
    background: linear-gradient(135deg, #000000, #333333);
    color: #1a1a1a;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 80px;
}

.inline-next:hover {
    background: linear-gradient(135deg, #333333, #000000);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .person-with-button {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .person-with-button .person-selector {
        width: 100%;
    }
    
    .person-with-button .btn-search {
        width: 100%;
        margin: 0;
        justify-content: center;
    }
    
    .inline-next {
        width: 100%;
        min-width: auto;
    }
    
    .phone-input {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .phone-input select {
        min-width: auto;
        width: 100%;
        background: rgba(25, 47, 89, 0.8);
        color: #ffffff;
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .phone-input select option {
        background: rgba(25, 47, 89, 0.95) !important;
        color: #ffffff !important;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    

}

/* Reservation form styles */
.reservation-form-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 1rem auto 0;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .reservation-form-container {
        background: rgba(25, 47, 89, 0.95) !important;
        color: #ffffff !important;
    }
}

.reservation-form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group.phone-group {
    grid-column: 1 / -1;
}

.phone-input {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.phone-input select {
    min-width: 120px;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    height: 52px;
    min-height: 52px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .phone-input select {
        background: rgba(25, 47, 89, 0.8) !important;
        color: #ffffff !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
    }
}

.phone-input select:focus {
    outline: none;
    border-color: #ffffff;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
}

.phone-input select:hover {
    border-color: rgba(212,175,55,0.5);
    background: #ffffff;
}

.phone-input select option {
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: #333333 !important;
    padding: 8px;
    border: none;
}

.phone-input select option:hover {
    background: rgba(212,175,55,0.1) !important;
    background-color: rgba(212,175,55,0.1) !important;
}

.phone-input select option:checked {
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: #333333 !important;
}

.phone-input select option:selected {
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: #333333 !important;
}

.phone-input input {
    flex: 1;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group.phone-group {
        grid-column: 1;
    }
    
    .phone-input {
        flex-direction: column;
    }
    
    .phone-input select {
        min-width: auto;
    }
}

/* Rezervasyon Sorgulama Sayfası */
.reservation-search-section {
    background: #000000;
    padding: 120px 0 80px;
    min-height: 100vh;
}

.reservation-search-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.reservation-search-section .section-title {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.reservation-search-section .section-subtitle {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.search-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.reservation-search-form .form-group {
    margin-bottom: 2rem;
    text-align: left;
}

.reservation-search-form label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.reservation-search-form input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    color: #333333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.reservation-search-form input:focus {
    outline: none;
    border-color: #000000;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.reservation-search-form input::placeholder {
    color: #ffffff;
}

.reservation-search-form .btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    color: #000000;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.reservation-search-form .btn:hover {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

/* Alert Messages */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b7a;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #51cf66;
}

/* Rezervasyon Detayları */
.reservation-details {
    margin-top: 3rem;
}

.reservation-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: left;
}

.reservation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.reservation-header h2 {
    color: #000000;
    font-size: 1.8rem;
    margin: 0;
}

.reservation-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: rgba(64, 64, 64, 0.2);
    color: #404040;
    border: 1px solid rgba(64, 64, 64, 0.3);
}

.status-confirmed {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-completed {
    background: rgba(23, 162, 184, 0.2);
    color: #17a2b8;
    border: 1px solid rgba(23, 162, 184, 0.3);
}

.status-cancelled {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.reservation-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item.full-width {
    grid-column: 1 / -1;
}

.info-item i {
    color: #ffffff;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.info-item div {
    flex: 1;
}

.info-item label {
    display: block;
    color: #999999;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.info-item span {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
}

.price-item .price {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Route Info */
.route-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    margin: 1rem 0;
}

.route-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
}

.route-arrow {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0 1rem;
}

.from-marker {
    color: #28a745;
}

.to-marker {
    color: #dc3545;
}

/* Vehicle Selection Styles */
.vehicle-selection {
    margin-bottom: 40px;
}

.vehicle-selection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.vehicle-selection-title h2 {
    color: #ffffff;
    font-size: 2rem;
    margin: 0;
    font-weight: 600;
}

.selected-vehicle-info {
    margin-top: 10px;
}

.selected-vehicle-label {
    color: #cccccc;
    font-size: 0.9rem;
    margin-right: 10px;
}

.selected-vehicle-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-toggle-vehicles {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    color: #000000 !important;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-toggle-vehicles:hover {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.4);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.vehicle-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.vehicle-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.vehicle-card.selected {
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
}

.vehicle-image-slider {
    position: relative;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
}

.slider-btn {
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

.vehicle-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.vehicle-capacity {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.vehicle-capacity span {
    color: #cccccc;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.vehicle-capacity i {
    color: #ffffff;
}

.vehicle-features {
    margin-bottom: 20px;
}

.vehicle-features h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.features-list i {
    color: #28a745;
    font-size: 0.8rem;
}

.vehicle-price {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.vehicle-price .price {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.vehicle-price .price-note {
    color: #cccccc;
    font-size: 0.9rem;
    margin-top: 5px;
}

.btn-select {
    width: 100%;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    color: #000000;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-select:hover {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* No Routes Alert */
.no-routes {
    text-align: center;
    padding: 60px 20px;
}

.alert {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.alert-warning {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.alert i {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
}

.alert h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.alert p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Rezervasyon Sorgulama Responsive */
@media (max-width: 768px) {
    .reservation-search-section {
        padding: 100px 0 60px;
    }
    
    .reservation-search-section .section-title {
        font-size: 2rem;
    }
    
    .form-group input,
    .form-group textarea {
        border: 2px solid rgba(95, 221, 219, 0.6);
        border-radius: 8px;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        border: 2px solid #5FDDDB;
        box-shadow: 0 0 10px rgba(95, 221, 219, 0.4);
    }
    
    .search-form-container,
    .reservation-card {
        padding: 1.5rem;
    }
    
    .info-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .reservation-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .route-info {
        flex-direction: column;
        text-align: center;
    }
    
    .route-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    .vehicle-selection-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}



.form-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.form-section h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 i {
    color: #D4AF37;
    font-size: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 12px 15px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #ffffff;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Passenger Section */
.passenger-section {
    margin-bottom: 30px;
}

.passenger-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.passenger-count {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-add-passenger {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #ffffff;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.btn-add-passenger:hover {
    background: linear-gradient(135deg, #20c997, #28a745);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.passenger-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    position: relative;
}

.passenger-header-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.passenger-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.btn-remove-passenger {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: #ffffff;
    border: none;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-remove-passenger:hover {
    background: linear-gradient(135deg, #c82333, #dc3545);
    transform: scale(1.05);
}

/* Baggage Section */
.baggage-section {
    margin-bottom: 30px;
}

.baggage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.baggage-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.baggage-item:hover {
    border-color: rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

.baggage-icon {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 15px;
}

.baggage-title {
    color: #000000;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.baggage-price {
    color: #333333;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.baggage-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.btn-baggage {
    background: linear-gradient(135deg, #000000, #333333);
    color: #000000;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-baggage:hover {
    background: linear-gradient(135deg, #333333, #000000);
    transform: scale(1.1);
}

.baggage-count {
    color: #000000;
    font-weight: 600;
    font-size: 1.2rem;
    min-width: 30px;
    text-align: center;
}

/* Extra Services Section */
.services-section {
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.service-item:hover {
    border-color: rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.service-info h4 {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.service-info p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.service-price {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    text-align: right;
}

.service-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-quantity {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-service {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    color: #000000;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-service:hover {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    transform: scale(1.1);
}

.service-count {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    min-width: 25px;
    text-align: center;
}

.service-total {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Reservation Summary */
.reservation-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 100px;
}

.summary-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.summary-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
    margin-top: 15px;
    padding-top: 20px;
    border-top: 2px solid rgba(0, 0, 0, 0.3);
}

.summary-label {
    color: #cccccc;
    font-size: 0.95rem;
}

.summary-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.summary-total .summary-label {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
}

.summary-total .summary-value {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
}

.currency-selector {
    margin-top: 20px;
    text-align: center;
}

.currency-selector label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.currency-selector select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 8px 15px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-back {
    background: rgba(108, 117, 125, 0.8);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-back:hover {
    background: rgba(108, 117, 125, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

.btn-complete {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-complete:hover {
    background: linear-gradient(135deg, #20c997, #28a745);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.btn-complete:disabled {
    background: rgba(108, 117, 125, 0.5);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Loading and Error States */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content {
    text-align: center;
    color: #ffffff;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-message {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 10px;
    padding: 15px;
    color: #dc3545;
    margin-bottom: 20px;
    display: none;
}

.success-message {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 10px;
    padding: 15px;
    color: #28a745;
    margin-bottom: 20px;
    display: none;
}

/* Responsive Design for Reservation Form */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .baggage-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-back,
    .btn-complete {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .reservation-summary {
        position: static;
        margin-bottom: 30px;
    }
    
    .passenger-header,
    .service-controls {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .service-quantity {
        justify-content: center;
    }
}

/* Hero Text Overlay */
.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    z-index: 10;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-align: left;
    width: 80%;
    max-width: 1200px;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-text-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.8rem;
    font-weight: 900;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 20%, #e9ecef 40%, #dee2e6 60%, #ced4da 80%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.1;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.6), 0 0 80px rgba(0, 0, 0, 0.3), 0 0 120px rgba(0, 0, 0, 0.1);
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: elegantFadeIn 1.5s ease-out 0.5s forwards, subtleGlow 3s ease-in-out 2s infinite alternate;
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-text-overlay h1:hover {
    transform: translateY(-5px) scale(1.02);
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.7), 0 0 80px rgba(0, 0, 0, 0.4);
}

@keyframes elegantFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes subtleGlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.hero-text-overlay .subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 25px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.1);
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: subtitleFadeIn 1.2s ease-out 1.8s forwards;
    transition: all 0.3s ease;
}

.hero-text-overlay .subtitle:hover {
    transform: translateY(-3px);
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.3);
}

@keyframes subtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

/* Mini Slider Styles - Circular Carousel */
.slider-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.mini-slider-container {
    display: block;
    position: relative;
    width: 55%;
    max-width: 700px;
    height: 450px;
    background: rgba(25, 47, 89, 1.0);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 0 10px;
    z-index: 1 !important;
    border: none;
    overflow: visible;
    flex-shrink: 0;
}

.services-content {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 30px 20px;
    margin-left: 20px;
}

/* Mini Slider Service Items - Separate from Extra Services */
.services-content .mini-service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
}

.services-content .mini-service-item:hover {
    transform: translateX(5px);
}

/* Mini Slider Service Icon - Separate from Extra Services */
.services-content .mini-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #5ce6fa 0%, #4dd0e1 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(92, 230, 250, 0.4);
    position: relative;
    overflow: hidden;
}

.services-content .mini-service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.services-content .mini-service-icon:hover::before {
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.services-content .mini-service-icon i {
    font-size: 28px;
    color: #ffffff;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.services-content .mini-service-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 170, 0.5);
}

.services-content .mini-service-icon:hover i {
    transform: scale(1.1);
}

/* Mini Slider Service Text - Separate from Extra Services */
.services-content .mini-service-text {
    flex: 1;
}

.services-content .mini-service-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.services-content .mini-service-text p {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .slider-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .mini-slider-container {
        width: 100%;
        max-width: 100%;
    }
    
    .services-content {
        width: 100%;
        gap: 30px;
    }
    
    .services-content .mini-service-item {
        gap: 15px;
    }
    
    .services-content .mini-service-icon {
        width: 60px;
        height: 60px;
    }
    
    .services-content .mini-service-icon i {
        font-size: 24px;
    }
    
    .services-content .mini-service-text h3 {
        font-size: 18px;
    }
    
    .services-content .mini-service-text p {
        font-size: 13px;
    }
    
    /* Fleet Info Content Responsive */
    .fleet-info-content .fleet-service-item {
        gap: 12px;
        padding: 10px;
    }
    
    .fleet-info-content .fleet-service-icon {
        width: 50px;
        height: 50px;
    }
    
    .fleet-info-content .fleet-service-icon i {
        font-size: 1.5rem;
    }
    
    .fleet-info-content .fleet-service-text h3 {
        font-size: 1.1rem;
    }
    
    .fleet-info-content .fleet-service-text p {
        font-size: 0.85rem;
    }
}

.mini-slider {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    background: rgba(25, 47, 89, 1.0);
    backdrop-filter: blur(15px);
}

.mini-slide {
    position: absolute;
    width: 400px;
    height: 250px;
    transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
}

.mini-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.mini-slide:hover img {
    transform: scale(1.05);
}

/* Circular positioning for slides */
.mini-slide:nth-child(1) {
    transform: translateX(0) translateZ(0) scale(1.2);
    z-index: 5 !important;
    opacity: 1;
}

.mini-slide:nth-child(2) {
    transform: translateX(250px) translateZ(-100px) scale(0.9);
    z-index: 4 !important;
    opacity: 0.8;
}

.mini-slide:nth-child(3) {
    transform: translateX(400px) translateZ(-200px) scale(0.7);
    z-index: 3 !important;
    opacity: 0.6;
}

.mini-slide:nth-child(4) {
    transform: translateX(-250px) translateZ(-100px) scale(0.9);
    z-index: 4 !important;
    opacity: 0.8;
}

.mini-slide:nth-child(5) {
    transform: translateX(-400px) translateZ(-200px) scale(0.7);
    z-index: 3 !important;
    opacity: 0.6;
}

/* Active slide styling */
.mini-slide.active {
    transform: translateX(0) translateZ(0) scale(1.2);
    z-index: 5 !important;
    opacity: 1;
    box-shadow: 0 15px 40px rgba(95, 221, 219, 0.4);
}

.mini-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    pointer-events: none;
    z-index: 10;
}

.mini-slider-nav button {
    background: linear-gradient(135deg, rgba(95, 221, 219, 0.9), rgba(95, 221, 219, 0.7));
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(95, 221, 219, 0.3);
}

.mini-slider-nav button:hover {
    background: linear-gradient(135deg, rgba(95, 221, 219, 1), rgba(95, 221, 219, 0.9));
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(95, 221, 219, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
}

.mini-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(95, 221, 219, 0.3);
}

.mini-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.mini-dot.active {
    background: #5FDDDB;
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 15px rgba(95, 221, 219, 0.6);
}

.mini-dot:hover {
    background: rgba(95, 221, 219, 0.8);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Mobile responsive for mini slider */
@media (max-width: 768px) {
    .hero-text-overlay {
        top: 20%;
        left: 20px;
        transform: translateY(-50%);
        text-align: left;
        width: calc(100% - 40px);
        max-width: none;
        padding: 0 15px;
    }
    
    .hero-text-overlay h1 {
        font-size: 3.2rem;
        letter-spacing: 3px;
        text-shadow: 0 0 30px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 0, 0, 0.2), 0 0 90px rgba(0, 0, 0, 0.1);
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3)) drop-shadow(0 1px 6px rgba(0, 0, 0, 0.2));
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-text-overlay .subtitle {
        font-size: 1.5rem;
        letter-spacing: 4px;
        text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5), 0 1px 6px rgba(0, 0, 0, 0.7), 0 0 15px rgba(255, 255, 255, 0.1);
    }
    
    .slider-content-wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 20px 15px;
    }
    
    .services-content {
        width: 100%;
        gap: 15px;
        margin-left: 0;
        padding: 20px 10px;
        order: 2;
    }
    
    .services-content .mini-service-item {
        gap: 15px;
        padding: 15px;
        background: rgba(25, 47, 89, 0.95) !important;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 10px;
        color: #ffffff !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
    }
    
    .services-content .mini-service-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }
    
    .services-content .mini-service-icon i {
        font-size: 20px;
    }
    
    .services-content .mini-service-text h3 {
        font-size: 16px;
        margin-bottom: 5px;
        color: #ffffff !important;
    }
    
    .services-content .mini-service-text p {
        font-size: 13px;
        line-height: 1.4;
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .mini-slider-container {
        width: 100%;
        max-width: 100%;
        height: 280px;
        padding: 0 5px;
        background: rgba(25, 47, 89, 1.0);
        backdrop-filter: blur(15px);
        border: none;
        order: 1;
    }
    
    .mini-slider {
        height: 280px;
        border-radius: 15px;
        overflow: visible;
        perspective: 800px;
        background: rgba(25, 47, 89, 1.0);
        backdrop-filter: blur(15px);
    }
    
    .mini-slide {
        width: 280px;
        height: 180px;
    }
    
    .mini-slide:nth-child(1) {
        transform: translateX(0) translateZ(0) scale(1.1);
        z-index: 5;
        opacity: 1;
    }
    
    .mini-slide:nth-child(2) {
        transform: translateX(200px) translateZ(-80px) scale(0.8);
        z-index: 4;
        opacity: 0.7;
    }
    
    .mini-slide:nth-child(3) {
        transform: translateX(320px) translateZ(-150px) scale(0.6);
        z-index: 3;
        opacity: 0.5;
    }
    
    .mini-slide:nth-child(4) {
        transform: translateX(-200px) translateZ(-80px) scale(0.8);
        z-index: 4;
        opacity: 0.7;
    }
    
    .mini-slide:nth-child(5) {
        transform: translateX(-320px) translateZ(-150px) scale(0.6);
        z-index: 3;
        opacity: 0.5;
    }
    
    .mini-slider-nav {
        bottom: 15px;
    }
    
    .mini-slider-nav button {
        width: 35px;
        height: 35px;
        font-size: 16px;
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .mini-slider-dots {
        bottom: -25px;
    }
    
    .mini-dot {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
}

@media (max-width: 480px) {
    .hero-text-overlay {
        top: 20%;
        left: 15px;
        transform: translateY(-50%);
        text-align: left;
        width: calc(100% - 30px);
        padding: 0 10px;
    }
    
    .hero-text-overlay h1 {
        font-size: 2.8rem;
        letter-spacing: 2px;
        text-shadow: 0 0 25px rgba(0, 0, 0, 0.4), 0 0 50px rgba(0, 0, 0, 0.2), 0 0 75px rgba(0, 0, 0, 0.1);
        filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.3)) drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-text-overlay .subtitle {
        font-size: 1.4rem;
        letter-spacing: 3px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 1px 5px rgba(0, 0, 0, 0.7), 0 0 12px rgba(255, 255, 255, 0.1);
    }
    
    .slider-content-wrapper {
        padding: 15px 10px;
        gap: 25px;
    }
    
    .services-content {
        padding: 15px 5px;
        gap: 12px;
    }
    
    .services-content .mini-service-item {
        padding: 12px;
        gap: 12px;
    }
    
    .services-content .mini-service-icon {
        width: 45px;
        height: 45px;
        border-radius: 10px;
    }
    
    .services-content .mini-service-icon i {
        font-size: 18px;
    }
    
    .services-content .mini-service-text h3 {
        font-size: 15px;
    }
    
    .services-content .mini-service-text p {
        font-size: 12px;
    }
    
    .mini-slider-container {
        width: 100%;
        height: 250px;
        padding: 0 5px;
        background: rgba(25, 47, 89, 1.0);
        backdrop-filter: blur(15px);
        border: none;
    }
    
    .mini-slider {
        height: 250px;
        border-radius: 12px;
        overflow: visible;
        perspective: 600px;
        background: rgba(25, 47, 89, 1.0);
        backdrop-filter: blur(15px);
    }
    
    .mini-slide {
        width: 240px;
        height: 150px;
    }
    
    .mini-slide:nth-child(1) {
        transform: translateX(0) translateZ(0) scale(1.0);
        z-index: 5;
        opacity: 1;
    }
    
    .mini-slide:nth-child(2) {
        transform: translateX(160px) translateZ(-60px) scale(0.75);
        z-index: 4;
        opacity: 0.6;
    }
    
    .mini-slide:nth-child(3) {
        transform: translateX(250px) translateZ(-120px) scale(0.55);
        z-index: 3;
        opacity: 0.4;
    }
    
    .mini-slide:nth-child(4) {
        transform: translateX(-160px) translateZ(-60px) scale(0.75);
        z-index: 4;
        opacity: 0.6;
    }
    
    .mini-slide:nth-child(5) {
        transform: translateX(-250px) translateZ(-120px) scale(0.55);
        z-index: 3;
        opacity: 0.4;
    }
    
    .mini-slider-nav button {
        width: 30px;
        height: 30px;
        font-size: 14px;
        background: rgba(0, 0, 0, 0.8);
    }
    
    .mini-dot {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
}

/* Vehicle Fleet Section */
.vehicle-fleet-section {
    padding: 100px 0;
    background: rgba(25, 47, 89, 1.0);
    position: relative;
}

.vehicle-fleet-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.fleet-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.fleet-grid {
    display: block;
    position: relative;
    width: 55%;
    max-width: 700px;
    height: 450px;
    background: transparent;
    border-radius: 15px;
    padding: 0 10px;
    z-index: 1;
    backdrop-filter: none;
    border: none;
    overflow: visible;
    flex-shrink: 0;
}

.fleet-slider {
    position: relative;
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.fleet-info-content {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 30px 20px;
    margin-left: 20px;
}

.fleet-item {
    position: absolute;
    width: 320px;
    height: 420px;
    transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 4px 15px rgba(92, 230, 250, 0.1);
    cursor: pointer;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    border: 2px solid rgba(92, 230, 250, 0.15);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .fleet-item {
        background: linear-gradient(135deg, rgba(25, 47, 89, 0.95) 0%, rgba(35, 57, 99, 0.90) 100%) !important;
        color: #ffffff !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
    }
}

.fleet-item:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 50px rgba(92, 230, 250, 0.25), 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(92, 230, 250, 0.3);
}

.fleet-item:nth-child(1) {
    transform: translateX(0) translateZ(0) scale(1.2);
    z-index: 5;
    opacity: 1;
}

.fleet-item:nth-child(2) {
    transform: translateX(250px) translateZ(-100px) scale(0.9);
    z-index: 4;
    opacity: 0.8;
}

.fleet-item:nth-child(3) {
    transform: translateX(400px) translateZ(-200px) scale(0.7);
    z-index: 3;
    opacity: 0.6;
}

.fleet-item:nth-child(4) {
    transform: translateX(-250px) translateZ(-100px) scale(0.9);
    z-index: 4;
    opacity: 0.8;
}

.fleet-item:nth-child(5) {
    transform: translateX(-400px) translateZ(-200px) scale(0.7);
    z-index: 3;
    opacity: 0.6;
}

.fleet-item.active {
    transform: translateX(0) translateZ(0) scale(1.2);
    z-index: 5;
    opacity: 1;
    box-shadow: 0 25px 60px rgba(92, 230, 250, 0.3), 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(92, 230, 250, 0.4);
}

.fleet-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
    border-radius: 25px 25px 0 0;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 25px 25px 0 0;
}

.fleet-item:hover .fleet-image img {
    transform: scale(1.08);
}

.fleet-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(92, 230, 250, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.fleet-item:hover .fleet-image::after {
    opacity: 1;
}

.fleet-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(92, 230, 250, 0.1) 0%, rgba(248, 250, 252, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5ce6fa;
    font-size: 2.8rem;
    border-radius: 25px 25px 0 0;
    text-shadow: 0 2px 4px rgba(92, 230, 250, 0.3);
}

.fleet-info {
    padding: 25px;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(25, 47, 89, 1.0);
    backdrop-filter: blur(5px);
}

.fleet-category {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.fleet-name {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.2);
}

.fleet-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.fleet-capacity,
.fleet-features {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 2px 0;
}

.fleet-capacity i,
.fleet-features i {
    color: #5ce6fa;
    width: 14px;
    text-align: center;
}

.fleet-features span {
    line-height: 1.3;
}

.fleet-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: none;
    justify-content: space-between;
    padding: 0 40px;
    pointer-events: none;
    z-index: 10;
}

.fleet-slider-nav button {
    background: linear-gradient(135deg, rgba(92, 230, 250, 0.9), rgba(92, 230, 250, 0.7));
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(92, 230, 250, 0.3);
}

.fleet-slider-nav button:hover {
    background: linear-gradient(135deg, rgba(92, 230, 250, 1), rgba(92, 230, 250, 0.9));
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(92, 230, 250, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
}

.fleet-slider-dots {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 230, 250, 0.3);
}

.fleet-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.fleet-dot.active {
    background: #5ce6fa;
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 15px rgba(92, 230, 250, 0.6);
}

.fleet-dot:hover {
    background: rgba(92, 230, 250, 0.8);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.video-container {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.video-container:hover {
    transform: scale(1.02);
    border-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px;
    text-align: center;
}

.video-placeholder i {
    font-size: 4rem;
    color: #000000;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.video-placeholder:hover i {
    transform: scale(1.1);
    color: #F4D03F;
}

.video-placeholder h4 {
    color: #000000;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.video-placeholder p {
    color: #cccccc;
    margin-bottom: 25px;
    line-height: 1.5;
}

.play-video-btn {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.play-video-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.wifi-info {
    margin-top: 0;
}

.wifi-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 280px;
}

.wifi-card:hover {
    border-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wifi-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.wifi-content h3 {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.wifi-content > p {
    color: #cccccc;
    margin-bottom: 25px;
    line-height: 1.6;
}

.wifi-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.wifi-network,
.wifi-whatsapp {
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border-left: 3px solid #000000;
    color: #333333;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.wifi-network:hover,
.wifi-whatsapp:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.wifi-network strong,
.wifi-whatsapp strong {
    color: #000000;
    margin-right: 10px;
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    margin: 5% auto;
    padding: 0;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #000000;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
}

.close-modal:hover {
    color: #333333;
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.modal-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.modal-header h3 {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.modal-body {
    padding: 40px 30px;
}

.video-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-iframe-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(0, 0, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 13px;
}

/* Modal Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        max-height: 80vh;
    }
    
    .modal-header {
        padding: 20px 25px;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 30px 25px;
    }
    
    .video-iframe-container {
        border-radius: 10px;
        border-width: 1px;
    }
    
    .video-iframe-container iframe {
        border-radius: 9px;
    }
    
    .close-modal {
        top: 10px;
        right: 15px;
        font-size: 30px;
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 15% auto;
        width: 98%;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-body {
        padding: 25px 20px;
    }
    
    .video-iframe-container {
        border-radius: 8px;
        border-width: 1px;
    }
    
    .video-iframe-container iframe {
        border-radius: 7px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .fleet-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .fleet-grid {
        width: 100%;
        max-width: 100%;
        height: 350px;
        overflow: visible;
    }
    
    .fleet-slider {
        height: 350px;
        overflow: visible;
        perspective: 800px;
    }
    
    .fleet-item {
        width: 200px;
        height: 320px;
    }
    
    .fleet-item:nth-child(1) {
        transform: translateX(0) translateZ(0) scale(1.1);
        z-index: 5;
        opacity: 1;
    }
    
    .fleet-item:nth-child(2) {
        transform: translateX(200px) translateZ(-80px) scale(0.8);
        z-index: 4;
        opacity: 0.7;
    }
    
    .fleet-item:nth-child(3) {
        transform: translateX(320px) translateZ(-150px) scale(0.6);
        z-index: 3;
        opacity: 0.5;
    }
    
    .fleet-item:nth-child(4) {
        transform: translateX(-200px) translateZ(-80px) scale(0.8);
        z-index: 4;
        opacity: 0.7;
    }
    
    .fleet-item:nth-child(5) {
        transform: translateX(-320px) translateZ(-150px) scale(0.6);
        z-index: 3;
        opacity: 0.5;
    }
    
    .fleet-image {
        height: 180px;
    }
    
    .fleet-info {
        padding: 15px;
        height: auto;
        min-height: 140px;
        backdrop-filter: none;
    }
    
    .fleet-category {
        font-size: 0.85rem;
        margin-bottom: 5px;
        text-shadow: none;
    }
    
    .fleet-name {
        font-size: 1.1rem;
        margin-bottom: 8px;
        text-shadow: none;
    }
    
    .fleet-capacity,
    .fleet-features {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .fleet-info-content {
        width: 100%;
        gap: 30px;
        margin-left: 0;
    }
    
    .fleet-slider-nav button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .fleet-dot {
        width: 12px;
        height: 12px;
    }
    
    .video-container {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .video-placeholder {
        padding: 25px 20px;
    }
    
    .video-placeholder i {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }
    
    .video-placeholder h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .video-placeholder p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .play-video-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .wifi-card {
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
        text-align: center;
        min-height: auto;
    }
    
    .wifi-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin: 0 auto;
    }
    
    .wifi-content h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .wifi-content > p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .wifi-contact {
        gap: 15px;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .vehicle-fleet-section {
        padding: 60px 0;
    }
    
    .fleet-grid {
        height: 300px;
        padding: 0 10px;
        overflow: visible;
    }
    
    .fleet-slider {
        height: 300px;
        overflow: visible;
        perspective: 600px;
    }
    
    .fleet-item {
        width: 180px;
        height: 280px;
    }
    
    .fleet-item:nth-child(1) {
        transform: translateX(0) translateZ(0) scale(1.0);
        z-index: 5;
        opacity: 1;
    }
    
    .fleet-item:nth-child(2) {
        transform: translateX(160px) translateZ(-60px) scale(0.75);
        z-index: 4;
        opacity: 0.6;
    }
    
    .fleet-item:nth-child(3) {
        transform: translateX(250px) translateZ(-120px) scale(0.55);
        z-index: 3;
        opacity: 0.4;
    }
    
    .fleet-item:nth-child(4) {
        transform: translateX(-160px) translateZ(-60px) scale(0.75);
        z-index: 4;
        opacity: 0.6;
    }
    
    .fleet-item:nth-child(5) {
        transform: translateX(-250px) translateZ(-120px) scale(0.55);
        z-index: 3;
        opacity: 0.4;
    }
    
    .fleet-image {
        height: 150px;
    }
    
    .fleet-info {
        padding: 12px;
        height: auto;
        min-height: 130px;
        backdrop-filter: none;
    }
    
    .fleet-category {
        font-size: 0.8rem;
        margin-bottom: 4px;
        text-shadow: none;
    }
    
    .fleet-name {
        font-size: 1rem;
        margin-bottom: 6px;
        text-shadow: none;
    }
    
    .fleet-details {
        gap: 6px;
    }
    
    .fleet-capacity,
    .fleet-features {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .fleet-slider-nav button {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .fleet-dot {
        width: 10px;
        height: 10px;
    }
    
    .meeting-step .step-content h3 {
        font-size: 1.1rem;
    }
    
    .meeting-step .step-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .video-container {
        max-width: 100%;
        margin: 0;
    }
    
    .video-placeholder {
        padding: 20px 15px;
    }
    
    .video-placeholder i {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .video-placeholder h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .video-placeholder p {
        font-size: 0.85rem;
        margin-bottom: 18px;
        line-height: 1.4;
    }
    
    .play-video-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .wifi-card {
        padding: 20px 15px;
        gap: 18px;
    }
    
    .wifi-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .wifi-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .wifi-content > p {
        font-size: 0.85rem;
        margin-bottom: 18px;
        line-height: 1.4;
    }
    
    .wifi-contact {
        gap: 12px;
        margin-top: 12px;
    }
    
    .wifi-network,
    .wifi-whatsapp {
        padding: 12px 15px;
        font-size: 0.9rem;
        line-height: 1.3;
    }
}

/* Direct Translation Styles */
.direct-translate-wrapper {
    display: inline-block;
    margin-left: 15px;
}

.direct-translate-wrapper select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: #333333;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 120px;
}

.direct-translate-wrapper select:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.direct-translate-wrapper select:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #000000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
}

.direct-translate-wrapper select option {
    background: #1a1a1a;
    color: #333333;
    padding: 8px 12px;
    border: none;
}

/* Translation protection */
/* The issue was an empty ruleset without any properties */
.notranslate {
    translate: no;
}
    /* This class prevents translation of the element */

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.98));
    backdrop-filter: blur(15px);
    border-top: 2px solid #5FDDDB;
    box-shadow: 0 -5px 25px rgba(95, 221, 219, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    color: #5FDDDB;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-text p {
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.accept-btn {
    background: linear-gradient(45deg, #5FDDDB, #4ECDC4);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(95, 221, 219, 0.3);
}

.accept-btn:hover {
    background: linear-gradient(45deg, #4ECDC4, #5FDDDB);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(95, 221, 219, 0.4);
}

.decline-btn {
    background: rgba(95, 221, 219, 0.1);
    color: #5FDDDB;
    border: 1px solid rgba(95, 221, 219, 0.3);
}

.decline-btn:hover {
    background: rgba(95, 221, 219, 0.2);
    border-color: rgba(95, 221, 219, 0.5);
    transform: translateY(-2px);
}

.cookie-link {
    color: #5FDDDB;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.cookie-link:hover {
    color: #4ECDC4;
    border-bottom-color: #5FDDDB;
}

/* Mobile responsive for cookie banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px 15px;
    }
    
    .cookie-text h4 {
        font-size: 1.2rem;
        justify-content: center;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .cookie-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        padding: 15px 10px;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 12px;
    }
    
    .cookie-link {
        margin-top: 5px;
        display: inline-block;
    }
}

/* Footer Policy Links */
.footer-links {
    margin: 10px 0;
    text-align: center;
}

.footer-policy-link {
    color: #5ce6fa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-policy-link:hover {
    color: #4dd4e8;
    text-decoration: underline;
}

.footer-separator {
    color: #666;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .footer-links {
        margin: 8px 0;
    }
    
    .footer-policy-link {
        font-size: 0.8rem;
    }
    
    .footer-separator {
        margin: 0 8px;
    }
}

/* Mobile styles for search button to match input field heights */
@media (max-width: 480px) {
    .search-button {
        height: 50px;
        font-size: 16px;
        font-weight: 600;
        padding: 0 20px;
        margin-top: 10px;
        border-radius: 12px;
        min-height: 50px;
    }
    
    .form-input {
        height: 50px;
        min-height: 50px;
        font-size: 16px;
        padding: 15px 15px 15px 45px;
    }
    
    .passenger-dropdown {
        padding: 15px;
        margin-top: 5px;
    }
    
    .apply-button {
        padding: 12px;
        font-size: 16px;
        font-weight: 600;
        margin-top: 10px;
        border-radius: 8px;
        min-height: 44px;
    }
}

/* Hide currency selector on reservation page */
body.reservation-page .currency-selector {
    display: none !important;
}
