* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #181818;
    --secondary-blue: #232323;
    --light-blue: #3d5a80;
    --gold: #ffd95b;
    --light-gold: #f1e5ac;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #2d3748;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--gold);
    color: var(--primary-color);
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--primary-color);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: transparent;
}

header.scrolled {
    background: rgb(16 16 16 / 95%);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.logo-img {
    width: 100px;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: #282828;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
    position: relative;
}

.earth-container {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 430px;
    height: 430px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(220, 216, 0, 0.5);
}

.earth {
    position: relative;
    width: 700px;
    height: 700px;
    top: -130px;
    right: 130px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .earth-container {
        display: none;
    }
}

@media (max-width: 768px) {

}

@media (max-width: 576px) {

}

.hero-content {
    max-width: 650px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-subtitle {
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 15px;
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.booking-container {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: var(--dark-gray);
}

.booking-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-size: 2rem;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--gold);
    outline: none;
}

.form-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
}

/* Return flight toggle */
.return-toggle {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.return-toggle input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.return-toggle label {
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
}

.return-fields {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.return-fields.active {
    max-height: 200px;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold);
}

.section-title p {
    color: var(--light-blue);
    max-width: 600px;
    margin: 0 auto;
}

/* Why Us Section */
.why-us-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), #ff9800);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.why-us-card {
    background: var(--white);
    border-radius: 15px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 217, 91, 0.1);
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.why-us-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 217, 91, 0.3);
}

.why-us-card:hover::before {
    transform: translateX(0);
}

.why-us-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), #ffb347);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(255, 217, 91, 0.3);
    position: relative;
    z-index: 1;
}

.why-us-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid rgba(255, 217, 91, 0.3);
    animation: pulseIcon 3s infinite;
}

.why-us-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.why-us-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.why-us-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 25px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.why-us-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 217, 91, 0.1);
    border-radius: 8px;
    min-width: 80px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--dark-gray);
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-us-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color), #232323);
    border-radius: 15px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.why-us-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,217,91,0.1)"/></svg>');
    background-size: cover;
}

.why-us-cta p {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.why-us-cta .btn {
    position: relative;
    z-index: 1;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: var(--gold);
    color: var(--primary-color);
    border: none;
}

.why-us-cta .btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@keyframes pulseIcon {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-us-card {
        padding: 30px 25px;
    }
    
    .why-us-cta {
        padding: 30px 20px;
    }
    
    .why-us-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .why-us-card {
        padding: 25px 20px;
    }
    
    .why-us-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .why-us-card h3 {
        font-size: 1.2rem;
    }
    
    .why-us-stats {
        gap: 10px;
    }
    
    .stat {
        padding: 8px 12px;
        min-width: 70px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* RTL adjustments for Why Us Section */
body.rtl .why-us-card h3::after {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

body.rtl .why-us-card::before {
    left: auto;
    right: 0;
    transform: translateX(100%);
}

body.rtl .why-us-card:hover::before {
    transform: translateX(0);
}

/* Update animation elements selector */
.why-us-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.why-us-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fleet Section */
.fleet-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.fleet-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 217, 91, 0.1);
}

.fleet-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 217, 91, 0.3);
}

.fleet-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.05);
}

.fleet-info {
    padding: 25px;
}

.fleet-info h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.fleet-specs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.spec {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.spec i {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 8px;
}

.spec-label {
    font-size: 0.8rem;
    color: var(--dark-gray);
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.fleet-desc {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px;
}

.fleet-book-btn {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.fleet-cta {
    background: linear-gradient(135deg, var(--primary-color), #232323);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.fleet-comparison h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.fleet-comparison p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
}

.fleet-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Responsive adjustments for Fleet Section */
@media (max-width: 1200px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .fleet-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .fleet-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .fleet-card {
        margin-bottom: 20px;
    }
    
    .fleet-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .fleet-buttons .btn {
        width: 100%;
    }
}

/* How It Works Section */
/* How It Works Section - Redesigned */
.how-it-works-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), #ff9800);
}

/* Process Container */
.process-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-connector {
    position: absolute;
    left: 70px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(255, 217, 91, 0.2));
    z-index: 1;
}

/* Process Steps */
.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-visual {
    position: relative;
    width: 140px;
    flex-shrink: 0;
}

.step-number-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin-left: 35px;
}

