@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;900&display=swap');

:root {
    --primary-color: #002B49;
    --secondary-color: #42B4E6;
    --accent-color: #015C92;
    --background-light: #f8f9fa;
    --text-dark: #2C3E50;
    --success-color: #2ECC71;
}

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

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

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

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

body {
    font-family: 'Tajawal', 'Cairo', sans-serif;
    background: linear-gradient(135deg, #f8faff 0%, #eaf6fb 100%);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

.main-header {
    padding: 1.5rem 0 1rem 0;
    background-color: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    padding: 0.5rem 0;
}

.logo {
    max-height: 60px;
    width: auto;
    max-width: 100%;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

main {
    margin-top: 100px;
}

.hero-section {
    padding: 4rem 0 2rem 0;
    background: linear-gradient(120deg, #eaf6fb 60%, #fff 100%);
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.hero-img {
    flex: 1 1 350px;
    text-align: center;
}

.hero-img img {
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(66,180,230,0.10);
    max-width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.hero-img img:hover {
    transform: scale(1.04) rotate(-2deg);
}

.hero-text {
    flex: 2 1 400px;
}

.hero-title {
    font-size: 2.7rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-family: 'Tajawal', 'Cairo', sans-serif;
}

.hero-desc {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.7rem;
}

.hero-desc-highlight {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.booking-section {
    padding: 2rem 0 3rem 0;
    display: flex;
    justify-content: center;
}

.booking-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(66,180,230,0.10);
    padding: 3.5rem 2.5rem;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
}

.booking-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Tajawal', 'Cairo', sans-serif;
}

.form-label {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-label.required::after {
    content: ' *';
    color: #dc3545;
}

.form-control, .form-select {
    border-radius: 10px;
    border: 1.5px solid #e3eaf3;
    padding: 1rem 1.2rem;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    background: #f8faff;
    transition: border-color 0.2s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.15rem rgba(66,180,230,0.15);
}

/* Phone input specific styles */
.phone-input-wrapper {
    position: relative;
    margin-bottom: 1.2rem;
}

.form-control {
    width: 100%;
    height: 48px;
    /* padding: 0.375rem 120px 0.375rem 0.75rem; */
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.5;
}

.phone-prefix {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 6px 12px;
    border-right: 1px solid #dee2e6;
    border-radius: 0 8px 8px 0;
    background: #f8f9fa;
    pointer-events: none;
}

.phone-prefix span {
    color: #212529;
    font-size: 1rem;
    margin-left: 8px;
}

.flag-wrapper {
    display: flex;
    align-items: center;
}

.flag-icon {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Form label styles */
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: #212529;
}

.form-label::after {
    content: ' *';
    color: #dc3545;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-color) 60%, var(--secondary-color) 100%);
    border: none;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1.1rem 0;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(66,180,230,0.10);
    transition: background 0.2s, transform 0.2s;
    margin-top: 1rem;
}

.btn-primary:hover {
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
}

.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.footer {
    background-color: var(--text-dark);
    padding: 4rem 0 2rem;
    color: white;
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-info {
    margin-bottom: 1.5rem;
    flex: 1 1 220px;
    min-width: 220px;
}

.footer-info h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-info h3:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

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

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    width: 30px;
    text-align: center;
    margin-top: 4px;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--secondary-color);
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 2rem 0;
}

.copyright {
    font-size: 1rem;
    opacity: 0.8;
    text-align: center;
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }
    .footer .container {
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-info {
        min-width: 0;
    }
}