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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #fff;
    background: #000;
    line-height: 1.5;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 70px;
    right: 15px;
    z-index: 1001;
    display: flex;
    flex-direction: row;
    gap: 6px;
    background: #1a1a1a;
    padding: 6px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(255,255,255,0.1);
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    border: 1px solid #333;
}

@media (min-width: 769px) {
    .language-selector {
        top: 65px;
        right: 20px;
    }
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border: 1px solid #444;
    background: #1a1a1a;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.2s;
    width: 38px;
    height: 28px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    pointer-events: auto;
    position: relative;
    z-index: 1002;
    user-select: none;
    -webkit-user-select: none;
}

.lang-btn:hover {
    border-color: #fff;
}

.lang-btn.active {
    border-color: #fff;
    background: #2a2a2a;
}

.flag-img {
    width: 30px;
    height: 20px;
    display: block;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    border-radius: 2px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Header */
.header {
    background: #1a1a1a;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.language-selector-mobile {
    display: none;
}

.logo {
    flex-shrink: 0;
    min-width: 0;
}

.logo h1 {
    font-size: 26px;
    color: #fff;
    font-weight: 600;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.nav {
    display: flex;
    gap: 25px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.nav-link:hover {
    border-bottom-color: #fff;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    padding: 20px 0 40px;
    text-align: center;
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Hero Slider Section - Separate from hero content */
.hero-slider-section {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 400px;
    margin: 0 auto 10px;
    overflow: hidden;
    border-radius: 12px;
}

.hero-slider {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.05) 0, transparent 55%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03) 0, transparent 55%),
                linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.2));
    z-index: 1;
    pointer-events: none;
}

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.hero-slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.hero-slider-prev {
    left: 15px;
}

.hero-slider-next {
    right: 15px;
}

.hero .container {
    position: relative;
    width: 100%;
    padding: 20px;
}

@media (max-width: 768px) {
    .hero-slider-section {
        height: 300px;
        margin: 0 auto 5px;
        border-radius: 8px;
    }
    
    .hero-slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .hero-slider-prev {
        left: 10px;
    }
    
    .hero-slider-next {
        right: 10px;
    }
    
    .hero {
        padding: 10px 0 30px;
    }
    
    .hero .container {
        padding: 10px 20px;
    }
    
    .hero-title {
        margin-top: 0;
        margin-bottom: 12px;
    }
}

