/* Global Styles & Variables */
:root {
    --primary-color: #F39C12;
    --secondary-color: #2C5F9F;
    --accent-color: #E67E22;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

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

/* Language Toggle */
.ar { display: inline; }
.en { display: none; }

[lang="en"] .ar { display: none; }
[lang="en"] .en { display: inline; }

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

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--secondary-color), #1e4a7a);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--primary-color);
}

.controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.currency-selector {
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}

.currency-selector:hover {
    background: rgba(255, 255, 255, 0.2);
}

.currency-selector option {
    background: var(--secondary-color);
    color: var(--white);
}

.lang-toggle {
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-toggle:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(44, 95, 159, 0.9), rgba(243, 156, 18, 0.8)), 
                url('https://images.unsplash.com/photo-1512632578888-169bbbc64f33?w=1600&q=80') center/cover;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 80px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    min-width: 120px;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.4);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.5);
}

/* Packages Section */
.packages {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 20px;
}

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

.package-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.package-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

[dir="ltr"] .package-badge {
    right: auto;
    left: 20px;
}

.package-featured {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #E74C3C;
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

[dir="ltr"] .package-featured {
    left: auto;
    right: 20px;
}

.package-content {
    padding: 30px;
}

.package-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.package-schedule {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.package-schedule i {
    color: var(--primary-color);
}

.package-highlights {
    margin-bottom: 25px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.highlight-item i {
    color: var(--secondary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.package-prices {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #E0E0E0;
}

.price-row:last-child {
    border-bottom: none;
}

.price-label {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.price-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.child-price {
    opacity: 0.8;
}

.child-price .price-label {
    font-size: 0.85rem;
}

.btn-details {
    width: 100%;
    padding: 15px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-details:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.feature:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(-5px);
}

[dir="ltr"] .feature:hover {
    transform: translateX(5px);
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature:hover i {
    color: var(--white);
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-light);
    font-size: 1rem;
}

.contact-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--secondary-color), #1e4a7a);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
    background: var(--white);
    padding: 10px;
    border-radius: 10px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-social a[href*="facebook"]:hover {
    background: #1877F2;
}

.footer-social a[href*="instagram"]:hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.footer-social a[href*="whatsapp"]:hover {
    background: #25D366;
}

.footer-social a[href*="mailto"]:hover {
    background: #EA4335;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--white);
    margin: 50px auto;
    padding: 0;
    width: 90%;
    max-width: 900px;
    border-radius: 20px;
    position: relative;
    animation: slideUp 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    color: var(--white);
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: var(--transition);
}

[dir="ltr"] .modal-close {
    right: auto;
    left: 25px;
}

.modal-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.modal-body {
    padding: 0;
}

.modal-header {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.modal-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.modal-header-overlay h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
}

.modal-content-body {
    padding: 40px;
}

.itinerary-section {
    margin-bottom: 30px;
}

.itinerary-section h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.itinerary-section h3 i {
    color: var(--primary-color);
}

.day-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

[dir="ltr"] .day-item {
    border-left: none;
    border-right: 4px solid var(--primary-color);
}

.day-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.day-item ul {
    padding-right: 25px;
    margin-top: 15px;
}

[dir="ltr"] .day-item ul {
    padding-right: 0;
    padding-left: 25px;
}

.day-item li {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.6;
}

.includes-section {
    background: #E8F5E9;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.include-item i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.excludes-section {
    background: #FFEBEE;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.exclude-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.exclude-item i {
    color: #F44336;
    font-size: 1.2rem;
}

.book-now-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.book-now-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.book-now-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.book-now-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 95px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 20px 0;
    }

    [dir="ltr"] .nav-menu {
        left: auto;
        right: -100%;
    }

    .nav-menu.active {
        left: 0;
    }

    [dir="ltr"] .nav-menu.active {
        left: auto;
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-features {
        gap: 15px;
    }

    .feature-item {
        min-width: 100px;
        padding: 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .modal-content {
        width: 95%;
        margin: 20px auto;
    }

    .modal-header {
        height: 200px;
    }

    .modal-header-overlay {
        padding: 20px;
    }

    .modal-header-overlay h2 {
        font-size: 1.8rem;
    }

    .modal-content-body {
        padding: 25px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-features {
        flex-direction: column;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .controls {
        flex-direction: column;
        width: 100%;
    }

    .currency-selector, .lang-toggle {
        width: 100%;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Hotel List Styles */
.hotels-list-section {
    margin: 40px 0;
}

.hotels-list-section h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: center;
}

.hotel-item {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border: 2px solid #E8E8E8;
}

.hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    flex-wrap: wrap;
    gap: 15px;
}

.hotel-name-section {
    flex: 1;
}

.hotel-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.hotel-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.hotel-location {
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hotel-location i {
    color: var(--primary-color);
}

.hotel-pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: var(--white);
}

.hotel-pricing-table thead {
    background: linear-gradient(135deg, #6B5B95, #8A7BA8);
    color: var(--white);
}

.hotel-pricing-table th {
    padding: 15px 10px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hotel-pricing-table tbody tr {
    border-bottom: 1px solid #E8E8E8;
}

.hotel-pricing-table tbody tr:nth-child(even) {
    background: #F9F9F9;
}

.hotel-pricing-table tbody tr:hover {
    background: #FFF8E1;
}

.hotel-pricing-table td {
    padding: 12px 10px;
    text-align: center;
    font-size: 0.95rem;
    border: 1px solid #E8E8E8;
    color: var(--text-dark);
}

.hotel-pricing-table .duration-cell {
    font-weight: 600;
    background: #F5F5F5;
}

.hotel-pricing-table .price-cell {
    font-weight: 700;
    color: var(--secondary-color);
}

.hotel-book-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.hotel-book-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.hotel-book-button i {
    margin-left: 8px;
}

[dir="ltr"] .hotel-book-button i {
    margin-left: 0;
    margin-right: 8px;
}

.hotel-actions {
    text-align: center;
    margin-top: 15px;
}

/* Important Notes Section */
.important-notes-section {
    margin: 40px 0;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
}

.important-notes-section h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 30px 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.important-notes-section h3:first-of-type {
    margin-top: 0;
}

.important-notes-section h3 i {
    color: var(--primary-color);
}

.note-highlight {
    background: linear-gradient(135deg, #FFF3CD, #FFF8E1);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

[dir="ltr"] .note-highlight {
    border-left: none;
    border-right: 4px solid var(--primary-color);
}

.note-highlight i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.note-highlight p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.notes-list {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.note-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    margin-bottom: 15px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.note-item:last-child {
    margin-bottom: 0;
}

.note-item:hover {
    background: #E3F2FD;
    transform: translateX(-5px);
}

[dir="ltr"] .note-item:hover {
    transform: translateX(5px);
}

.note-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.note-item.important {
    background: #FFEBEE;
    border-left: 3px solid #F44336;
}

[dir="ltr"] .note-item.important {
    border-left: none;
    border-right: 3px solid #F44336;
}

.note-item.important i {
    color: #F44336;
}

.note-item.important:hover {
    background: #FFCDD2;
}

.tax-notice {
    background: linear-gradient(135deg, #E8F5E9, #F1F8E9);
    border: 2px solid #4CAF50;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.tax-notice i {
    color: #4CAF50;
    font-size: 1.5rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.tax-notice p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Lattakia Policy Section */
.lattakia-policy-section {
    background: linear-gradient(135deg, #E3F2FD, #F3E5F5);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    border: 2px solid var(--secondary-color);
}

.lattakia-policy-section h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lattakia-policy-section h4 i {
    color: var(--primary-color);
}

.policy-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.policy-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text-dark);
}

.policy-list li i {
    color: #4CAF50;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.transport-note {
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

[dir="ltr"] .transport-note {
    border-left: none;
    border-right: 4px solid var(--primary-color);
}

.transport-note i {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.transport-note strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.transport-note p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Responsive Hotel Tables */
@media (max-width: 768px) {
    .hotel-pricing-table {
        font-size: 0.85rem;
    }
    
    .hotel-pricing-table th,
    .hotel-pricing-table td {
        padding: 10px 5px;
        font-size: 0.85rem;
    }
    
    .hotel-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hotel-name {
        font-size: 1.3rem;
    }
    
    .important-notes-section {
        padding: 20px;
    }
    
    .note-highlight,
    .tax-notice {
        flex-direction: column;
        gap: 10px;
    }
    
    .note-item {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .hotel-pricing-table {
        font-size: 0.75rem;
    }
    
    .hotel-pricing-table th,
    .hotel-pricing-table td {
        padding: 8px 3px;
        font-size: 0.75rem;
    }
    
    .hotel-item {
        padding: 15px;
    }
}