/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #e0f2f7; /* لون أزرق فاتح جداً للخلفية العامة */
    direction: rtl; /* لضمان اللغة العربية من اليمين لليسار */
    text-align: right; /* محاذاة النص لليمين */
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

h1, h2, h3 {
    color: #0d47a1; /* أزرق داكن للعناوين */
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: #0d47a1;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    color: #fff;
    background-color: #1976d2; /* أزرق متوسط */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #1565c0; /* أزرق أغمق عند التحويم */
}

.input-field {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Cairo', sans-serif;
}

/* Header */
header {
    background-color: #2196f3; /* أزرق سماوي */
    color: #fff;
    padding: 20px 0;
    border-bottom: 3px solid #1976d2;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo h1 {
    color: #fff;
    margin: 0;
    font-size: 2.2em;
}

header .logo p {
    font-size: 0.9em;
    opacity: 0.9;
    margin-top: 5px;
}

header nav ul {
    display: flex;
}

header nav ul li {
    margin-right: 20px;
}

header nav ul li a {
    color: #fff;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #bbdefb; /* أزرق فاتح جداً عند التحويم */
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://via.placeholder.com/1500x800/2196f3/ffffff?text=Welcome+On+Board+Background') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h2 {
    color: #fff;
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.flight-search {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.flight-search .input-field {
    width: calc(33% - 10px); /* 33% لكل حقل مع فجوة */
    min-width: 250px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
}

.flight-search .btn {
    padding: 12px 25px;
    font-size: 1.1em;
}

/* Sections */
section {
    padding: 60px 0;
    text-align: center;
}

section:nth-of-type(odd) {
    background-color: #f5faff; /* أزرق فاتح جداً جداً */
}

.about p, .contact p {
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.1em;
}

/* Services Section */
.service-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.service-cards .card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 30px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-cards .card:hover {
    transform: translateY(-10px);
}

.service-cards .card h3 {
    color: #1976d2;
    margin-bottom: 10px;
}

/* Contact Section */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: #0d47a1; /* أزرق داكن جداً */
    color: #fff;
    text-align: center;
    padding: 20px 0;
}