.step-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 70px;
    background: var(--gold);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 8px 25px rgba(255, 217, 91, 0.3);
    transition: all 0.3s ease;
}

.step-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 4;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--white);
}

.step-connector {
    position: absolute;
    left: 35px;
    top: 70px;
    width: 2px;
    height: calc(100% + 60px);
    background: linear-gradient(to bottom, var(--gold), rgba(255, 217, 91, 0.2));
}

.process-step:last-child .step-connector {
    display: none;
}

/* Step Content */
.step-content {
    flex: 1;
    padding-left: 40px;
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 217, 91, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover .step-content {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 217, 91, 0.3);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 217, 91, 0.4);
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 217, 91, 0.2);
}

.step-header h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 0;
}

.step-duration {
    background: rgba(255, 217, 91, 0.1);
    color: var(--gold);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.step-content p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Step Features */
.step-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.feature-tag {
    background: rgba(255, 217, 91, 0.1);
    color: var(--gold);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 217, 91, 0.2);
    transform: translateY(-2px);
}

/* Step Actions */
.step-action-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.step-action-btn:hover {
    background: var(--gold);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Step Stats */
.step-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Security Badge */
.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 15px;
}

/* Experience Highlights */
.experience-highlights {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 500;
}

/* How It Works CTA */
.how-it-works-cta {
    background: linear-gradient(135deg, var(--primary-color), #232323);
    border-radius: 20px;
    padding: 50px;
    margin-top: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.how-it-works-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,217,91,0.1)"/></svg>');
    background-size: cover;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-actions .btn {
    padding: 12px 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-actions .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.video-modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 2;
}

.modal-content h3 {
    padding: 25px 25px 15px;
    color: var(--primary-color);
    text-align: center;
}

.video-container {
    padding: 0 25px 25px;
}

.video-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    transform: scale(1.01);
}

.video-placeholder i {
    font-size: 60px;
    color: var(--gold);
    margin-bottom: 15px;
}

