.map-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    z-index: 1;
    padding: 20px;
    text-align: center;
}

.map-placeholder i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.map-placeholder p {
    color: var(--gray-color);
    font-size: 16px;
}.map-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-color);
    z-index: 5;
}

.map-loading:after {
    content: '';
    width: 20px;
    height: 20px;
    border: 3px solid var(--primary-color);
    border-top: 3px solid transparent;
    border-radius: 50%;
    margin-left: 10px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}.map-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.map-close-btn:hover {
    background-color: #f0f0f0;
}

.map-close-btn i {
    color: var(--gray-color);
}

html[dir="rtl"] .map-close-btn {
    right: auto;
    left: 10px;
}/* 
* LUXURY TRANSFER ISTANBUL
* Main Stylesheet
*/

/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #c9a55a;
    --primary-dark: #a88941;
    --secondary-color: #1c2a48;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --text-color: #444;
    --gray-color: #6c757d;
    --border-color: #eaeaea;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 18px;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

.btn-book-now, .btn-book, .btn-submit {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-book-now:hover, .btn-book:hover, .btn-submit:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hidden {
    display: none !important;
}

/* ===== LANGUAGE SELECTOR ===== */
.language-selector {
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}

.language-selector a {
    color: white;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.3);
}

.language-selector a.active {
    background-color: var(--primary-color);
}

/* ===== HEADER & NAVIGATION ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 0;
    transition: var(--transition);
    background-color: transparent;
}

#header.sticky {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

#header.sticky .logo h1,
#header.sticky .nav-link {
    color: var(--dark-color);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 0;
}

.logo h1 span {
    color: var(--primary-color);
    margin-left: 5px;
}

#navbar ul {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: white;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: white;
}

/* ===== HERO SECTION ===== */
#hero {
    height: 100vh;
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* ===== BOOKING SECTION ===== */
.booking-form-container {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

#booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(201, 165, 90, 0.2);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.location-input-group {
    position: relative;
}

.location-options {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.option-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 15px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.option-btn:hover {
    background-color: #e0e0e0;
}

.option-btn i {
    color: var(--primary-color);
}

/* Airport Modal */
.airport-modal {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    z-index: 10;
    margin-top: 10px;
    overflow: hidden;
}

.airport-modal-content {
    padding: 20px;
    position: relative;
}

.airport-modal-content h3 {
    margin-bottom: 15px;
    font-size: 18px;
    text-align: center;
}

.airport-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.airport-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background-color: #f8f8f8;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    text-align: left;
}

.airport-btn:hover {
    background-color: #f0f0f0;
}

.airport-btn i {
    color: var(--primary-color);
}

.airport-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    color: var(--gray-color);
    cursor: pointer;
}

html[dir="rtl"] .airport-close-btn {
    right: auto;
    left: 10px;
}

html[dir="rtl"] .airport-btn {
    text-align: right;
}

.map-container {
    height: 300px;
    margin-top: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
}

.map-container:after {
    content: 'Click on the map to select a location';
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--dark-color);
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    pointer-events: none;
}

html[dir="rtl"] .map-container:after {
    content: 'انقر على الخريطة لتحديد موقع';
}

.form-actions {
    margin-top: 20px;
    text-align: center;
}

/* Add Passenger Button */
#add-passenger-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: var(--border-radius);
}

.add-passenger-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.add-passenger-btn:hover {
    background-color: var(--primary-dark);
}

.add-passenger-btn i {
    font-size: 16px;
}

.passenger-counter {
    font-size: 14px;
    color: var(--gray-color);
    font-weight: 500;
}

/* Passenger Removal */
.passenger-field {
    position: relative;
    padding-right: 30px;
}

.remove-passenger-btn {
    position: absolute;
    right: 0;
    top: 32px;
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 18px;
}

html[dir="rtl"] .passenger-field {
    padding-right: 0;
    padding-left: 30px;
}

html[dir="rtl"] .remove-passenger-btn {
    right: auto;
    left: 0;
}

/* ===== FLEET SECTION ===== */
.fleet-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.fleet-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.fleet-card:hover {
    transform: translateY(-10px);
}

.fleet-image {
    height: 220px;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.1);
}

.fleet-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--dark-color);
    font-weight: 500;
}

.feature i {
    color: var(--primary-color);
    font-size: 18px;
}

/* ===== SERVICES SECTION ===== */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* ===== CLIENTS SECTION ===== */
.clients-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.client-image {
    height: 200px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.client-image:hover img {
    transform: scale(1.1);
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.testimonial-content {
    position: relative;
    padding-top: 30px;
}

.testimonial-content:before {
    content: '\201C';
    font-family: Arial, sans-serif;
    position: absolute;
    top: -10px;
    left: -5px;
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-author {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--gray-color);
    font-size: 14px;
}

/* ===== CONTACT SECTION ===== */
.contact-container {
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-10px);
}

.contact-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===== FOOTER ===== */
#footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 70px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}

.footer-logo h2 span {
    color: var(--primary-color);
    margin-left: 5px;
}

.footer-logo p {
    font-size: 14px;
    color: #bbb;
}

.footer-links h3, .footer-services h3, .footer-contact h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3:after, .footer-services h3:after, .footer-contact h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li, .footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a, .footer-services ul li a {
    color: #bbb;
    transition: var(--transition);
}

.footer-links ul li a:hover, .footer-services ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #bbb;
}

.footer-contact p i {
    color: var(--primary-color);
}

.footer-contact p a {
    color: #bbb;
}

.footer-contact p a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin-bottom: 0;
    color: #bbb;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #bbb;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    #navbar ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    #navbar.active ul {
        display: flex;
    }
    
    #navbar ul li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 15px 20px;
        color: var(--dark-color) !important;
        border-bottom: 1px solid var(--border-color);
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .booking-form-container {
        padding: 30px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .btn-book-now, .btn-book, .btn-submit {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .location-options {
        flex-wrap: wrap;
    }
}

/* RTL Support for Arabic */
html[dir="rtl"] body {
    text-align: right;
}

html[dir="rtl"] .section-header h2::after {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

html[dir="rtl"] .footer-links h3:after, 
html[dir="rtl"] .footer-services h3:after, 
html[dir="rtl"] .footer-contact h3:after {
    left: auto;
    right: 0;
}

html[dir="rtl"] .footer-links ul li a:hover, 
html[dir="rtl"] .footer-services ul li a:hover {
    padding-left: 0;
    padding-right: 5px;
}

html[dir="rtl"] .language-selector {
    right: auto;
    left: 20px;
}