/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Arabic Typography */
[dir="rtl"] {
    font-family: 'Cairo', 'Poppins', sans-serif;
}

[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
}

[dir="rtl"] .hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
}

[dir="rtl"] .hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.4;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-brand h1 {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin: 0;
}

.desktop-name {
    display: inline;
}

.mobile-name {
    display: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2c5aa0;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.mobile-language-switcher {
    display: none;
    gap: 0.5rem;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.lang-btn {
    background: transparent;
    border: 2px solid #2c5aa0;
    color: #2c5aa0;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 50px;
}

.lang-btn:hover {
    background: #2c5aa0;
    color: white;
}

.lang-btn.active {
    background: #2c5aa0;
    color: white;
}

[dir="rtl"] .language-switcher {
    margin-right: 1rem;
    margin-left: 0;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(44, 90, 160, 0.1);
    color: #2c5aa0;
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.8) 0%, rgba(255, 193, 7, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: white;
    font-weight: 600;
}

.hero-offer {
    margin-bottom: 1rem;
}

.price {
    font-size: 4rem;
    font-weight: 700;
    color: #ffc107;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.price-text {
    font-size: 1.2rem;
    margin-left: 1rem;
}

.offer-validity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffc107, #ff8c00);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: inherit;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.4);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Offer Section */
.offer-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.offer-grid {
    display: flex;
    justify-content: center;
}

.offer-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.offer-card.highlight {
    border: 3px solid #ffc107;
    transform: scale(1.05);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #2c5aa0, #ffc107);
}

.offer-header {
    text-align: center;
    margin-bottom: 2rem;
}

.offer-header h3 {
    color: #2c5aa0;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.offer-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: #666;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5aa0;
}

.per-person {
    color: #666;
    font-size: 1rem;
}

.offer-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
}

.feature i {
    color: #2c5aa0;
    font-size: 1.2rem;
    width: 20px;
}

.feature span {
    color: #333;
    font-weight: 500;
}

.validity-banner {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1.5rem;
}

.validity-banner i {
    margin-right: 0.5rem;
}

/* Hotel Section */
.hotel-section {
    padding: 5rem 0;
    background: white;
}

.hotel-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.stars {
    font-size: 1.5rem;
}

.rating-text {
    color: #666;
    font-weight: 500;
}

.hotel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.hotel-info h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.hotel-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.highlight-item i {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.highlight-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    margin: 0;
    font-size: 0.9rem;
}

.hotel-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.amenities-section {
    margin-top: 3rem;
}

.amenities-section h3 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 2rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.amenity:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.amenity i {
    color: #2c5aa0;
    font-size: 1.2rem;
    width: 20px;
}

/* Location Section */
.location-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-info h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.location-features {
    margin-top: 2rem;
}

.location-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.location-item i {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.location-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.location-item p {
    margin: 0;
    font-size: 0.9rem;
}

.map-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.map-container h4 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 1rem;
}

.map-embed {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.map-address {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.map-address i {
    color: #2c5aa0;
    margin-right: 0.5rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #1a365d 100%);
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.countdown-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #ffc107;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ffc107, #ff8c00);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.phone-display {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 0.2rem;
}

.phone-number {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #2c5aa0;
}

[dir="rtl"] .phone-number {
    font-family: 'Cairo', 'Courier New', monospace;
    direction: ltr;
    text-align: right;
}

/* WhatsApp Contact Styling */
.contact-item .fab.fa-whatsapp {
    color: #25d366;
    font-size: 1.8rem;
}

.whatsapp-number {
    color: #25d366 !important;
    font-weight: 700;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-link::before {
    content: "\f232";
    font-family: "Font Awesome 5 Brands";
    font-size: 1rem;
}

[dir="rtl"] .whatsapp-link {
    flex-direction: row-reverse;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.contact-item i {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0;
    color: #666;
}

.inquiry-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #2c5aa0, #1a365d);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo h3 {
    color: #ffc107;
    margin: 0;
}

.footer-section h4 {
    color: #ffc107;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffc107;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #444;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffc107;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

.footer-bottom a {
    color: #ffc107;
    text-decoration: none;
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .container {
    direction: rtl;
}

[dir="rtl"] .nav-brand {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-links {
    direction: rtl;
}

[dir="rtl"] .hero-content {
    text-align: right;
}

[dir="rtl"] .section-header {
    text-align: right;
}

[dir="rtl"] .feature {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .highlight-item,
[dir="rtl"] .location-item,
[dir="rtl"] .contact-item {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .amenity {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .offer-price {
    flex-direction: row-reverse;
}

[dir="rtl"] .cta-content {
    text-align: right;
}

[dir="rtl"] .footer-content {
    text-align: right;
}

[dir="rtl"] .map-address {
    text-align: right;
}

[dir="rtl"] .offer-validity {
    flex-direction: row-reverse;
}

[dir="rtl"] .countdown-info {
    flex-direction: row-reverse;
}

[dir="rtl"] .hotel-content {
    direction: rtl;
}

[dir="rtl"] .location-content {
    direction: rtl;
}

[dir="rtl"] .contact-content {
    direction: rtl;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 0;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        display: flex;
    }
    
    .nav-links.mobile-active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-links a {
        padding: 1rem 2rem;
        border-bottom: 1px solid #eee;
        text-align: center;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    /* Hide desktop language switcher on mobile */
    .nav-links .language-switcher {
        display: none;
    }
    
    /* Show mobile language switcher */
    .mobile-language-switcher {
        display: flex;
        position: fixed;
        top: 80px;
        right: 0;
        left: 0;
        z-index: 1000;
        background: rgba(44, 90, 160, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: center;
        gap: 1rem;
        padding: 1rem;
    }
    
    .mobile-language-switcher .lang-btn {
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: white;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        min-width: 60px;
        font-weight: 700;
    }
    
    .mobile-language-switcher .lang-btn:hover,
    .mobile-language-switcher .lang-btn.active {
        background: #ffc107;
        border-color: #ffc107;
        color: #2c5aa0;
    }
    
    /* Mobile header adjustments */
    .nav-brand {
        flex: 1;
        gap: 0.5rem;
        max-width: calc(100% - 60px); /* Account for mobile menu button */
    }
    
    .nav-brand h1 {
        font-size: 1rem;
        line-height: 1.1;
        margin: 0;
    }
    
    .desktop-name {
        display: none;
    }
    
    .mobile-name {
        display: inline;
    }
    
    .logo {
        height: 35px;
        flex-shrink: 0;
    }
    
    .lang-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        min-width: 60px;
    }
    
    /* RTL Mobile Menu */
    [dir="rtl"] .nav-links {
        text-align: center;
    }
    
    [dir="rtl"] .language-switcher {
        flex-direction: row;
    }
}
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 3rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hotel-content,
    .location-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .offer-card.highlight {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .hero-offer {
        flex-direction: column;
        align-items: center;
    }
    
    .price-text {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    /* Extra small mobile adjustments */
    .nav-brand h1 {
        font-size: 0.9rem;
        max-width: 150px;
    }
    
    .logo {
        height: 30px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .container {
        padding: 0 10px;
    }
}

/* Smooth animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img[src=""] {
    opacity: 0;
}

/* Booking Modal Styles */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.booking-modal.active {
    opacity: 1;
    pointer-events: all;
}

.booking-modal .modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    overflow-y: auto;
    max-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 2rem;
}

.booking-form-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.booking-header h2 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.package-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.package-summary h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.summary-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.price-highlight {
    color: #ffc107;
    font-size: 1.2rem;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.form-section h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.travelers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.traveler-input label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.number-input {
    display: flex;
    align-items: center;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.number-input input {
    border: none;
    padding: 0.8rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    background: white;
    width: 60px;
}

.minus-btn, .plus-btn {
    background: #2c5aa0;
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background 0.3s ease;
}

.minus-btn:hover, .plus-btn:hover {
    background: #1a365d;
}

.minus-btn:disabled, .plus-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.total-travelers {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 1.1rem;
}

.date-inputs, .contact-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.booking-form .form-group {
    display: flex;
    flex-direction: column;
}

.booking-form .form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.booking-form .form-group input,
.booking-form .form-group textarea {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.booking-form .form-group input:focus,
.booking-form .form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.booking-form .form-group small {
    margin-top: 0.3rem;
    color: #666;
    font-size: 0.85rem;
}

.cost-summary {
    background: linear-gradient(135deg, #2c5aa0 0%, #1a365d 100%);
    color: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.cost-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.cost-total {
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    margin-top: 1rem;
    padding-top: 1rem;
    font-size: 1.2rem;
}

.total-amount {
    color: #ffc107;
    font-size: 1.4rem;
}

.infant-note {
    font-style: italic;
    opacity: 0.9;
}

.form-actions {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.book-submit-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    width: 100%;
    max-width: 400px;
    justify-content: center;
}

.book-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.return-home-btn {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.3);
    width: 100%;
    max-width: 300px;
    justify-content: center;
}

.return-home-btn:hover {
    background: linear-gradient(135deg, #495057, #343a40);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
}

.whatsapp-note {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* RTL Support for Booking Form */
[dir="rtl"] .booking-form-container {
    text-align: right;
}

[dir="rtl"] .summary-item,
[dir="rtl"] .cost-item {
    text-align: right;
}

[dir="rtl"] .number-input {
    flex-direction: row-reverse;
}

[dir="rtl"] .whatsapp-note {
    flex-direction: row-reverse;
}

[dir="rtl"] .book-submit-btn {
    flex-direction: row-reverse;
}

[dir="rtl"] .return-home-btn {
    flex-direction: row-reverse;
}

/* Mobile Responsiveness for Booking Modal */
@media (max-width: 768px) {
    .booking-form-container {
        margin: 1rem auto;
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .travelers-grid {
        grid-template-columns: 1fr;
    }
    
    .date-inputs,
    .contact-inputs {
        grid-template-columns: 1fr;
    }
    
    .summary-details {
        grid-template-columns: 1fr;
    }
    
    .cost-item {
        font-size: 0.9rem;
    }
    
    .book-submit-btn,
    .return-home-btn {
        width: 100%;
        max-width: none;
        margin: 0.5rem 0;
    }
    
    .form-actions {
        gap: 1rem;
    }
}