.video-placeholder p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
    .process-container {
        max-width: 700px;
    }
    
    .step-visual {
        width: 100px;
    }
    
    .step-number-wrapper {
        width: 60px;
        height: 60px;
        margin-left: 20px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .step-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
        top: -8px;
        right: -8px;
    }
    
    .timeline-connector {
        left: 50px;
    }
    
    .step-connector {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        margin-bottom: 40px;
    }
    
    .step-visual {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .step-number-wrapper {
        margin: 0 auto;
    }
    
    .step-content {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .timeline-connector,
    .step-connector {
        display: none;
    }
    
    .how-it-works-cta {
        padding: 30px 20px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .step-content {
        padding: 25px 20px;
    }
    
    .step-features {
        flex-direction: column;
    }
    
    .feature-tag {
        justify-content: center;
    }
    
    .step-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .experience-highlights {
        flex-direction: column;
        gap: 10px;
    }
    
    .how-it-works-cta {
        padding: 25px 15px;
    }
}

/* RTL Support */
body.rtl .step-content {
    padding-left: 30px;
    padding-right: 40px;
}

body.rtl .step-visual {
    margin-left: 0;
    margin-right: 0;
}

body.rtl .step-number-wrapper {
    margin-left: 0;
    margin-right: 35px;
}

body.rtl .step-icon {
    left: -10px;
    right: auto;
}

body.rtl .timeline-connector {
    left: auto;
    right: 70px;
}

body.rtl .step-connector {
    left: auto;
    right: 35px;
}

body.rtl .process-step:hover .step-content {
    transform: translateX(-10px);
}

body.rtl .feature-tag i {
    margin-right: 0;
    margin-left: 8px;
}

body.rtl .step-action-btn i {
    margin-right: 0;
    margin-left: 8px;
}

@media (max-width: 768px) {
    body.rtl .step-content {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Contact Section */
.contact-section {
    background-color: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-details i {
    margin-right: 15px;
    color: var(--gold);
    font-size: 20px;
    width: 20px;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--gold);
    outline: none;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #282828;
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-desc {
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gold);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-cta .btn {
        display: none;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        gap: 30px;
    }

    .process-steps::before {
        display: none;
    }

    .step {
        text-align: left;
        display: flex;
        align-items: flex-start;
    }

    .step-number {
        margin: 0 20px 0 0;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }

    section {
        padding: 70px 0;
    }

    /* Booking Section */
    .booking-container {
        padding: 25px;
    }

    /* Our Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .services-cta {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto 15px;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--primary-color);
    z-index: 1001;
    padding: 50px 30px;
    transition: right 0.4s ease;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    padding: 0 20px;
}

.mobile-nav-links a {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
}

.whatsapp-float i {
    margin-top: 2px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
    position: fixed;
    bottom: 110px;
    right: 40px;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    width: 200px;
    text-align: center;
}

.whatsapp-tooltip:after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 20px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: var(--primary-color) transparent transparent;
}

.whatsapp-float:hover + .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 30px;
        right: 30px;
        font-size: 25px;
    }
    
    .whatsapp-tooltip {
        bottom: 90px;
        right: 30px;
        width: 180px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 22px;
    }
    
    .whatsapp-tooltip {
        bottom: 75px;
        right: 20px;
        width: 160px;
        font-size: 12px;
    }
}

/* Video Banner Section */
.video-banner-section {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #282828;
}

.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 80%;
    max-width: 800px;
}

.video-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.video-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.8s;
}

.video-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.1s;
}

/* Fallback for browsers that don't autoplay video */
.video-banner-section.fallback {
    background: linear-gradient(rgba(10, 36, 99, 0.7), rgba(10, 36, 99, 0.7)), url('assets/video-fallback.jpg') no-repeat center center/cover;
}

/* Responsive adjustments for video banner */
@media (max-width: 992px) {
    .video-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .video-banner-section {
        height: 70vh;
    }
    
    .video-content h2 {
        font-size: 2rem;
    }
    
    .video-content p {
        font-size: 1rem;
    }
    
    .video-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .video-cta .btn {
        width: 200px;
    }
}

@media (max-width: 576px) {
    .video-content h2 {
        font-size: 1.8rem;
    }
}

/* Airport Search Styles */
.airport-search-container {
    position: relative;
}

.airport-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 5px 5px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: none;
}

.airport-suggestion {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.airport-suggestion:hover {
    background-color: #f8f9fa;
}

.airport-suggestion:last-child {
    border-bottom: none;
}

.airport-name {
    font-weight: 500;
    color: var(--primary-color);
}

.airport-code {
    font-size: 0.9em;
    color: var(--light-blue);
    margin-left: 8px;
}

.airport-location {
    font-size: 0.85em;
    color: var(--dark-gray);
}

.loading-indicator {
    padding: 10px 15px;
    color: var(--light-blue);
    text-align: center;
}

.no-airports-found {
    padding: 10px 15px;
    color: var(--dark-gray);
    text-align: center;
}



/* RTL Support */
body.rtl {
    direction: rtl;
    text-align: right;
    font-family: 'Tajawal', 'Montserrat', sans-serif;
}

/* Language Selector */
.language-selector {
    position: relative;
    margin-right: 15px;
}

.language-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 120px;
    z-index: 1000;
    display: none;
    margin-top: 5px;
}

.language-dropdown.show {
    display: block;
}

.language-option {
    padding: 10px 15px;
    cursor: pointer;
    color: var(--dark-gray);
    transition: background 0.3s ease;
}

.language-option:hover {
    background: var(--light-gray);
}

/* RTL specific adjustments */
body.rtl .nav-links {
    direction: rtl;
}

body.rtl .feature-item,
body.rtl .service-card,
body.rtl .step {
    text-align: right;
}

body.rtl .feature-icon {
    margin-right: 0;
    margin-left: 15px;
}

body.rtl .process-steps::before {
    right: 0;
    left: auto;
}

body.rtl .footer-col h3:after {
    left: auto;
    right: 0;
}

body.rtl .contact-details i {
    margin-right: 0;
    margin-left: 15px;
}

body.rtl .form-group input,
body.rtl .form-group select,
body.rtl .contact-form input,
body.rtl .contact-form textarea {
    text-align: right;
}

body.rtl .hero-cta,
body.rtl .video-cta {
    direction: ltr; /* Keep buttons LTR even in RTL */
}

body.rtl .language-btn {
    direction: ltr; /* Keep language button LTR */
}

body.rtl .whatsapp-tooltip:after {
    right: auto;
    left: 20px;
}

/* Responsive adjustments for RTL */
@media (max-width: 992px) {
    body.rtl .step {
        text-align: right;
        flex-direction: row-reverse;
    }
    
    body.rtl .step-number {
        margin: 0 0 0 20px;
    }
}

@media (max-width: 576px) {
    body.rtl .step {
        flex-direction: column;
        text-align: center;
    }
    
    body.rtl .step-number {
        margin: 0 auto 15px;
    }
}

/* Yacht Charter Section */
.yacht-charter-section {
    background: #ffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.yacht-charter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), #ffb347);
}

.yacht-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.yacht-card {
    background: #282828;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 217, 91, 0.1);
}

.yacht-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(255, 217, 91, 0.2);
    border-color: rgba(255, 217, 91, 0.3);
}

