/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 0;
    border-bottom: 2px solid transparent;
    background: linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.95)) padding-box,
                linear-gradient(90deg, transparent 0%, #D4AF37 20%, #D4AF37 80%, transparent 100%) border-box;
}

.nav-container {
    width: 100%;
    margin: 0;
    padding: 0 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 0;
    padding-left: 0;
    height: 60px;
    overflow: hidden;
}

.logo-img {
    height: 80px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #D4AF37;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Language and Currency Selector Styles */
.language-currency {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

.language-selector,
.currency-selector {
    position: relative;
}

.language-selector select,
.currency-selector select {
    appearance: none;
    background-color: transparent;
    border: 1px solid #D4AF37;
    border-radius: 4px;
    color: #D4AF37;
    padding: 5px 25px 5px 10px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
}

.language-selector select option,
.currency-selector select option {
    background-color: #000;
    color: #D4AF37;
}

/* Flag and Currency Dropdown Styles */
.flag-dropdown,
.currency-dropdown {
    position: relative;
    cursor: pointer;
}

.selected-flag,
.selected-currency {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border: 1px solid #D4AF37;
    border-radius: 4px;
    color: #D4AF37;
    background-color: transparent;
    min-width: 80px;
    justify-content: space-between;
}

.selected-flag i,
.selected-currency i {
    font-size: 10px;
    margin-left: 5px;
}

.flag-options,
.currency-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    border: 1px solid #D4AF37;
    border-radius: 4px;
    margin-top: 5px;
    z-index: 1000;
    display: none;
}

.flag-options.show,
.currency-options.show {
    display: block;
}

.flag-option,
.currency-option {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 10px;
    color: #D4AF37;
    transition: background-color 0.3s;
}

.flag-option:hover,
.currency-option:hover {
    background-color: rgba(212, 175, 55, 0.2);
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

/* Responsive styles for language and currency selectors */
@media (max-width: 992px) {
    .language-currency {
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    .language-currency {
        position: absolute;
        top: 15px;
        right: 70px;
    }
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #D4AF37;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #D4AF37 20%, #D4AF37 80%, transparent 100%);
    z-index: 10;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.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) blur(3px);
}

.hero-image.static {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(212, 175, 55, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    width: 100%;
    padding: 0 20px;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
    animation: heroFadeIn 1.2s ease-out;
}

@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: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.title-line {
    display: block;
    margin-bottom: 10px;
}

.title-line.highlight {
    background: linear-gradient(45deg, #D4AF37, #FFD700, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@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: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.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: #D4AF37;
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.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);
}

.btn-primary {
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #000;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #FFD700, #D4AF37);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #D4AF37;
}

.btn-outline:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
}

/* Hero navigation and indicators removed for static image */

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    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: 10;
    padding: 0;
    background: transparent;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: -200px;
}

@media (max-width: 768px) {
    .quick-reservation {
        margin-top: -350px;
        width: 95%;
    }
}

.quick-reservation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212,175,55,0.1), transparent 70%);
}

.reservation-form {
    background: transparent;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 15px;
    padding: 20px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #D4AF37;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-steps {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
}

.step {
    flex: 1;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.5s ease;
    pointer-events: all;
    min-width: 0;
}

.step.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.step h3 {
    color: #D4AF37;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .step h3 {
        color: #D4AF37;
        font-size: 1.2rem;
        margin-bottom: 10px;
        font-weight: 600;
        text-align: left;
    }
    
    /* Tüm adımlar görünür olacak */
    .step {
        opacity: 1;
        margin-bottom: 15px;
    }
    
    .step.active {
        opacity: 1;
    }
}

.input-group {
    position: relative;
    margin-bottom: 10px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #D4AF37;
    z-index: 2;
}

.input-group select,
.input-group input {
    width: 100%;
    padding: 15px 15px 15px 50px;
    background: rgba(0,0,0,0.9);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.person-selector {
    position: relative;
    width: 100%;
}

.person-selector input[type="text"] {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 10px;
    background: rgba(0,0,0,0.9);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.person-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.9);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 8px;
    padding: 15px;
    z-index: 9999;
    display: none;
    margin-top: 5px;
}

