/* ================================================
   Airport Transfer Website - Premium Stylesheet
   ================================================ */

:root {
    /* Color Palette */
    --primary-color: #10b981;
    --primary-dark: #059669;
    --secondary-color: #1e293b;
    --accent-color: #f59e0b;
    --danger-color: #ef4444;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border-color: #e5e7eb;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Genel logo ayarları */
.taxi-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
	gab: 0;
}

/* Taxi ikon rengi */
.taxi-logo i {
    color: #f5c400; /* go ile aynı renk */
    margin-right: 8px;
    font-size: 22px;
}

/* ISTANBUL → Regular */
.taxi-logo .istanbul {
    font-weight: 400;
    color: #10b981;
}

/* TAXI → Bold */
.taxi-logo .taxi {
    font-weight: 700;
    color: #10b981;
}

/* go → Light / Italic + ikon rengi */
.taxi-logo .go {
    font-weight: 300;
    font-style: italic;
    color: #f5c400;
    margin-left: 2px;
}

/* ================================================
   Header & Navigation
   ================================================ */

.header-section {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
   /*  gap: 0.5rem; */
    transition: all 0.3s ease;
	margin-left:10px;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand i {
    font-size: 1.75rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.language-select {
    width: auto;
    display: inline-block;
    font-size: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
}

/* ================================================
   Hero Section
   ================================================ */

.hero-section {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1600'),
                      linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 4rem 0;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-color);
    background: var(--white);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.875rem;
}

/* ================================================
   Booking Card
   ================================================ */

.booking-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    z-index: 2;
    animation: fadeInRight 0.8s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.discount-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--danger-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: var(--shadow-md);
}

.booking-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.form-group label i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
     
    font-size: 0.938rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    outline: none;
}

