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

body {
    font-family: 'Inter', 'Noto Sans Arabic', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    transition: all 0.3s ease;
}

/* Enhanced RTL Support */
[dir="rtl"] {
    font-family: 'Noto Sans Arabic', 'Inter', sans-serif;
}

[dir="rtl"] .container,
[dir="rtl"] .nav-wrapper,
[dir="rtl"] .header-controls,
[dir="rtl"] .hero-features,
[dir="rtl"] .form-row {
    direction: rtl;
}

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

[dir="rtl"] .nav-list {
    padding-left: 0;
    padding-right: 0;
}

[dir="rtl"] .header-controls {
    order: -1;
}

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

/* Additional RTL Support */
[dir="rtl"] .hotel-header {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .hotel-location {
    direction: rtl;
    justify-content: flex-end;
}

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

[dir="rtl"] .filter-controls {
    direction: rtl;
}

[dir="rtl"] .category-filters {
    direction: rtl;
}

[dir="rtl"] .contact-item {
    direction: rtl;
    text-align: right;
}

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

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

[dir="rtl"] .modal-hotel-info {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .detailed-price-row {
    direction: rtl;
}

[dir="rtl"] .room-info {
    text-align: right;
}

/* Language Button Enhancement */
.language-toggle {
    border: 1px solid #e9ecef;
}

.lang-btn {
    min-width: 35px;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    background: #e9ecef;
    color: #333;
}

.lang-btn.active:hover {
    background: #a01729;
    color: white;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Logo image styles removed */

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c41e3a;
}

.main-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

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

.main-nav a:hover {
    color: #c41e3a;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c41e3a;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Currency Converter */
.currency-converter {
    position: relative;
}

.currency-display {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.currency-display:hover {
    background: #e9ecef;
    border-color: #c41e3a;
}

.currency-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    max-height: 300px;
    overflow-y: auto;
    transform: translateY(10px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.currency-dropdown.show {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.currency-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f8f9fa;
}

.currency-option:hover {
    background: #f8f9fa;
}

.currency-option:last-child {
    border-bottom: none;
}

.currency-code {
    font-weight: 600;
    color: #c41e3a;
    min-width: 45px;
}

.currency-name {
    font-size: 14px;
    color: #666;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 4px;
    gap: 2px;
}

.lang-btn {
    padding: 6px 12px;
    border: none;
    background: transparent;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.8), rgba(0, 100, 0, 0.6));
    z-index: -1;
}

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

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

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.feature i {
    font-size: 1.2rem;
    color: #ffd700;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #c41e3a, #dc3545);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(196, 30, 58, 0.4);
    background: linear-gradient(135deg, #a01729, #c41e3a);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #c41e3a, #228b22);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Package Selection */
.packages-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.package-selector {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.package-tabs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.package-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 2rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.package-tab:hover,
.package-tab.active {
    border-color: #c41e3a;
    background: linear-gradient(135deg, #c41e3a, #dc3545);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.2);
}

.nights {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price-from {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.2rem;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #228b22;
}

.package-tab:hover .price,
.package-tab.active .price {
    color: #ffd700;
}

/* Filter Section */
.filter-section {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid #e9ecef;
}

.filter-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.category-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #666;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: #c41e3a;
    background: #c41e3a;
    color: white;
}

.sort-controls select {
    padding: 10px 20px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    background: white;
    color: #666;
    font-weight: 500;
    cursor: pointer;
    outline: none;
}

.sort-controls select:focus {
    border-color: #c41e3a;
}

/* Hotels Section */
.hotels-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.hotel-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hotel-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.hotel-content {
    padding: 1.5rem;
}

.hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.hotel-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.hotel-category {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #c41e3a, #dc3545);
    color: white;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.hotel-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    margin-bottom: 1rem;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    display: inline-block;
    padding: 4px 10px;
    background: #f8f9fa;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #666;
}

.hotel-pricing {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.room-type {
    font-weight: 500;
    color: #666;
    font-size: 0.9rem;
}

.price-value {
    font-weight: 700;
    color: #228b22;
    font-size: 1.1rem;
}

.hotel-actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
}

.view-details-btn,
.book-now-btn {
    flex: 1;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-details-btn {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e9ecef;
}

.view-details-btn:hover {
    background: #e9ecef;
    color: #333;
}

.book-now-btn {
    background: linear-gradient(135deg, #c41e3a, #dc3545);
    color: white;
}

.book-now-btn:hover {
    background: linear-gradient(135deg, #a01729, #c41e3a);
    transform: translateY(-2px);
}

.load-more-container {
    text-align: center;
}

.load-more-btn {
    padding: 15px 40px;
    background: white;
    border: 2px solid #c41e3a;
    color: #c41e3a;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #c41e3a;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.2);
}

/* Destinations Section */
.destinations-section {
    padding: 6rem 0;
    background: white;
}

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

.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.destination-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-content {
    padding: 2rem;
}

.destination-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.destination-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.destination-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.destination-highlights span {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, #c41e3a, #dc3545);
    color: white;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

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

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Contact logo styles removed */

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #c41e3a, #dc3545);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.2rem;
}

.contact-item a,
.contact-item span {
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

.contact-item a:hover {
    color: #c41e3a;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #c41e3a;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 5px;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -8px;
    left: 10px;
    font-size: 0.8rem;
    color: #c41e3a;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #c41e3a, #dc3545);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #a01729, #c41e3a);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
}

/* Footer */
.footer {
    background: #333;
    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-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #c41e3a;
}

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

/* Footer logo image styles removed */

.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: #c41e3a;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-contact i {
    color: #c41e3a;
    width: 20px;
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

/* Booking Modal Specific Styles */
.booking-modal-content {
    max-width: 600px;
    max-height: 90vh;
}

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

.booking-header h2 {
    color: #c41e3a;
    margin-bottom: 1rem;
}

.hotel-summary h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.booking-package {
    color: #666;
    margin-bottom: 0.5rem;
}

.booking-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #228b22;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #c41e3a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        height: 50vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .package-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .package-tab {
        width: 100%;
        max-width: 200px;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .category-filters {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hotels-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .currency-dropdown {
        right: auto;
        left: 0;
    }
    
    [dir="rtl"] .currency-dropdown {
        left: auto;
        right: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }
    
    .booking-modal-content {
        margin: 5% auto;
        width: 95%;
        max-width: 500px;
    }
}

/* Booking Form Styles */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #c41e3a;
}

.form-section h4 {
    color: #c41e3a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Guest Counters */
.guest-counters {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.counter-group label {
    font-weight: 500;
    color: #333;
    flex: 1;
}

.counter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.25rem;
}

.counter-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: #c41e3a;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.counter-btn:hover {
    background: #a01729;
}

.counter-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.counter input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    color: #333;
}

/* Date Inputs */
.date-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.nights-display {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 2px solid #28a745;
    color: #28a745;
    font-weight: 600;
}

.nights-display span:last-child {
    font-size: 1.2rem;
    margin-left: 0.5rem;
}

/* Contact Inputs */
.contact-inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-form .form-group {
    position: relative;
    margin-bottom: 0;
}

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

.booking-form .form-group input,
.booking-form .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

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

.booking-form .form-group input:required:invalid {
    border-color: #dc3545;
}

.booking-form .form-group input:required:valid {
    border-color: #28a745;
}

/* Special Requests */
.booking-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* Booking Actions */
.booking-actions {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    margin-top: 1rem;
}

.cancel-btn {
    padding: 12px 20px;
    border: 2px solid #6c757d;
    background: white;
    color: #6c757d;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    background: #6c757d;
    color: white;
}

.submit-booking-btn {
    padding: 12px 20px;
    border: none;
    background: #25d366;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.submit-booking-btn:hover {
    background: #20b954;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.submit-booking-btn i {
    font-size: 1.2rem;
}

/* RTL Support for Booking Form */
[dir="rtl"] .counter-group {
    flex-direction: row-reverse;
}

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

[dir="rtl"] .date-inputs {
    direction: rtl;
}

[dir="rtl"] .booking-actions {
    direction: rtl;
}

/* Mobile Responsive for Booking Form */
@media (max-width: 768px) {
    .date-inputs {
        grid-template-columns: 1fr;
    }
    
    .booking-actions {
        grid-template-columns: 1fr;
    }
    
    .counter-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .counter-group label {
        text-align: center;
    }
    
    .counter {
        justify-content: center;
    }
}