.person-dropdown.active {
    display: block;
}

.person-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    color: white;
}

.person-option span {
    font-size: 14px;
    font-weight: 500;
}

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

.counter-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.counter-btn:hover {
    background: rgba(255,255,255,0.3);
}

.counter span {
    min-width: 20px;
    text-align: center;
    color: white;
    font-weight: 500;
}

.apply-btn {
    width: 100%;
    padding: 10px;
    background: #ff6b35;
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: #e55a2b;
}

.input-group select:focus,
.input-group input:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 20px rgba(212,175,55,0.2);
}

.input-group select option {
    background: #000000;
    color: #ffffff;
}

/* Search Dropdown Styles */
.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
    margin-top: 2px;
}

.search-dropdown.show {
    display: block;
}

.search-option {
    padding: 12px 15px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212,175,55,0.1);
}

.search-option:last-child {
    border-bottom: none;
}

.search-option:hover,
.search-option.highlighted {
    background: rgba(212,175,55,0.2);
    color: #D4AF37;
}

.search-option.hidden {
    display: none;
}

/* Reservation Page Styles */
.reservation-page {
    min-height: 100vh;
    padding-top: 120px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.reservation-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(212,175,55,0.2);
    display: none;
}

.reservation-header h1 {
    color: #D4AF37;
    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: #D4AF37;
    font-size: 1.5rem;
}

.route-arrow {
    color: #D4AF37;
    font-size: 1.5rem;
}

.passenger-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #cccccc;
    font-size: 1rem;
}

.passenger-info i {
    color: #D4AF37;
    margin-right: 5px;
}

.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;
    color: #ffffff;
}

.alert i {
    font-size: 3rem;
    color: #ffc107;
    margin-bottom: 20px;
}

.alert h3 {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.vehicle-selection {
    margin-bottom: 40px;
}

.vehicle-selection h2 {
    color: #D4AF37;
    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;
}

.vehicle-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 15px;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 10px 30px rgba(212,175,55,0.2);
}

.vehicle-card.selected {
    border-color: #D4AF37;
    background: rgba(212,175,55,0.1);
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

.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: white;
    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: #D4AF37;
    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: #D4AF37;
    margin-right: 5px;
}

.vehicle-features {
    padding: 0 25px 15px;
    flex-grow: 1;
}

.vehicle-features h4 {
    color: #D4AF37;
    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: #666;
    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: #D4AF37;
    margin-bottom: 5px;
}

.vehicle-price .price-note {
    color: #999999;
    font-size: 0.9rem;
}

.btn-select {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 12px;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    border: none;
    border-radius: 8px;
    color: #000000;
    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);
}

/* 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: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(212,175,55,0.2);
    margin-top: 40px;
}

.reservation-form-section h2 {
    color: #D4AF37;
    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: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 8px;
    font-size: 1rem;
    height: 48px;
    min-height: 48px;
    background: rgba(0,0,0,0.7);
    color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-group textarea {
    height: auto;
    min-height: 100px;
    resize: vertical;
}

/* 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 15px 15px 50px !important;
    height: 50px !important;
    min-height: 50px !important;
    max-height: 50px !important;
    box-sizing: border-box !important;
    background: rgba(0,0,0,0.9) !important;
    border: 1px solid rgba(212,175,55,0.3) !important;
    border-radius: 10px !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.8) sepia(1) saturate(5) hue-rotate(35deg) brightness(1.2);
    opacity: 1;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
    z-index: 2;
}

.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: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

/* Passenger Management Styles */
.passengers-section {
    margin-bottom: 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 15px;
    padding: 25px;
}

.passengers-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212,175,55,0.3);
}

.passengers-header .passengers-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.passengers-description {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin: 0;
    font-style: italic;
}