.btn-search {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem;
    border: none;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-search:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-search i {
    margin-right: 0.5rem;
}

/* ================================================
   How It Works Section
   ================================================ */

.how-it-works {
    padding: 5rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.work-step {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.work-step:hover {
    transform: translateY(-10px);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.work-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.work-step h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.work-step p {
    color: var(--text-light);
    font-size: 0.938rem;
}

/* ================================================
   Vehicle Types Section
   ================================================ */

.vehicle-types {
    padding: 5rem 0;
    background: var(--bg-light);
}

.vehicle-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    border: 2px solid transparent;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.vehicle-card.popular {
    border-color: var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: var(--shadow-md);
}

.vehicle-image {
    margin: 1.5rem 0;
    color: var(--primary-color);
}

.vehicle-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.vehicle-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.vehicle-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.938rem;
}

.vehicle-features li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.vehicle-price {
    font-size: 0.938rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

.vehicle-price strong {
    font-size: 2rem;
    color: var(--primary-color);
    display: block;
    margin-top: 0.5rem;
}

/* ================================================
   Contact Section
   ================================================ */

.contact-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item h5 {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.why-us-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.why-us-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.why-us-list li i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* ================================================
   Footer
   ================================================ */

.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin: 0;
    opacity: 0.8;
}

/* ================================================
   Breadcrumb
   ================================================ */

.breadcrumb-section {
    background: var(--bg-light);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--text-light);
}

/* ================================================
   Trip Summary
   ================================================ */

.trip-summary {
    padding: 2rem 0;
    background: var(--bg-light);
}

.summary-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.summary-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.summary-card h4 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.return-trip-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
}

/* ================================================
   Vehicle Selection
   ================================================ */

.vehicle-selection {
    padding: 3rem 0 5rem;
    background: var(--bg-light);
}

.vehicle-selection-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.vehicle-selection-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.vehicle-selection-card.popular {
    border-color: var(--primary-color);
}

.vehicle-icon-large {
    font-size: 4rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.vehicle-selection-card h4 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.vehicle-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.spec-item {
    color: var(--text-light);
    font-size: 0.938rem;
}

.spec-item i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.vehicle-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.feature-badge {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.813rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.feature-badge i {
    color: var(--primary-color);
    font-size: 0.75rem;
    margin-right: 0.25rem;
}

.price-section {
    margin: 1.5rem 0;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.125rem;
}

.final-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 0.5rem;
}

.btn-select-vehicle {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-select-vehicle:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

/* ================================================
   Benefits Section
   ================================================ */

.benefits-section {
    padding: 3rem 0;
    background: var(--white);
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

/* ================================================
   Booking Form
   ================================================ */

.booking-form-section {
    padding: 3rem 0 5rem;
    background: var(--bg-light);
}

.booking-details-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.card-title i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.custom-control-label {
    font-weight: 600;
    cursor: pointer;
}

.custom-control-label i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.btn-complete-booking {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1.5rem;
}

.btn-complete-booking:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

/* ================================================
   Booking Summary Sidebar
   ================================================ */

.booking-summary-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.sticky-summary {
    position: sticky;
    top: 100px;
}

.booking-summary-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.booking-summary-card h4 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.summary-section {
    margin-bottom: 1.5rem;
}

.summary-section h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 0.813rem;
    letter-spacing: 0.05em;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--bg-light);
}

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

.summary-item .label {
    color: var(--text-light);
    font-size: 0.938rem;
}

.summary-item .value {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.938rem;
}

.summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 1.5rem 0;
}

.discount-item .value {
    color: var(--primary-color);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 2px solid var(--border-color);
}

.summary-total .label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
}

.summary-total .value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.summary-features {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-top: 1.5rem;
}

.summary-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.summary-features .feature-item i {
    color: var(--primary-color);
}

/* ================================================
   Trust Badges
   ================================================ */

.trust-badges {
    display: flex;
    justify-content: space-around;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.badge-item {
    text-align: center;
}

.badge-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.badge-item span {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ================================================
   Responsive Design
   ================================================ */

@media (max-width: 991px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .booking-card {
        margin-top: 2rem;
    }
    
    .sticky-summary {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .vehicle-selection-card .row {
        flex-direction: column;
    }
    
    .vehicle-icon-large {
        font-size: 3rem;
        padding: 2rem 0;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ================================================
   Animations
   ================================================ */

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.btn-search:hover,
.btn-select-vehicle:hover,
.btn-complete-booking:hover {
    animation: pulse 0.5s ease;
}



/* Genel Ayarlar */
.home-section {
    padding: 70px 0;
    background-color: #ebebeb; /* Görseldeki açık gri tonu */
    font-family: 'Poppins', sans-serif;
}

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

.section-main-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
}

/* Havalimanı Grid Yapısı */
.airports-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Masaüstünde 4 sütun */
    gap: 15px;
}

.airport-card {
    background: #ffffff;
    padding: 18px 15px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.airport-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #007bff;
}

/* SSS Yapısı */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
}

.faq-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111;
}

.faq-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Mobil ve Tablet Uyumu */
@media (max-width: 1024px) {
    .airports-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .airports-grid { grid-template-columns: repeat(2, 1fr); }
    .section-main-title { font-size: 24px; }
}

@media (max-width: 480px) {
    .airports-grid { grid-template-columns: 1fr; }
    .faq-card { padding: 20px; }
}


/* Reviews Grid */
.bg-mint { background-color: #eef5f3; }
    .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
    .review-card { 
        background: var(--white); padding: 30px; border-radius: 15px; 
        position: relative; box-shadow: 0 4px 10px rgba(0,0,0,0.03); 
    }
    .quote-icon { color: #48c78e; font-size: 24px; margin-bottom: 15px; display: block; }
    .review-text { font-size: 15px; color: #666; line-height: 1.6; height: 96px; overflow: hidden; }
    .review-footer { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 20px; border-top: 1px solid #eee; padding-top: 15px; }
    .stars { color: #f39c12; font-size: 13px; margin-top: 5px; }
    .platform-icon { height: 20px; max-width: 80px; filter: grayscale(1); opacity: 0.7; }
	
	
.unique-section p {
    font-size: 1.1em;
    font-weight: 500;
    color: #525660;
    line-height: 1.5em;	
