html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background:
        radial-gradient(circle at top right, rgba(68, 184, 184, 0.12), transparent 28rem),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 45%, #f8fafc 100%);
}

html[lang='ar'] body {
    font-family: 'Tajawal', sans-serif;
}

.font-display {
    font-family: 'Manrope', sans-serif;
}

html[lang='ar'] .font-display {
    font-family: 'Tajawal', sans-serif;
}

.nav-link,
.mobile-link {
    color: #475569;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 180ms ease;
}

.nav-link:hover,
.mobile-link:hover {
    color: #176f78;
}

.lang-toggle {
    border-radius: 9999px;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    padding: 0.6rem 0.95rem;
    transition: all 180ms ease;
}

.lang-toggle.is-active {
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 32, 0.1);
    color: #176f78;
}

.glass-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(203, 213, 225, 0.9);
    backdrop-filter: blur(18px);
}

.section-shell {
    padding: 5rem 0;
}

.section-kicker {
    color: #176f78;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.section-title {
    margin-top: 1rem;
    max-width: 52rem;
    font-size: clamp(2rem, 3vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
}

.section-copy {
    margin-top: 1.25rem;
    max-width: 48rem;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.9rem;
}

.image-placeholder {
    align-items: flex-end;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(15, 23, 32, 0.2)),
        radial-gradient(circle at top left, rgba(68, 184, 184, 0.28), transparent 35%),
        radial-gradient(circle at bottom right, rgba(200, 111, 74, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(243, 251, 251, 0.95), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(203, 213, 225, 0.9);
    border-radius: 2rem;
    display: flex;
    overflow: hidden;
    padding: 1.25rem;
    position: relative;
}

.image-placeholder::before {
    color: rgba(23, 111, 120, 0.14);
    content: '\f03e';
    font-family: 'Font Awesome 6 Free';
    font-size: 5rem;
    font-weight: 900;
    position: absolute;
    right: 1.25rem;
    top: 1rem;
}

html[dir='rtl'] .image-placeholder::before {
    left: 1.25rem;
    right: auto;
}

.image-tag {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(203, 213, 225, 0.9);
    border-radius: 9999px;
    color: #0f1720;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.7rem 1rem;
    position: relative;
    z-index: 1;
}

.stat-card,
.feature-card,
.city-card,
.package-card,
.story-card,
.faq-card {
    border: 1px solid rgba(203, 213, 225, 0.9);
    border-radius: 1.75rem;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 45px rgba(15, 23, 32, 0.07);
}

.city-card {
    overflow: hidden;
}

.destination-media {
    border-radius: 1.25rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #e2e8f0;
}

.destination-media img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.why-media {
    border-radius: 1.25rem;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #e2e8f0;
}

.why-media img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.contact-bullet {
    align-items: center;
    display: flex;
    gap: 0.75rem;
    color: #334155;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.form-field span {
    color: #334155;
    font-size: 0.9rem;
    font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 1rem;
    color: #0f1720;
    outline: none;
    padding: 0.95rem 1rem;
    width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #94a3b8;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(68, 184, 184, 0.8);
    box-shadow: 0 0 0 3px rgba(68, 184, 184, 0.14);
}

.form-status {
    border-radius: 1rem;
    display: none;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 0.9rem 1rem;
}

.form-status[data-state='success'],
.form-status[data-state='error'] {
    display: block;
}

.form-status[data-state='success'] {
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.form-status[data-state='error'] {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

html[dir='rtl'] .nav-link,
html[dir='rtl'] .mobile-link,
html[dir='rtl'] .section-kicker {
    letter-spacing: normal;
}

@media (max-width: 640px) {
    .section-shell {
        padding: 4.25rem 0;
    }
}