.passengers-header h3 {
    margin: 0;
    color: #D4AF37;
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-add-passenger {
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #000000;
    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(212,175,55,0.4);
}

.passenger-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.passenger-item:hover {
    border-color: rgba(212,175,55,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(212,175,55,0.2);
}

.passenger-header h4 {
    margin: 0;
    color: #D4AF37;
    font-size: 16px;
    font-weight: 600;
}

.btn-remove-passenger {
    background: rgba(220,53,69,0.8);
    color: white;
    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(212,175,55,0.7);
    font-style: italic;
    display: block;
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.02);
    border: 2px dashed rgba(212,175,55,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;
}

.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(212,175,55,0.8);
    font-weight: 500;
}

.selected-vehicle-name {
    color: #D4AF37;
    font-weight: 600;
    background: rgba(212,175,55,0.1);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid rgba(212,175,55,0.3);
}

.btn-toggle-vehicles {
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #000000;
    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(212,175,55,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(212,175,55,0.2);
    border-radius: 15px;
    padding: 25px;
    margin-top: 25px;
    backdrop-filter: blur(10px);
}

.baggage-section h3 {
    color: #D4AF37;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px 0;
    text-align: center;
}

.baggage-description {
    color: rgba(255,255,255,0.8);
    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: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.baggage-item:hover {
    border-color: rgba(212,175,55,0.5);
    transform: translateY(-2px);
}

.baggage-item label {
    display: block;
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.counter-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.counter-btn {
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #000000;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.counter-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(212,175,55,0.4);
}

.counter-group input {
    width: 60px;
    height: 40px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .baggage-options {
        grid-template-columns: 1fr;
    }
    
    .baggage-item {
        padding: 15px;
    }
}

/* Extra Services Styles */
.extra-services-section {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 15px;
    padding: 25px;
    margin-top: 25px;
    backdrop-filter: blur(10px);
}

.extra-services-section h3 {
    color: #D4AF37;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px 0;
    text-align: center;
}

.services-description {
    color: rgba(255,255,255,0.8);
    text-align: center;
    margin-bottom: 25px;
    font-size: 14px;
}

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

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(212,175,55,0.3);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: rgba(212,175,55,0.6);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212,175,55,0.2);
}

.service-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.service-info i {
    font-size: 24px;
    color: #D4AF37;
    min-width: 30px;
}

.service-text {
    display: flex;
    flex-direction: column;
}

.service-title {
    color: #D4AF37;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 3px;
}

.service-desc {
    color: rgba(255,255,255,0.7);
    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;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .service-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .counter-group {
        width: 100%;
        justify-content: center;
    }
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: #D4AF37;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 8px;
    color: #ffffff;
    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: #D4AF37;
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 10px rgba(212,175,55,0.2);
}

.reservation-summary {
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(212,175,55,0.2);
}

.reservation-summary h3 {
    color: #D4AF37;
    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: #D4AF37;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid rgba(212,175,55,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, #D4AF37, #FFD700);
    color: #000000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212,175,55,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: linear-gradient(45deg, #D4AF37, #FFD700);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    color: #000000;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(212,175,55,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,175,55,0.4);
    background: linear-gradient(45deg, #FFD700, #D4AF37);
}

.btn-search:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(212,175,55,0.3);
}

.btn-search i {
    font-size: 1.1rem;
}

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

.btn-prev,
.btn-next {
    padding: 10px 20px;
    border: 2px solid #D4AF37;
    background: transparent;
    color: #D4AF37;
    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, #D4AF37, #FFD700);
    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(212,175,55,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;
}

.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(212, 175, 55, 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(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.step-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.step-item:hover .step-circle {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: #000000;
    color: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    border: 2px solid #D4AF37;
    z-index: 2;
}

.step-icon {
    color: #000000;
    font-size: 40px;
    z-index: 1;
}

.step-content h3 {
    color: #D4AF37;
    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: #000000;
    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: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-intro h3 {
    color: #D4AF37;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-intro p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #000000;
}

.feature-content h4 {
    color: #D4AF37;
    font-size: 1.2rem;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.feature-content p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: fit-content;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(212,175,55,0.3);
    transition: all 0.3s ease;
}

.about-image:hover {
    border-color: rgba(212,175,55,0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.2);
}

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

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

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-images {
        gap: 15px;
    }
    
    .about-image img {
        height: 120px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-intro h3 {
        font-size: 2rem;
    }
    
    .about-intro p {
        font-size: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .feature-icon {
        align-self: center;
    }
    
    .about-images {
        gap: 12px;
    }
    
    .about-image img {
        height: 100px;
    }
}

/* 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(212,175,55,0.1), transparent 50%);
}

/* Transfer Regions Section */
.transfer-regions {
    padding: 50px 0 100px 0;
    background: #000000;
    position: relative;
    margin-top: 0;
}

.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: #D4AF37;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.title-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    max-width: 150px;
    position: relative;
}

.title-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #D4AF37;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.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(212,175,55,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(212,175,55,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(212,175,55,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: #D4AF37;
}

.location-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 1.2rem;
    margin-right: 15px;
}

.transfer-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.transfer-info h3 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.price {
    color: #D4AF37;
    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: #D4AF37;
    color: #000;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-all i {
    margin-left: 10px;
}

.btn-view-all:hover {
    background-color: #FFD700;
    transform: translateY(-3px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.service-icon i {
    font-size: 2rem;
    color: #000000;
}

.service-card h3 {
    color: #D4AF37;
    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: #000000;
    border-top: 1px solid rgba(212,175,55,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: 40px;
    border-bottom: 1px solid rgba(212,175,55,0.1);
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.footer-tagline {
    color: #cccccc;
    font-size: 0.85rem;
    margin: 0;
    font-style: italic;
}

.footer-services h4,
.footer-contact h4,
.footer-social h4 {
    color: #D4AF37;
    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: #D4AF37;
    position: absolute;
    left: 0;
    top: 0;
}

.footer-services li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-services li a:hover {
    color: #D4AF37;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    font-size: 0.9rem;
}

.contact-item i {
    color: #D4AF37;
    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(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #D4AF37;
    color: #000000;
    border-color: #D4AF37;
    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: #888888;
    font-size: 0.85rem;
}

.developer-info {
    font-size: 0.8rem;
    color: #666666;
}

.developer-link {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.developer-link:hover {
    color: #FFD700;
    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: 40px !important;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px !important;
        padding: 30px 20px !important;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
        margin-bottom: 20px;
    }
    
    .footer-logo {
        height: 60px !important;
        margin-bottom: 15px;
    }
    
    .footer-tagline {
        font-size: 0.9rem !important;
        color: #cccccc !important;
        margin-bottom: 0;
    }
    
    .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: #D4AF37 !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;
    }
    
    .developer-info {
        font-size: 0.85rem !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .reservation-form {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .form-navigation {
        flex-direction: column;
    }
    
    .prev-btn,
    .next-btn {
        width: 40px;
        height: 40px;
    }
    
    .prev-btn {
        left: 20px;
    }
    
    .next-btn {
        right: 20px;
    }
    
    /* Mobile reservation form */
    .form-steps {
        flex-direction: column;
        gap: 15px;
    }
    
    .step {
        width: 100%;
        background: transparent;
        border: none;
        padding: 5px 0;
        display: block;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
    }
    
    /* Tüm adımlar görünür olacak */
    .step.active {
        display: block;
    }
    
    .step h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
        text-align: left;
        color: #FFD700;
    }
    
    .input-group {
        margin-bottom: 0;
        position: relative;
    }
    
    .input-group i {
        color: #FFD700;
        font-size: 1.2rem;
    }
    
    /* 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.8) sepia(1) saturate(5) hue-rotate(35deg) 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(0,0,0,0.9) !important;
        border: 1px solid rgba(212,175,55,0.3) !important;
        border-radius: 10px !important;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
    }
    
    /* Mobilde dropdown'ların üst üste gelmesini engelle */
    .step:nth-child(1) {
        z-index: 1003;
    }
    
    .step:nth-child(1) .input-group {
        z-index: 1003;
    }
    
    .step:nth-child(1) .search-dropdown,
    .step:nth-child(1) .person-dropdown {
        z-index: 10003;
    }
    
    .step:nth-child(2) {
        z-index: 1002;
    }
    
    .step:nth-child(2) .input-group {
        z-index: 1002;
    }
    
    .step:nth-child(2) .search-dropdown,
    .step:nth-child(2) .person-dropdown {
        z-index: 10002;
    }
    
    .step:nth-child(3) {
        z-index: 1001;
    }
    
    .step:nth-child(3) .input-group {
        z-index: 1001;
    }
    
    .step:nth-child(3) .search-dropdown,
    .step:nth-child(3) .person-dropdown {
        z-index: 10001;
    }
    
    .person-with-button {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .inline-next {
        width: 100%;
        margin-top: 10px;
        background: #D4AF37;
        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: #FFD700;
        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;
    }
    
    .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(212,175,55,0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212,175,55,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212,175,55,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;
}

.inline-next {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    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: 120px;
}

.inline-next:hover {
    background: linear-gradient(135deg, #f4d03f, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .person-with-button {
        flex-direction: column;
        gap: 10px;
    }
    
    .inline-next {
        width: 100%;
        min-width: auto;
    }
}

/* 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-top: 2rem;
}

.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;
}

.phone-input select {
    min-width: 120px;
    padding: 12px 15px;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 8px;
    background: rgba(0,0,0,0.7);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    height: 48px;
    min-height: 48px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
    box-sizing: border-box;
}

.phone-input select:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.phone-input select:hover {
    border-color: rgba(212,175,55,0.5);
    background: rgba(255,255,255,0.07);
}

.phone-input select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 8px;
    border: none;
}

.phone-input select option:hover {
    background: rgba(212,175,55,0.2);
}

.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: #D4AF37;
    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(212, 175, 55, 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: #D4AF37;
    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(212, 175, 55, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.reservation-search-form input:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.reservation-search-form input::placeholder {
    color: #999999;
}

.reservation-search-form .btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #D4AF37, #F4E4BC);
    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, #F4E4BC, #D4AF37);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 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(212, 175, 55, 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(212, 175, 55, 0.2);
}

.reservation-header h2 {
    color: #D4AF37;
    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(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 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: #D4AF37;
    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: #D4AF37;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Route Info */
.route-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    margin: 1rem 0;
}

.route-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
}

.route-arrow {
    color: #D4AF37;
    font-size: 1.5rem;
    margin: 0 1rem;
}

.from-marker {
    color: #28a745;
}

.to-marker {
    color: #dc3545;
}

/* Rezervasyon Sorgulama Responsive */
@media (max-width: 768px) {
    .reservation-search-section {
        padding: 100px 0 60px;
    }
    
    .reservation-search-section .section-title {
        font-size: 2rem;
    }
    
    .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;
    }
}

/* Hero Text Overlay */
.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    z-index: 10;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-text-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5.2rem;
    font-weight: 900;
    margin: 0;
    background: linear-gradient(135deg, #FFE55C 0%, #FFD700 20%, #F4D03F 40%, #E6C200 60%, #D4AF37 80%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 0.95;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.6), 0 0 80px rgba(255, 215, 0, 0.3), 0 0 120px rgba(255, 215, 0, 0.1);
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4)) drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
    -webkit-text-stroke: 1px rgba(255, 215, 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;
}

.hero-text-overlay h1:hover {
    transform: translateY(-5px) scale(1.02);
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.7), 0 0 80px rgba(212, 175, 55, 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 */
.mini-slider-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 540px;
    background: transparent;
    border-radius: 15px;
    padding: 0;
    z-index: 10;
    backdrop-filter: none;
    border: none;
}

.mini-slider {
    position: relative;
    width: 100%;
    height: 540px;
    overflow: hidden;
    border-radius: 10px;
}

.mini-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.mini-slide.active {
    opacity: 1;
}

.mini-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.mini-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.mini-slider-nav button {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
}

.mini-slider-nav button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.mini-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.mini-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mini-dot.active {
    background: #fff;
    transform: scale(1.2);
}

.mini-dot:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Mobile responsive for mini slider */
@media (max-width: 768px) {
    .hero-text-overlay {
        top: 20%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 90%;
    }
    
    .hero-text-overlay h1 {
        font-size: 3.8rem;
        letter-spacing: 4px;
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.5), 0 0 60px rgba(255, 215, 0, 0.2), 0 0 90px rgba(255, 215, 0, 0.1);
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3)) drop-shadow(0 1px 6px rgba(255, 215, 0, 0.2));
    }
    
    .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);
    }
    
    .mini-slider-container {
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 450px;
        height: 250px;
        padding: 0;
        background: transparent;
        border: none;
        backdrop-filter: none;
    }
    
    .mini-slider {
        height: 250px;
    }
    
    .mini-slider-nav button {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .mini-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .hero-text-overlay {
        top: 20%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 95%;
    }
    
    .hero-text-overlay h1 {
        font-size: 3.2rem;
        letter-spacing: 3px;
        text-shadow: 0 0 25px rgba(255, 215, 0, 0.4), 0 0 50px rgba(255, 215, 0, 0.2), 0 0 75px rgba(255, 215, 0, 0.1);
        filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.3)) drop-shadow(0 1px 4px rgba(255, 215, 0, 0.2));
    }
    
    .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);
    }
    
    .mini-slider-container {
        top: 45%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 380px;
        height: 200px;
        padding: 0;
        background: transparent;
        border: none;
        backdrop-filter: none;
    }
    
    .mini-slider {
        height: 200px;
    }
    
    .mini-slider-nav button {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }
    
    .mini-dot {
        width: 6px;
        height: 6px;
    }
}