.yacht-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.yacht-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.yacht-card:hover .yacht-image img {
    transform: scale(1.05);
}

.yacht-info {
    padding: 25px;
}

.yacht-info h3 {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.yacht-specs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.yacht-specs .spec {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.yacht-specs .spec i {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 8px;
}

.yacht-specs .spec-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.yacht-specs .spec-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
}

.yacht-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px;
}

.yacht-inquiry-btn {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    border-color: var(--gold);
    color: var(--gold);
}

.yacht-inquiry-btn:hover {
    background: var(--gold);
    color: var(--primary-color);
}

.yacht-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-item {
    text-align: center;
    padding: 25px;
    background: #282828;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 217, 91, 0.05);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 217, 91, 0.1);
    border-color: rgba(255, 217, 91, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), #ffb347);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 24px;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

.yacht-combo-cta {
    background: linear-gradient(135deg, var(--primary-color), #232323);
    border-radius: 15px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 217, 91, 0.1);
}

.yacht-combo-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,217,91,0.1)"/></svg>');
    background-size: cover;
}

.combo-content {
    position: relative;
    z-index: 2;
}

.combo-content h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 20px;
}

.combo-content p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.combo-benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1rem;
}

.benefit i {
    color: var(--gold);
}

.combo-btn {
    background: var(--gold);
    color: var(--primary-color);
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.combo-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.combo-btn i:first-child {
    color: var(--primary-color);
}

.combo-btn i:last-child {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .yacht-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .yacht-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .yacht-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .yacht-combo-cta {
        padding: 30px 20px;
    }
    
    .combo-content h3 {
        font-size: 1.5rem;
    }
    
    .combo-content p {
        font-size: 1rem;
    }
    
    .combo-btn {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .yacht-features {
        grid-template-columns: 1fr;
    }
    
    .yacht-combo-cta {
        padding: 25px 15px;
    }
    
    .combo-benefits {
        text-align: left;
        align-items: flex-start;
    }
    
    .benefit {
        font-size: 0.9rem;
    }
}

/* RTL adjustments for Yacht Section */
body.rtl .yacht-combo-cta::before {
    transform: scaleX(-1);
}

body.rtl .benefit {
    flex-direction: row-reverse;
}

body.rtl .combo-btn {
    flex-direction: row-reverse;
}

/* Villa Rentals Section - White Theme */
.villa-rentals-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.villa-rentals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), #ffb347);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.destination-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 217, 91, 0.1);
}

.destination-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 217, 91, 0.3);
}

.destination-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.05);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
}

.destination-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.destination-info {
    padding: 25px;
}

.destination-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--dark-gray);
    font-size: 0.85rem;
}

.feature i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.destination-info p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px;
    opacity: 0.9;
}

.destination-btn {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    border-color: var(--gold);
    color: var(--gold);
}

.destination-btn:hover {
    background: var(--gold);
    color: var(--primary-color);
}

.villa-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.villa-type-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 217, 91, 0.1);
}