.hero-title {
    font-size: 48px;
    color: #fff;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button {
    background: #1a1a1a;
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 48px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    background: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.cta-button:hover {
    background: #333;
}

/* Section Styles */
section {
    padding: 70px 0;
}

.section-title {
    font-size: 32px;
    color: #fff;
    text-align: center;
    margin-bottom: 45px;
    font-weight: 600;
}

/* Reservation Guarantee Section */
.reservation-guarantee {
    background: linear-gradient(135deg, #a8e6cf 0%, #dcedc8 100%);
    padding: 25px 0;
    margin: 20px 0;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

.guarantee-title {
    text-align: center;
    color: #2e7d32;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.guarantee-text {
    text-align: center;
    color: #1b5e20;
    font-size: 14px;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.4;
    padding: 0 15px;
}

.guarantee-features {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 15px 15px;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.guarantee-features::-webkit-scrollbar {
    display: none;
}

.guarantee-feature {
    background: #2e7d32;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 13px;
    min-width: 150px;
    width: auto;
    justify-content: center;
    flex-shrink: 0;
    scroll-snap-align: start;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.guarantee-feature svg {
    flex-shrink: 0;
}

/* Transfer Guarantee Section */
.transfer-guarantee {
    background: #e8f5e9;
    padding: 25px 0;
    margin: 20px 0;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

.transfer-guarantee-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0 15px;
}

.guarantee-icon-large {
    width: 40px;
    height: 40px;
    background: #2e7d32;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transfer-guarantee-title {
    color: #2e7d32;
    font-size: 24px;
    font-weight: 700;
}

.transfer-guarantee-cards {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 15px 15px;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.transfer-guarantee-cards::-webkit-scrollbar {
    display: none;
}

.transfer-guarantee-card {
    background: #1a1a1a;
    padding: 14px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(255,255,255,0.1);
    min-width: 220px;
    width: 220px;
    flex-shrink: 0;
    scroll-snap-align: start;
    position: relative;
    z-index: 1;
}

.guarantee-check-icon {
    width: 28px;
    height: 28px;
    background: #2e7d32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.transfer-guarantee-card h3 {
    color: #2e7d32;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
}

.transfer-guarantee-card p {
    color: #ccc;
    font-size: 11px;
    line-height: 1.4;
}

/* Cheap Transfer Warning Section */
.cheap-transfer-warning {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    padding: 25px 0;
    margin: 20px 0;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

.warning-header {
    text-align: center;
    margin-bottom: 15px;
    padding: 0 15px;
}

.warning-emoji {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}

.warning-title {
    color: #880e4f;
    font-size: 20px;
    font-weight: 700;
}

.warning-question {
    text-align: center;
    color: #880e4f;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
    padding: 0 15px;
}

.warning-steps {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 15px 15px;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.warning-steps::-webkit-scrollbar {
    display: none;
}

.warning-step {
    background: #1a1a1a;
    padding: 14px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    min-width: 200px;
    width: 200px;
    flex-shrink: 0;
    scroll-snap-align: start;
    white-space: normal;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 30px;
    height: 30px;
    background: #d32f2f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.warning-step p {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.warning-conclusion {
    background: #d32f2f;
    color: white;
    padding: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
    font-size: 14px;
}

.warning-conclusion svg {
    flex-shrink: 0;
}

.warning-conclusion p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* Beware Section */
.beware-section {
    background: #1a1a1a;
    padding: 25px 0;
    margin: 20px 0;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

.beware-header {
    background: #d32f2f;
    color: white;
    padding: 14px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 15px 20px;
    flex-wrap: wrap;
}

.beware-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.beware-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.beware-warning-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.beware-cards {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 15px 15px;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: nowrap;
    white-space: nowrap;
    max-width: 100%;
}

.beware-cards::-webkit-scrollbar {
    display: none;
}

.beware-card {
    background: #1a1a1a;
    padding: 16px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(255,255,255,0.1);
    border-left: 3px solid #d32f2f;
    min-width: 240px;
    width: 240px;
    flex-shrink: 0;
    scroll-snap-align: start;
    position: relative;
    z-index: 1;
}

.beware-prohibit-icon {
    width: 28px;
    height: 28px;
    border: 2px solid #d32f2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.beware-card h3 {
    color: #d32f2f;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.beware-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.beware-tag {
    padding: 4px 8px;
    border-radius: 16px;
    font-size: 10px;
    font-weight: 500;
}

.beware-tag.light {
    background: #ffebee;
    color: #c62828;
}

.beware-tag.dark {
    background: #d32f2f;
    color: white;
}

/* Reliable Transfer Section */
.reliable-transfer {
    background: #e8f5e9;
    padding: 25px 0;
    margin: 20px 0;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

.reliable-transfer-title {
    text-align: center;
    color: #2e7d32;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 0 15px;
}

.reliable-features {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 15px 15px;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.reliable-features::-webkit-scrollbar {
    display: none;
}

.reliable-feature-item {
    background: #1a1a1a;
    padding: 14px;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    min-width: 260px;
    width: 260px;
    flex-shrink: 0;
    scroll-snap-align: start;
    white-space: normal;
    position: relative;
    z-index: 1;
}

.reliable-check-icon {
    width: 32px;
    height: 32px;
    background: #2e7d32;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reliable-feature-content h3 {
    color: #2e7d32;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}

.reliable-feature-content p {
    color: #ccc;
    font-size: 11px;
    line-height: 1.4;
}

/* Distance Calculator Section */
.distance-calculator {
    background: #000;
    padding: 25px 0;
    margin: 20px 0;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

.distance-calculator-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 15px;
    align-items: end;
    padding: 0 15px;
}

.distance-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.distance-input-group label {
    font-weight: 600;
    color: #fff;
    font-size: 14px;
}

.distance-select {
    padding: 12px 16px;
    border: 1px solid #444;
    border-radius: 6px;
    font-size: 16px;
    background: #000;
    color: #fff;
}

.distance-calculate-btn {
    padding: 12px 24px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.distance-calculate-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.distance-result {
    max-width: 600px;
    margin: 30px auto 0;
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(255,255,255,0.1);
}

.distance-result-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.distance-icon {
    flex-shrink: 0;
}

.distance-text {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.distance-time {
    font-size: 16px;
    color: #ccc;
}

/* Services Section */
.services {
    background: #000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: #1a1a1a;
    padding: 35px 25px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #333;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 12px;
    padding: 12px;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    opacity: 0.9;
}

.service-icon-image {
    width: 140px;
    height: 110px;
    padding: 0;
    background: transparent;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    display: block;
    min-height: 100px;
    background: #000;
}

/* İş Toplantıları görseli: alt taraf görünsün, üstten kırpsın */
.services-grid .service-card:nth-child(4) .service-image {
    object-position: bottom center;
}

.service-gallery {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 12px auto 0;
    max-width: 200px;
}

.service-gallery-image {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #333;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
    display: block;
    background: #000;
    min-width: 60px;
    min-height: 45px;
}

.service-gallery-image:hover {
    transform: scale(1.1);
    border-color: #fff;
}

.service-card h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 500;
}

.service-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

/* Fleet Section */
.fleet .container {
    max-width: 100%;
    padding: 0 20px;
}

.fleet-grid {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 0 15px;
}

.fleet-grid::-webkit-scrollbar {
    display: none;
}


.fleet-card {
    background: #1a1a1a;
    padding: 18px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #333;
    min-width: 220px;
    max-width: 220px;
    flex-shrink: 0;
    scroll-snap-align: start;
    cursor: grab;
}

.fleet-card:active {
    cursor: grabbing;
}

.fleet-grid {
    cursor: grab;
    user-select: none;
}

.fleet-grid:active {
    cursor: grabbing;
}

@media (max-width: 992px) {
    .fleet-card {
        min-width: 220px;
        max-width: 220px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
}

.fleet-image-container {
    width: 100%;
    height: 160px;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.fleet-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.fleet-image-placeholder svg {
    opacity: 0.3;
}

.fleet-error-message {
    color: #999;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 20px;
}

.fleet-reservation-btn {
    margin-top: 12px;
    padding: 10px 16px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.fleet-reservation-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

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

.fleet-card h3 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 6px;
    font-weight: 500;
    line-height: 1.3;
}

.fleet-card p {
    color: #ccc;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 0;
    margin-top: 8px;
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Booking Section */
.booking {
    background: #000;
}

.booking-form {
    max-width: 750px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 35px;
    border-radius: 6px;
    border: 1px solid #333;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
    overflow: hidden;
}

.form-row .form-group {
    min-width: 0;
    overflow: hidden;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #fff;
    font-size: 14px;
    margin-bottom: 6px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    display: block;
    max-width: 100%;
}

.form-group input,
.form-group select {
    padding: 11px;
    border: 1px solid #444;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    min-height: 44px;
    background: #000;
    color: #fff;
    font-family: inherit;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #fff;
}

.checkbox-group {
    grid-column: 1 / -1;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0;
    padding: 12px 16px;
    background: #000;
    border: 2px solid #444;
    border-radius: 8px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    user-select: none;
    position: relative;
}

.checkbox-label:hover {
    background: #1a1a1a;
    border-color: #fff;
}

.checkbox-label:active {
    transform: none;
}

.checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.checkbox-input:checked ~ .checkbox-text::before {
    background: #fff;
    border-color: #fff;
}

.checkbox-input:checked ~ .checkbox-text::after {
    opacity: 1;
    transform: translateY(-50%) rotate(45deg) scale(1);
}

.checkbox-text {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-left: 35px;
    line-height: 24px;
}

.checkbox-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: 2px solid #666;
    border-radius: 4px;
    background: #000;
    transition: all 0.3s ease;
}

.checkbox-text::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg) scale(0);
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    opacity: 0;
    transition: all 0.2s ease;
}

.submit-button {
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
}

.submit-button:hover {
    background: #333;
}

/* Reviews Section */
.reviews {
    background: #000;
}

.about {
    background: #000;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: #ccc;
}

.reviews-list {
    max-width: 900px;
    margin: 0 auto 50px;
    display: grid;
    gap: 20px;
}

.review-item {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #333;
    box-shadow: 0 2px 5px rgba(255,255,255,0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-author {
    font-weight: 600;
    color: #fff;
    font-size: 16px;
}

.review-date {
    color: #999;
    font-size: 13px;
}

.review-rating {
    font-size: 20px;
    color: #ffc107;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.review-text {
    color: #bbb;
    line-height: 1.6;
    font-size: 15px;
}

.review-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.review-form-title {
    font-size: 22px;
    color: #fff;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.review-form {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #333;
    box-shadow: 0 2px 5px rgba(255,255,255,0.05);
}

.review-form .form-group label {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    white-space: normal;
    max-width: 100%;
    line-height: 1.4;
}

.rating-group {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 8px;
}

.rating-input {
    display: none;
}

.rating-label {
    font-size: 28px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
    user-select: none;
}

.rating-label:hover,
.rating-label:hover ~ .rating-label {
    color: #ffc107;
}

.rating-input:checked ~ .rating-label {
    color: #ffc107;
}

.rating-input:checked + .rating-label {
    color: #ffc107;
}

.review-form textarea {
    padding: 11px;
    border: 1px solid #444;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    resize: vertical;
    width: 100%;
    background: #000;
    color: #fff;
}

.review-form textarea:focus {
    outline: none;
    border-color: #fff;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.captcha-question-text {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    min-width: 100px;
    display: inline-block;
    padding: 10px 14px;
    background: #000;
    border-radius: 4px;
    text-align: center;
}

#captcha-question {
    font-size: 16px;
    color: #fff;
    min-width: 100px;
    display: inline-block !important;
    visibility: visible !important;
}

#captcha-answer {
    padding: 10px 14px;
    border: 1px solid #444;
    border-radius: 4px;
    font-size: 16px;
    width: 120px;
    transition: border-color 0.2s;
    background: #000;
    color: #fff;
}

#captcha-answer:focus {
    outline: none;
    border-color: #fff;
}

@media (max-width: 768px) {
    .captcha-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }

    .captcha-question-text {
        width: 100%;
        min-width: auto;
    }

    #captcha-question {
        min-width: auto;
        width: 100%;
    }

    #captcha-answer {
        width: 100%;
    }
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    text-align: center;
}

.contact-item {
    padding: 25px;
}

.contact-icon {
    font-size: 42px;
    margin-bottom: 18px;
}

.contact-item h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-item p {
    color: #ccc;
    font-size: 15px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 0 25px;
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.tursab-logo {
    width: 220px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    padding: 8px;
    border-radius: 4px;
}

.tursab-img {
    width: 100%;
    height: auto;
    max-height: 70px;
    display: block;
}

.tursab-placeholder {
    width: 200px;
    height: 80px;
    background: #000;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tursab-text {
    color: #c00;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.tursab-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.tursab-label {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.tursab-cert {
    color: #ddd;
    font-size: 13px;
    margin: 0;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-info {
    text-align: center;
}

.footer-website,
.footer-email {
    margin: 8px 0;
    color: #fff;
}

.footer-languages {
    display: flex;
    justify-content: center;
}

.language-selector-footer {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.lang-btn-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border: 1px solid #555;
    background: #2a2a2a;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    width: 36px;
    height: 26px;
}

.lang-btn-footer:hover {
    border-color: #fff;
    background: #333;
}

.lang-btn-footer.active {
    border-color: #fff;
    background: #333;
}

.flag-img-footer {
    width: 28px;
    height: 18px;
    display: block;
    object-fit: cover;
    border-radius: 2px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-link {
    color: #fff;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.footer-link:hover {
    opacity: 0.8;
}

/* Tablet */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fleet .container {
        padding: 0;
    }

    .fleet-grid {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 15px 15px;
        gap: 18px;
    }

    .fleet-card {
        min-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

/* Mobile */
@media (max-width: 768px) {
    .language-selector {
        display: none;
    }

    .language-selector-mobile {
        display: flex;
        flex-direction: row;
        gap: 2px;
        padding: 3px;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        background: #1a1a1a;
        border-radius: 6px;
        box-shadow: 0 1px 3px rgba(255,255,255,0.1);
        border: 1px solid #333;
    }

    .language-selector-mobile::-webkit-scrollbar {
        display: none;
    }

    .header-right {
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
    }
    
    .language-selector::-webkit-scrollbar {
        display: none;
    }
    
    .lang-btn {
        width: 26px;
        height: 20px;
        padding: 2px;
        flex-shrink: 0;
        background: #1a1a1a;
        border: 1px solid #444;
    }
    
    .flag-img {
        width: 20px;
        height: 14px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid #333;
        display: none;
        gap: 0;
        z-index: 1001;
        box-shadow: 0 4px 6px rgba(255,255,255,0.1);
    }

    .nav.active {
        display: flex;
    }

    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid #333;
        border-bottom-width: 1px;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .header {
        padding: 12px 0;
        z-index: 1002;
        position: relative;
    }

    .header .container {
        position: relative;
    }

    .logo h1 {
        font-size: 15px;
        line-height: 1.2;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
        word-break: keep-all;
        max-width: 200px;
        margin: 0;
    }

    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 1003;
    }

    .hero {
        padding: 10px 0 30px;
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-title {
        font-size: 32px;
        margin-top: 0;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .fleet .container {
        padding: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fleet-grid {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 12px 12px;
        gap: 16px;
    }

    .fleet-card {
        min-width: 200px;
        max-width: 200px;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 15px 12px;
    }

    .fleet-image-container {
        height: 140px;
        margin-bottom: 10px;
    }

    .fleet-card h3 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .fleet-card p {
        font-size: 11px;
        margin-top: 6px;
        display: block;
        visibility: visible;
        opacity: 1;
    }

    .service-card {
        padding: 30px 20px;
    }

    .fleet-reservation-btn {
        padding: 8px 14px;
        font-size: 12px;
        margin-top: 10px;
    }

    .booking-form {
        padding: 25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer {
        padding: 30px 0 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 25px;
    }

    .tursab-logo {
        width: 160px;
        max-height: 60px;
    }

    .tursab-img {
        max-height: 60px;
    }

    .tursab-placeholder {
        width: 160px;
        height: 60px;
    }

    .tursab-text {
        font-size: 20px;
    }

    .tursab-label {
        font-size: 13px;
    }

    .tursab-cert {
        font-size: 12px;
    }

    /* Guarantee Sections Mobile */
    .reservation-guarantee, .transfer-guarantee, .cheap-transfer-warning, .beware-section, .reliable-transfer, .distance-calculator {
        padding: 20px 0;
        margin: 15px 0;
    }

    .guarantee-title, .transfer-guarantee-title, .warning-title, .reliable-transfer-title {
        font-size: 20px;
    }

    .guarantee-text {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .guarantee-features {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        gap: 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .guarantee-feature {
        min-width: 150px;
        width: auto;
        max-width: none;
        padding: 10px 12px;
        font-size: 12px;
    }

    .transfer-guarantee-header {
        gap: 8px;
        margin-bottom: 18px;
    }

    .guarantee-icon-large {
        width: 36px;
        height: 36px;
    }

    .transfer-guarantee-title {
        font-size: 20px;
    }

    .transfer-guarantee-cards {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        padding: 0 15px 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .transfer-guarantee-card {
        min-width: 220px;
        width: 220px;
        max-width: 220px;
        margin-bottom: 0;
        padding: 14px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .warning-emoji {
        font-size: 24px;
    }

    .warning-title {
        font-size: 18px;
    }

    .warning-question {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .warning-steps {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        padding: 0 15px 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .warning-step {
        min-width: 200px;
        width: 200px;
        max-width: 200px;
        margin-bottom: 10px;
        padding: 12px;
    }

    .warning-step:last-child {
        margin-bottom: 0;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .warning-step p {
        font-size: 12px;
    }

    .warning-conclusion {
        margin: 0 15px;
        padding: 14px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .warning-conclusion p {
        font-size: 12px;
    }

    .beware-header {
        padding: 12px;
        margin-bottom: 18px;
    }

    .beware-title {
        font-size: 16px;
    }

    .beware-cards {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        padding: 0 15px 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .beware-card {
        min-width: 240px;
        width: 240px;
        max-width: 240px;
        margin-bottom: 0;
        padding: 12px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .beware-prohibit-icon {
        width: 24px;
        height: 24px;
        margin-bottom: 6px;
    }

    .beware-card h3 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .beware-tag {
        padding: 2px 6px;
        font-size: 9px;
    }

    .reliable-features {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        padding: 0 15px 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .reliable-feature-item {
        min-width: 260px;
        width: 260px;
        max-width: 260px;
        margin-bottom: 10px;
        padding: 12px;
    }

    .reliable-feature-item:last-child {
        margin-bottom: 0;
    }

    .reliable-check-icon {
        width: 30px;
        height: 30px;
    }

    .reliable-feature-content h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .reliable-feature-content p {
        font-size: 11px;
    }

    .distance-calculator-form {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .distance-calculate-btn {
        width: 100%;
        margin-top: 0;
    }

    .footer-info {
        text-align: center;
    }

    .language-selector-footer {
        gap: 4px;
    }

    .lang-btn-footer {
        width: 32px;
        height: 22px;
    }

    .flag-img-footer {
        width: 24px;
        height: 16px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-item {
        padding: 20px;
    }

    .container {
        padding: 0 12px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5px 0 25px;
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 28px;
        margin-top: 0;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 22px;
    }

    .logo h1 {
        font-size: 14px;
        line-height: 1.2;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
        word-break: keep-all;
        max-width: 180px;
        margin: 0;
    }
    
    .language-selector {
        display: none;
    }
    
    .lang-btn {
        width: 24px;
        height: 18px;
        padding: 2px;
        flex-shrink: 0;
        background: #1a1a1a;
        border: 1px solid #444;
    }
    
    .flag-img {
        width: 18px;
        height: 12px;
    }

    .footer-content {
        gap: 20px;
    }

    .tursab-logo {
        width: 140px;
        max-height: 50px;
    }

    .tursab-img {
        max-height: 50px;
    }

    .tursab-placeholder {
        width: 140px;
        height: 50px;
    }

    .tursab-text {
        font-size: 18px;
    }

    .tursab-label {
        font-size: 12px;
    }

    .tursab-cert {
        font-size: 11px;
    }

    .footer-left {
        gap: 8px;
    }

    .lang-btn-footer {
        width: 28px;
        height: 20px;
    }

    .flag-img-footer {
        width: 20px;
        height: 14px;
    }
}

/* PC Styles - Single row layout for larger screens */
@media (min-width: 992px) {
    .transfer-guarantee-cards {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        overflow-x: visible;
        overflow-y: visible;
        padding: 0;
        white-space: nowrap;
        width: 100%;
        gap: 20px;
    }

    .beware-cards {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: flex-start;
        overflow-x: visible;
        overflow-y: visible;
        padding: 0 20px;
        white-space: normal;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        gap: 18px;
    }

    .reliable-features {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: flex-start;
        overflow-x: visible;
        overflow-y: visible;
        padding: 0 20px;
        white-space: normal;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        gap: 18px;
    }

    .warning-steps {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: flex-start;
        overflow-x: visible;
        overflow-y: visible;
        padding: 0 20px;
        white-space: normal;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        gap: 18px;
    }

    .guarantee-features {
        flex-wrap: nowrap;
        justify-content: center;
        overflow-x: visible;
        overflow-y: visible;
        padding: 0 15px 15px;
        white-space: nowrap;
        width: 100%;
    }

    .transfer-guarantee-card {
        min-width: 220px;
        max-width: 220px;
        width: 220px;
        flex: 0 0 auto;
        position: relative;
        z-index: 1;
        box-sizing: border-box;
    }

    .beware-card {
        min-width: 240px;
        max-width: 240px;
        width: 240px;
        flex: 0 0 auto;
        position: relative;
        z-index: 1;
        box-sizing: border-box;
    }

    .reliable-feature-item {
        min-width: 260px;
        max-width: 260px;
        width: 260px;
        flex: 0 0 auto;
        position: relative;
        z-index: 1;
        box-sizing: border-box;
    }

    .warning-step {
        min-width: 200px;
        width: 200px;
        flex: 0 0 auto;
        box-sizing: border-box;
        max-width: 200px;
        flex: 0 0 200px;
        position: relative;
        z-index: 1;
    }
}