/* Airport Meeting Section */
.airport-meeting-section {
    padding: 100px 0;
    background: #000000;
    position: relative;
}

.airport-meeting-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.meeting-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 80px;
}

.video-wifi-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.meeting-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.meeting-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.meeting-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.meeting-step:hover::before {
    left: 100%;
}

.meeting-step:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.meeting-step .step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.meeting-step .step-content h3 {
    color: #D4AF37;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.meeting-step .step-content p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.9rem;
}

.meeting-video {
    display: flex;
    align-items: center;
    justify-content: center;
}

.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(212, 175, 55, 0.3);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.video-container:hover {
    transform: scale(1.02);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 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: #D4AF37;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.video-placeholder:hover i {
    transform: scale(1.1);
    color: #F4D03F;
}

.video-placeholder h4 {
    color: #D4AF37;
    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, #D4AF37 0%, #F4D03F 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(212, 175, 55, 0.4);
}

.wifi-info {
    margin-top: 0;
}

.wifi-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 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(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.wifi-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 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(212, 175, 55, 0.3);
}

.wifi-content h3 {
    color: #D4AF37;
    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 #D4AF37;
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.wifi-network:hover,
.wifi-whatsapp:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.wifi-network strong,
.wifi-whatsapp strong {
    color: #D4AF37;
    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(212, 175, 55, 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: #D4AF37;
    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: #FFD700;
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.modal-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 25px 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-header h3 {
    color: #D4AF37;
    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(212, 175, 55, 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) {
    .video-wifi-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .meeting-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .meeting-step {
        padding: 25px;
        gap: 20px;
    }
    
    .meeting-step .step-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .meeting-step .step-content h3 {
        font-size: 1.2rem;
    }
    
    .video-placeholder {
        padding: 30px;
    }
    
    .video-placeholder i {
        font-size: 3rem;
    }
    
    .video-placeholder h4 {
        font-size: 1.3rem;
    }
    
    .wifi-card {
        flex-direction: column;
        gap: 25px;
        padding: 30px;
        text-align: center;
    }
    
    .wifi-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin: 0 auto;
    }
    
    .wifi-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .airport-meeting-section {
        padding: 80px 0;
    }
    
    .meeting-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .meeting-step {
        padding: 20px;
        gap: 15px;
    }
    
    .meeting-step .step-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .meeting-step .step-content h3 {
        font-size: 1.1rem;
    }
    
    .meeting-step .step-content p {
        font-size: 0.9rem;
    }
    
    .video-placeholder {
        padding: 25px;
    }
    
    .video-placeholder i {
        font-size: 2.5rem;
    }
    
    .video-placeholder h4 {
        font-size: 1.2rem;
    }
    
    .wifi-card {
        padding: 25px;
    }
    
    .wifi-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .wifi-content h3 {
        font-size: 1.3rem;
    }
    
    .wifi-network,
    .wifi-whatsapp {
        padding: 15px;
        font-size: 1rem;
    }
}