body {
    font-family: 'Tajawal', 'Noto Sans Arabic', sans-serif;
    background-color: #fff7ed;
    margin: 0;
    padding: 0;
    color: #111827;
}

.navbar {
    background-color: #3E2A0A;
    transition: background 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar.scrolled {
    background-color: #3E2A0A;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.nav-link {
    color: #fff !important;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #c2410c !important;
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 0;
    padding-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.3) 0%, rgba(17, 24, 39, 0.1) 100%);
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-text {
    padding: 20px;
    border-radius: 10px;
    position: relative;
    margin: 0 auto;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    z-index: -1;
}

.hero h1 {
    font-size: 4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
}

.hero p {
    font-size: 1.8rem;
    margin: 20px 0;
    position: relative;
    z-index: 2;
}

.btn-primary {
    background-color: #c2410c;
    border-color: #c2410c;
    padding: 12px 35px;
    font-size: 1.2rem;
    transition: transform 0.3s, background-color 0.3s;
    z-index: 3;
    margin-top: 20px;
}

.btn-primary:hover {
    background-color: #9a3412;
    border-color: #9a3412;
    transform: scale(1.05);
}

.section {
    padding: 80px 0;
    background: #ffffff;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.section h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #111827;
    text-align: center;
    font-weight: 700;
}

.gallery-swiper {
    max-width: 100%;
    margin: 0 auto;
}

.swiper-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.interactive-image:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.swiper-button-next, .swiper-button-prev {
    color: #c2410c;
    transition: opacity 0.3s;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    opacity: 0.8;
}

.swiper-pagination-bullet-active {
    background-color: #c2410c;
}

.why-us ul {
    list-style: none;
    padding: 0;
}

.why-us li {
    font-size: 1.3rem;
    margin: 15px 0;
    display: flex;
    align-items: center;
}

.why-us i {
    color: #c2410c;
    margin-left: 15px;
    font-size: 1.5rem;
}

.table {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff7ed;
}

.table th, .table td {
    padding: 15px;
    text-align: center;
    color: #111827;
}

.table th {
    background-color: #c2410c;
    color: #fff;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card-title {
    font-size: 1.8rem;
    color: #111827;
}

.card-text {
    font-size: 1.1rem;
    color: #4b5563;
}

.booking-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.booking-form {
    max-width: 500px;
    width: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.booking-form .form-control, .booking-form .form-select {
    border-radius: 8px;
    padding: 12px;
    font-size: 1.1rem;
    border: 1px solid #c2410c;
    transition: border-color 0.3s, box-shadow 0.3s;
    max-width: 100%;
}

.booking-form .form-control:focus, .booking-form .form-select:focus {
    border-color: #9a3412;
    box-shadow: 0 0 8px rgba(194, 65, 12, 0.3);
}

.booking-form .form-label {
    font-weight: 600;
    color: #111827;
}

.booking-form .select2-container--default .select2-selection--single {
    border: 1px solid #c2410c;
    border-radius: 8px;
    height: 48px;
    padding: 10px;
    background-color: #fff;
}

.booking-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 28px;
    color: #111827;
}

.booking-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
}

.booking-form .is-invalid {
    border-color: #dc3545;
}

.booking-form .invalid-feedback {
    font-size: 0.9rem;
    color: #dc3545;
}

.contact-section {
    background-color: #f9fafb;
    padding: 60px 0;
    border-top: 1px solid #e5e7eb;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: #4b5563;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.contact-info p {
    margin: 0;
    font-size: 1.2rem;
    color: #111827;
    display: flex;
    align-items: center;
}

.contact-icon {
    color: #3E2A0A;
    text-decoration: none;
    margin-left: 10px;
    font-weight: 600;
    display: inline-block;
    padding: 10px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.social-icon {
    color: #fff;
    transition: color 0.3s, transform 0.3s;
    padding: 10px;
    border-radius: 50%;
    background: #c2410c;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    color: #fff;
    transform: scale(1.1);
    background: #9a3412;
}

footer.bg-dark {
    background: #3E2A0A !important;
    padding: 20px 0;
    border-top: 1px solid #3E2A0A;
    transition: background-color 0.3s ease;
}

footer p {
    margin: 0;
    font-size: 1rem;
    color: #fff;
}

footer .social-icon {
    background: #000000; /* طھط£ظƒظٹط¯ ظ„ظˆظ† ط£ظٹظ‚ظˆظ†ط§طھ ط§ظ„طھظˆط§طµظ„ */
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.2rem; }
    .section h2 { font-size: 2rem; }
    .navbar-nav { text-align: center; }
    .swiper-slide img { height: 200px; }
    .booking-form { max-width: 100%; padding: 15px; }
    .booking-form-container { min-height: 50vh; }
    .contact-info { gap: 15px; }
    .contact-info p { margin-bottom: 10px; }
    .social-links { gap: 10px; }
}

/* طھط؛ظٹظٹط± ظ„ظˆظ† ط£ظٹظ‚ظˆظ†ط© ط§ظ„ظ‚ط§ط¦ظ…ط© ط§ظ„ظ…ظ†ط³ط¯ظ„ط© ط¥ظ„ظ‰ ط¨ط±طھظ‚ط§ظ„ظٹ */
.navbar .navbar-toggler {
    border-color: rgba(194, 65, 12, 0.2);
}

.navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23c2410c' stroke-width='2.5' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(194, 65, 12, 0.5);
}

[lang="en"] {
    font-family: 'Montserrat', Arial, sans-serif;
}