:root {
    --primary: #1f2e3b;
    --primary-dark: #141d26;
    --gold: #c0a077;
    --gold-light: #d4b896;
    --gold-dark: #a8865e;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-600: #6c757d;
    --text: #1a1a2e;
    --shadow: 0 4px 24px rgba(31, 46, 59, 0.08);
    --shadow-lg: 0 8px 40px rgba(31, 46, 59, 0.15);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-weight: 300;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* LTR adjustments */
body.ltr {
    direction: ltr;
    text-align: left;
}

body.ltr .navbar-nav,
body.ltr .footer-contact-item,
body.ltr .hero-badge,
body.ltr .payment-options,
body.ltr .form-actions {
    direction: ltr;
}

body.ltr select.form-control {
    background-position: right 1rem center;
    padding-right: 2.5rem;
    padding-left: 1rem;
}

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

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    background: rgba(10, 18, 26, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    padding: 0 2rem;
    border-bottom: 1px solid rgba(192, 160, 119, 0.25);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-text img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    background: white;
    border-radius: 8px;
    padding: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-nav {
    list-style: none;
    display: flex;
    gap: 0.5rem;
}

.navbar-nav a {
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.navbar-nav a:hover {
    background: rgba(192, 160, 119, 0.15);
    color: var(--gold);
}

.btn-book-nav {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 30px !important;
    font-weight: 500 !important;
    box-shadow: 0 4px 12px rgba(192, 160, 119, 0.3);
}

.lang-btn {
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: 0.2s;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--gold);
    border-color: var(--gold);
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1f2e3b 0%, #2d4055 50%, #141d26 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(192, 160, 119, 0.12) 0%, transparent 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    color: white;
    padding: 3rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(192, 160, 119, 0.15);
    border: 1px solid rgba(192, 160, 119, 0.3);
    border-radius: 30px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 200;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero h1 strong {
    color: var(--gold-light);
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.6;
}

.hero-airports {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.airport-chip {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.airport-chip .code {
    background: var(--gold);
    color: white;
    font-weight: 600;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    font-size: 0.7rem;
}

/* CTA BTNS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(192, 160, 119, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(192, 160, 119, 0.5);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* BOOKING WIDGET FLOATING */
.booking-widget {
    background: white;
    color: var(--text);
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    position: relative;
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary);
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: 0.8rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: var(--primary);
}

.form-label span.req {
    color: red;
    margin-left: 3px;
}

.form-control {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--text);
    outline: none;
    transition: 0.2s;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(192, 160, 119, 0.1);
}

select.form-control {
    appearance: none;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c0a077' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-position: left 1rem center;
    padding-left: 2.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.step-bar {
    display: flex;
    gap: 5px;
    margin-bottom: 1.5rem;
}

.step-dot {
    flex: 1;
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    transition: var(--transition);
}

.step-dot.active {
    background: var(--gold);
}

.price-strip {
    background: linear-gradient(135deg, var(--primary), #2d4055);
    color: white;
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: none;
}

.price-val {
    font-size: 1.4rem;
    color: var(--gold-light);
    font-weight: 600;
}

.payment-options {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.pm-opt {
    flex: 1;
    border: 2px solid var(--gray-200);
    padding: 0.8rem;
    border-radius: var(--radius-sm);
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    font-size: 0.85rem;
}

.pm-opt i {
    font-size: 1.2rem;
    color: var(--gold);
    display: block;
    margin-bottom: 0.3rem;
}

.pm-opt.active {
    border-color: var(--primary);
    background: rgba(31, 46, 59, 0.04);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.85rem;
}

/* FEATURES */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.line {
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin: 0.5rem auto;
}

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

.feat-card {
    padding: 2rem;
    background: white;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    text-align: center;
    transition: 0.3s;
}

.feat-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feat-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: block;
}

.feat-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: var(--primary);
}

.feat-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* VEHICLE */
.vehicle-sec {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.v-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.v-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.v-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.v-feat {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin: 1.5rem 0;
    list-style: none;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.v-feat li::before {
    content: '✓';
    color: var(--gold);
    margin-left: 0.5rem;
    font-weight: 600;
}

/* MODAL TRACKING */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.modal-overlay.open {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    border-radius: var(--radius);
    position: relative;
    transform: scale(0.9);
    transition: 0.3s;
}

.modal-overlay.open .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-600);
}

body.ltr .close-modal {
    left: auto;
    right: 1rem;
}

/* FOOTER */
footer {
    background: linear-gradient(to bottom, #0f1a26, #060c12);
    color: rgba(255, 255, 255, 0.75);
    padding: 4.5rem 0 1.5rem;
    border-top: 1px solid rgba(192, 160, 119, 0.3);
}

.foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.foot-grid h4 {
    color: #eab308;
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.foot-grid h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 3px;
    background: #eab308;
    border-radius: 2px;
}

body.ltr .foot-grid h4::after {
    right: auto;
    left: 0;
}

.foot-links {
    list-style: none;
    padding: 0;
}

.foot-links li {
    margin-bottom: 0.8rem;
}

.foot-links li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    display: inline-block;
}

.foot-links li a:hover {
    color: #eab308;
    transform: translateX(-6px);
}

body.ltr .foot-links li a:hover {
    transform: translateX(6px);
}

.foot-bottom {
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

/* HAMBURGER MOBILE */
.menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* LOADER */
.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media(max-width: 960px) {

    .foot-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .foot-grid h4::after {
        right: 50%;
        transform: translateX(50%);
    }

    body.ltr .foot-grid h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-grid,
    .v-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-badge,
    .hero-airports {
        justify-content: center;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .navbar-nav-wrapper {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 18, 26, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 1.5rem 1rem;
        flex-direction: column;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid rgba(192, 160, 119, 0.2);
    }

    .navbar-nav-wrapper.show {
        display: flex;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .menu-btn {
        display: block;
    }

    .navbar {
        justify-content: space-between;
        gap: 0;
    }
}

@media(max-width:600px) {

    .grid-2,
    .foot-grid {
        grid-template-columns: 1fr;
    }
}

/* Success State UI */
.success-screen {
    text-align: center;
    display: none;
    padding: 1rem 0;
}

.success-circle {
    width: 70px;
    height: 70px;
    background: #d1e7dd;
    color: #0f5132;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.booking-num-box {
    background: var(--primary);
    color: var(--gold-light);
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin: 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.track-result {
    display: none;
    margin-top: 1.5rem;
    text-align: right;
}

body.ltr .track-result {
    text-align: left;
}

.status-banner {
    padding: 0.8rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    font-weight: 500;
    text-align: center;
}

.stat-pending {
    background: #fff3cd;
    color: #856404;
}

.stat-confirmed {
    background: #cff4fc;
    color: #055160;
}

.stat-progress {
    background: #cfe2ff;
    color: #084298;
}

.stat-completed {
    background: #d1e7dd;
    color: #0a3622;
}

.stat-cancelled {
    background: #f8d7da;
    color: #842029;
}

/* Phone Input Fixes */
.iti {
    width: 100%;
    display: block;
}
.iti__country-list {
    direction: ltr;
    text-align: left;
}
/* Reviews Section Styled Design */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.review-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.review-card .stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    display: flex;
    gap: 3px;
}

.review-card .quote {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.review-card .reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.review-card .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.review-card .reviewer h4 {
    margin: 0;
    color: #fff;
    font-size: 1rem;
}

.review-card .reviewer span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-top: 2px;
}

/* New Premium Fleet Grid Styles */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.fleet-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.fleet-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.fleet-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

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

.fleet-card:hover .fleet-img img {
    transform: scale(1.1);
}

.fleet-body {
    padding: 2rem;
    text-align: center;
}

.fleet-body h3 {
    font-size: 1.6rem;
    margin: 0 0 0.5rem 0;
    color: #fff;
    font-weight: 600;
}

.fleet-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.fleet-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.fleet-stats .stat-item {
    text-align: center;
}

.fleet-stats .stat-item .num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.fleet-stats .stat-item .lbl {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
    text-transform: uppercase;
}

/* Responsive adjust */
@media (max-width: 768px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }
}

/* SEO Blog Styling */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #e2e8f0;
}

.blog-thumb {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.08);
}

.blog-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px 0;
    color: #1e293b;
}

.blog-content p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-content .read-more {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.blog-content .read-more:hover {
    color: #0f172a;
}