.villa-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 217, 91, 0.3);
}

.type-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), #ffb347);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(255, 217, 91, 0.3);
}

.villa-type-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.villa-type-card p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.type-features {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
}

.type-features li {
    color: var(--dark-gray);
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.type-features li i {
    color: var(--gold);
    font-size: 0.8rem;
}

.villa-services {
    background: linear-gradient(135deg, var(--white), #f8f9fa);
    border-radius: 15px;
    padding: 50px;
    margin-bottom: 60px;
    border: 1px solid rgba(255, 217, 91, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.villa-services h3 {
    color: var(--primary-color);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
}

.services-subtitle {
    color: var(--dark-gray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    text-align: center;
    padding: 25px;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 217, 91, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.service-item:hover {
    background: rgba(255, 217, 91, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 217, 91, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 217, 91, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-size: 24px;
}

.service-item h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-item p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

.villa-cta {
    background: linear-gradient(135deg, var(--primary-color), #232323);
    border-radius: 15px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 217, 91, 0.1);
}

.villa-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,217,91,0.1)"/></svg>');
    background-size: cover;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-buttons .btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.cta-buttons .btn-outline:hover {
    background: var(--gold);
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .villa-types {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .villa-types {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .villa-services {
        padding: 30px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .villa-cta {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .destination-features {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .feature {
        flex-direction: row;
        gap: 8px;
    }
    
    .type-features {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .villa-services h3 {
        font-size: 1.5rem;
    }
    
    .villa-cta {
        padding: 25px 15px;
    }
}

/* RTL adjustments for Villa Section */
body.rtl .type-features {
    text-align: right;
    direction: rtl;
}

body.rtl .type-features li {
    flex-direction: row-reverse;
}

body.rtl .villa-cta::before {
    transform: scaleX(-1);
}

body.rtl .cta-buttons .btn {
    flex-direction: row-reverse;
}

/* Jets Sale & Acquisition Section */
.jets-sale-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.jets-sale-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), #ffb347);
}

.jets-process {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.jets-process::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(255, 217, 91, 0.2));
    z-index: 1;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), #ffb347);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(255, 217, 91, 0.3);
    position: relative;
    z-index: 3;
}

.step-content {
    flex: 1;
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 217, 91, 0.1);
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 217, 91, 0.3);
}

.step-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.jets-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 217, 91, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 217, 91, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), #ffb347);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(255, 217, 91, 0.3);
}

.service-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

.jets-market {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 217, 91, 0.1);
}

.market-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.market-info p {
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.market-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.market-list li {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.market-list li i {
    color: var(--gold);
    font-size: 1rem;
}

.market-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jets-cta {
    background: linear-gradient(135deg, var(--primary-color), #232323);
    border-radius: 15px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 217, 91, 0.1);
}

.jets-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,217,91,0.1)"/></svg>');
    background-size: cover;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-buttons .btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.cta-buttons .btn-outline:hover {
    background: var(--gold);
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .jets-process {
        gap: 20px;
    }
    
    .process-step {
        gap: 20px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .jets-market {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .market-stats {
        flex-direction: row;
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .jets-process::before {
        left: 30px;
    }
    
    .jets-services {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .jets-cta {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .jets-process::before {
        display: none;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .step-content {
        width: 100%;
    }
    
    .step-content:hover {
        transform: translateY(-5px);
    }
    
    .jets-services {
        grid-template-columns: 1fr;
    }
    
    .market-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .jets-cta {
        padding: 25px 15px;
    }
}

/* RTL adjustments */
body.rtl .jets-process::before {
    left: auto;
    right: 40px;
}

body.rtl .process-step {
    flex-direction: row-reverse;
}

body.rtl .step-content:hover {
    transform: translateX(-10px);
}

body.rtl .market-list li {
    flex-direction: row-reverse;
}

body.rtl .cta-buttons .btn {
    flex-direction: row-reverse;
}

@media (max-width: 992px) and (rtl) {
    body.rtl .jets-process::before {
        right: 30px;
    }
}

@media (max-width: 576px) and (rtl) {
    body.rtl .process-step {
        flex-direction: column;
    }
}

/* Global Effects */
