/* ========================================
   General Styles & Reset
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #14b8a6;
    --primary-dark: #0d9488;
    --secondary-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-hotels {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-hotels:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.btn-buses {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.btn-buses:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.5);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: #1faa52;
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-2px);
}

/* ========================================
   Header
======================================== */
.header {
    background: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

/* Header with background when scrolled */
.header.scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

/* Logo text color changes */
.header .logo-text h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header.scrolled .logo-text h1 {
    color: var(--text-dark);
    text-shadow: none;
}

.header .logo-text p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header.scrolled .logo-text p {
    color: var(--text-light);
    text-shadow: none;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo-text h1 {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2px;
}

.logo-text p {
    font-size: 12px;
    color: var(--text-light);
}

.nav-list {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-list a {
    color: white;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header.scrolled .nav-list a {
    color: var(--text-dark);
    text-shadow: none;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.header.scrolled .nav-list a::after {
    background: var(--primary-color);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
}

.header.scrolled .mobile-menu-btn {
    color: var(--text-dark);
    text-shadow: none;
}

.btn-header-booking {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    white-space: nowrap;
}

.btn-header-booking i {
    font-size: 16px;
}


/* ========================================
   Hero Section
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Hero Main Info */
.hero-main-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 20;
    padding: 20px;
}

.hero-main-info .info-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-main-info .info-logo {
    margin-bottom: 30px;
}

.hero-main-info .info-logo img {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
}

.hero-main-info .info-logo h2 {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-main-info .info-title {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-main-info .info-subtitle {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-main-info .info-highlights {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-main-info .highlight-text {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 500;
}

.hero-main-info .highlight-divider {
    color: var(--text-light);
    font-size: 24px;
}

.hero-main-info .info-features {
    margin-bottom: 30px;
}

.hero-main-info .info-features p {
    font-size: 18px;
    color: var(--text-light);
}

.hero-main-info .info-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-main-info .info-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-main-info .badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-dark);
}

.hero-main-info .badge-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.hero-main-info .special-offer {
    background: linear-gradient(135deg, var(--secondary-color), #f97316);
    color: white;
    padding: 25px;
    border-radius: var(--border-radius);
}

.hero-main-info .special-offer h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.hero-main-info .special-offer p {
    font-size: 18px;
    margin-bottom: 10px;
}

.hero-main-info .offer-note {
    font-size: 14px;
    opacity: 0.9;
}

/* ========================================
   Main Info Section (Removed - now inside hero)
======================================== */
.main-info {
    display: none;
}

/* ========================================
   Section Headers
======================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========================================
   Packages Section
======================================== */
.packages {
    padding: 80px 0;
    background: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.package-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.package-card.featured {
    border: 3px solid var(--primary-color);
}

.package-card.vip {
    border: 3px solid var(--secondary-color);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--text-dark);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

.package-badge.popular {
    background: var(--primary-color);
}

.package-badge.special {
    background: var(--success-color);
}

.package-badge.vip-badge {
    background: var(--secondary-color);
}

.package-image {
    position: relative;
    height: 200px;
    background: var(--bg-light);
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.package-content {
    padding: 25px;
}

.package-title {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.package-description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.package-features h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.package-features ul {
    margin-bottom: 25px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text-dark);
}

.package-features li i {
    color: var(--primary-color);
    font-size: 16px;
}

.package-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ========================================
   Hotels Section
======================================== */
.hotels {
    padding: 80px 0;
    background: white;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.hotel-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.hotel-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.1);
}

.hotel-stars {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 193, 7, 0.95);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hotel-city-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hotel-content {
    padding: 25px;
}

.hotel-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.hotel-location,
.hotel-distance {
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.hotel-location i,
.hotel-distance i {
    color: var(--primary-color);
}

.hotel-description {
    color: var(--text-light);
    line-height: 1.6;
    margin: 15px 0;
    font-size: 14px;
}

.hotel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.hotel-details-btn {
    flex: 1;
}

/* Hotel Modal Styles */
.hotel-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hotel-modal-content {
    background-color: white;
    border-radius: 15px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hotel-modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 35px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hotel-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.hotel-modal-body {
    display: flex;
    flex-direction: column;
}

.hotel-modal-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.hotel-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-modal-stars {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 193, 7, 0.95);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hotel-modal-city {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hotel-modal-info {
    padding: 30px;
}

.hotel-modal-info h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hotel-modal-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.modal-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-light);
}

.modal-detail-item i {
    color: var(--primary-color);
    font-size: 18px;
    width: 25px;
}

.modal-detail-item strong {
    color: var(--text-dark);
}

.hotel-modal-description {
    margin-bottom: 30px;
}

.hotel-modal-description h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.hotel-modal-description p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.hotel-modal-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hotel-modal-actions .btn {
    flex: 1;
    min-width: 200px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .hotel-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .hotel-modal-image {
        height: 250px;
    }

    .hotel-modal-info {
        padding: 20px;
    }

    .hotel-modal-info h2 {
        font-size: 22px;
    }

    .hotel-modal-actions {
        flex-direction: column;
    }

    .hotel-modal-actions .btn {
        width: 100%;
        min-width: auto;
    }
}

/* ========================================
   Booking Modal
======================================== */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(5px);
}

.booking-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    position: relative;
}

.booking-modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 30px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.booking-modal-close:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: rotate(90deg);
}

.booking-modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 40px 30px;
    text-align: center;
    color: white;
}

.booking-modal-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.booking-modal-icon i {
    font-size: 36px;
    color: white;
}

.booking-modal-header h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.booking-modal-header p {
    font-size: 16px;
    opacity: 0.9;
}

.booking-modal-body {
    padding: 30px;
}

.booking-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-option {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.booking-option.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.booking-option.whatsapp:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.booking-option.phone {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.booking-option.phone:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.booking-option.email {
    background: #f8f9fa;
    color: var(--text-dark);
    border: 2px solid #e9ecef;
}

.booking-option.email:hover {
    background: #e9ecef;
    transform: translateX(-5px);
    border-color: var(--primary-color);
}

.option-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}

.booking-option.email .option-icon {
    background: rgba(0, 0, 0, 0.05);
}

.option-icon i {
    font-size: 22px;
}

.option-info {
    flex: 1;
}

.option-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.option-info p {
    font-size: 14px;
    opacity: 0.85;
}

.option-arrow {
    font-size: 18px;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.booking-option:hover .option-arrow {
    transform: translateX(-5px);
}

.booking-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.booking-note i {
    color: var(--primary-color);
}

/* Responsive Booking Modal */
@media (max-width: 576px) {
    .booking-modal-content {
        width: 95%;
        margin: 10px;
    }

    .booking-modal-header {
        padding: 30px 20px;
    }

    .booking-modal-icon {
        width: 60px;
        height: 60px;
    }

    .booking-modal-icon i {
        font-size: 28px;
    }

    .booking-modal-header h2 {
        font-size: 22px;
    }

    .booking-modal-body {
        padding: 20px;
    }

    .booking-option {
        padding: 15px;
    }

    .option-icon {
        width: 45px;
        height: 45px;
    }

    .option-info h3 {
        font-size: 16px;
    }

    .option-info p {
        font-size: 13px;
    }
}

/* ========================================
   Package Modal
======================================== */
.package-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(5px);
}

.package-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    position: relative;
    overflow-y: auto;
}

.package-modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 30px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.package-modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: rotate(90deg);
}

.package-modal-body {
    display: flex;
    flex-direction: column;
}

.package-modal-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.package-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-modal-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.package-modal-badge.economy {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.package-modal-badge.comfort {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

.package-modal-badge.vip {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #333;
}

.package-modal-duration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.package-modal-info {
    padding: 30px;
}

.package-modal-info h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.package-modal-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.package-modal-features {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
}

.package-modal-features h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-modal-features h3 i {
    color: var(--primary-color);
}

.package-modal-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.package-modal-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
}

.package-modal-features li i {
    color: #28a745;
    font-size: 16px;
}

.package-modal-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.package-modal-actions .btn {
    flex: 1;
    min-width: 180px;
}

/* Responsive Package Modal */
@media (max-width: 768px) {
    .package-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .package-modal-image {
        height: 200px;
    }

    .package-modal-info {
        padding: 20px;
    }

    .package-modal-info h2 {
        font-size: 22px;
    }

    .package-modal-features {
        padding: 20px;
    }

    .package-modal-actions {
        flex-direction: column;
    }

    .package-modal-actions .btn {
        width: 100%;
        min-width: auto;
    }
}

/* ========================================
   Buses Section
======================================== */
.buses {
    padding: 80px 0;
    background: var(--bg-light);
}

.buses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.bus-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.bus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.bus-card.featured {
    border: 3px solid var(--primary-color);
}

.bus-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

.bus-image {
    height: 250px;
    background: var(--bg-light);
}

.bus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bus-content {
    padding: 30px;
}

.bus-title {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.bus-description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.bus-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.bus-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-dark);
}

.bus-feature i {
    color: var(--primary-color);
    font-size: 20px;
    width: 25px;
}

.bus-price {
    background: var(--bg-light);
    padding: 15px;
    border-radius: var(--border-radius);
    text-align: center;
}

.bus-price p {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

/* ========================================
   Why Us Section
======================================== */
.why-us {
    padding: 80px 0;
    background: white;
}

.why-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.why-badge {
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.why-card {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
}

.why-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.why-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.what-we-offer {
    background: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 100%);
    padding: 40px;
    border-radius: var(--border-radius);
}

.what-we-offer h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.offer-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.offer-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--text-dark);
}

.offer-item i {
    color: var(--success-color);
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ========================================
   Pricing Section
======================================== */
.pricing {
    padding: 80px 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.price-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.price-card.featured {
    border: 3px solid var(--primary-color);
}

.price-badge {
    position: absolute;
    top: -15px;
    right: 50%;
    transform: translateX(50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.price-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.price-card h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.price-duration {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.price-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.special-groups {
    text-align: center;
}

.special-groups p {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

/* ========================================
   Guide Section
======================================== */
.guide {
    padding: 80px 0;
    background: white;
}

.guide-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.guide-label {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.guide-text h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.guide-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.guide-text h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin: 25px 0 15px;
    font-weight: 700;
}

.guide-text h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin: 20px 0 12px;
    font-weight: 600;
}

.guide-text p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.guide-text ul {
    margin: 15px 0 25px 30px;
}

.guide-text ul li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
    list-style: disc;
}

.guide-actions {
    margin: 30px 0;
}

.guide-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-light);
}

.stat-item i {
    color: var(--primary-color);
}

.guide-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-box,
.cta-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
}

.info-box h4,
.cta-box h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.info-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.cta-box p {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.6;
    text-align: center;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ========================================
   FAQ Section
======================================== */
.faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   Help Section
======================================== */
.help-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.help-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.help-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.help-content {
    color: white;
}

.help-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.help-icon i {
    font-size: 36px;
    color: white;
}

.help-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.help-content p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 30px;
}

.help-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.help-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.help-feature i {
    font-size: 18px;
}

.help-feature span {
    font-size: 14px;
    font-weight: 600;
}

.help-form-container {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.help-form .form-header {
    text-align: center;
    margin-bottom: 30px;
}

.help-form .form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.help-form .form-header h3 i {
    font-size: 28px;
}

.help-form .form-group {
    margin-bottom: 20px;
}

.help-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.help-form label i {
    color: var(--primary-color);
    font-size: 16px;
}

.help-form input,
.help-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.help-form input:focus,
.help-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.help-form input::placeholder,
.help-form textarea::placeholder {
    color: #adb5bd;
}

.help-form textarea {
    resize: none;
}

.btn-submit {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #25d366 0%, #128C7E 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-submit i {
    font-size: 22px;
}

/* Responsive Help Section */
@media (max-width: 992px) {
    .help-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .help-content {
        text-align: center;
    }

    .help-icon {
        margin: 0 auto 25px;
    }

    .help-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .help-section {
        padding: 60px 0;
    }

    .help-content h2 {
        font-size: 28px;
    }

    .help-content p {
        font-size: 16px;
    }

    .help-form-container {
        padding: 30px 20px;
    }

    .help-features {
        flex-direction: column;
        align-items: center;
    }

    .help-feature {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 700;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 992px) {
    .nav {
        display: none;
        position: fixed;
        top: 80px;
        right: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }

    .nav-list li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-list li a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .btn-header-booking {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .guide-content {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .info-card {
        padding: 30px 20px;
    }

    .info-title {
        font-size: 28px;
    }

    .info-subtitle {
        font-size: 18px;
    }

    .packages-grid,
    .hotels-grid,
    .buses-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .info-actions {
        flex-direction: column;
    }

    .info-badges {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 400px;
    }

    .hero-slide {
        height: 400px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .info-highlights {
        flex-direction: column;
        gap: 10px;
    }

    .highlight-divider {
        display: none;
    }
}

   / *   A d d i t i o n a l   R e s p o n s i v e   S t y l e s   f o r   H e r o   M a i n   I n f o   * /     

/* ========================================
   Hero Section - Static Background
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero/1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(155 111 36 / 85%), rgb(3 8 8 / 80%));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 40px 20px;
}

.hero-info {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.hero-info .info-logo {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

/* طھط­ط³ظٹظ† ط¹ط±ط¶ ط§ظ„ط£ظٹظ‚ظˆظ†ط© ظˆط§ظ„ط§ط³ظ… ظپظٹ ط§ظ„ظ‡ظٹط±ظˆ */
.hero-info .info-logo .site-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-info .info-logo .site-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: white;
    padding: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-info .info-logo .site-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
}

.hero-info .info-logo .site-name {
    font-size: 32px;
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    line-height: 1.3;
}

/* ظ„ظ„ط­ط§ظ„ط© ط§ظ„ظ‚ط¯ظٹظ…ط© ط¨ط¯ظˆظ† wrapper */
.hero-info .info-logo img {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    background: white;
    border-radius: 50%;
    padding: 15px;
}

.hero-info .info-logo h2 {
    font-size: 32px;
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-info .info-title {
    font-size: 36px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: titleSlide 3s ease-in-out infinite;
    display: inline-block;
}

.hero-info .info-subtitle {
    font-size: 22px;
    color: white;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-info .info-highlights {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-info .highlight-text {
    font-size: 18px;
    color: white;
    font-weight: 500;
}

.hero-info .highlight-divider {
    color: white;
    font-size: 24px;
    opacity: 0.7;
}

.hero-info .info-features {
    margin-bottom: 35px;
}

.hero-info .info-features p {
    font-size: 18px;
    color: white;
    opacity: 0.95;
}

.hero-info .info-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-info .action-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
}

.btn-phone {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-phone:hover {
    background: linear-gradient(135deg, var(--primary-dark), #0f766e);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    width: 100%;
    max-width: 300px;
}

/* Header Logo Horizontal Layout */
.site-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Hero Typewriter Animation */
.typewriter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    min-height: 120px;
    /* Reserve space */
}

.typewriter-line {
    overflow: hidden;
    /* Ensures the content is not revealed until the animation */
    border-left: 2px solid var(--primary-color);
    /* The cursor */
    white-space: nowrap;
    /* Keeps the content on a single line */
    margin: 0 auto;
    /* Gives that scrolling effect as the typing happens */
    font-size: 20px;
    color: white;
    width: 0;
    opacity: 0;
    animation: typing 3s steps(40, end), blink-caret .75s step-end infinite;
    animation-fill-mode: forwards;
}

.typewriter-line:nth-child(1) {
    animation-delay: 0s;
}

.typewriter-line:nth-child(2) {
    animation-delay: 3s;
    /* Starts after first line */
    font-size: 18px;
    color: #e0f2fe;
}

.typewriter-line:nth-child(3) {
    animation-delay: 6s;
    /* Starts after second line */
    font-size: 16px;
    color: #cbd5e1;
    border-left: none;
    /* remove cursor for last line after done */
    border-right: 2px solid var(--primary-color);
    /* Arabic cursor is on right usually, but let's stick to left for consistency or swap */
}

/* Fix cursor for Arabic (RTL) */
.typewriter-line {
    border-left: none;
    border-right: 2px solid var(--primary-color);
}

@keyframes typing {
    from {
        width: 0;
        opacity: 1;
    }

    to {
        width: 100%;
        opacity: 1;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--primary-color);
    }
}

.hero-info .info-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-info .badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-info .badge-item i {
    color: var(--secondary-color);
    font-size: 16px;
}

/* ========================================
   Special Offer Banner (Outside Hero)
======================================== */
.special-offer-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 25px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.special-offer-banner .offer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.special-offer-banner .offer-icon {
    font-size: 42px;
    color: white;
    animation: bounceIcon 2s ease-in-out infinite;
}

.special-offer-banner .offer-text h4 {
    font-size: 24px;
    color: white;
    font-weight: 700;
    margin-bottom: 5px;
}

.special-offer-banner .offer-text p {
    font-size: 16px;
    color: white;
    margin: 0;
    opacity: 0.95;
}

.special-offer-banner .offer-badge {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

/* Responsive Hero Styles */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
    }

    .hero-content {
        padding: 30px 15px;
    }

    .hero-info .info-logo .site-icon-wrapper {
        padding: 20px 30px;
    }

    .hero-info .info-logo .site-icon {
        width: 70px;
        height: 70px;
        padding: 10px;
    }

    .hero-info .info-logo .site-name {
        font-size: 24px;
    }

    .hero-info .info-logo img {
        width: 70px;
        height: 70px;
        padding: 10px;
    }

    .hero-info .info-logo h2 {
        font-size: 24px;
    }

    .hero-info .info-title {
        font-size: 24px;
    }

    .hero-info .info-subtitle {
        font-size: 16px;
    }

    .hero-info .highlight-text {
        font-size: 15px;
    }

    .hero-info .info-features p {
        font-size: 15px;
    }

    .hero-info .info-actions {
        gap: 10px;
    }

    .hero-info .action-row {
        flex-direction: row;
        gap: 10px;
    }

    .hero-info .action-row .btn {
        flex: 1;
        min-width: 140px;
    }

    .hero-info .info-badges {
        flex-direction: row;
        gap: 10px;
        flex-wrap: wrap;
    }

    .hero-info .badge-item {
        font-size: 13px;
        padding: 6px 12px;
        flex: 1 1 auto;
        min-width: 120px;
        justify-content: center;
    }

    .hero-info .special-offer h4 {
        font-size: 20px;
    }

    .hero-info .special-offer p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 20px 10px;
    }

    .hero-info .info-logo .site-icon-wrapper {
        padding: 15px 25px;
        gap: 10px;
    }

    .hero-info .info-logo .site-icon {
        width: 60px;
        height: 60px;
        padding: 8px;
    }

    .hero-info .info-logo .site-name {
        font-size: 20px;
    }

    .hero-info .info-logo img {
        width: 60px;
        height: 60px;
        padding: 8px;
    }

    .hero-info .info-logo h2 {
        font-size: 20px;
    }

    .hero-info .info-title {
        font-size: 20px;
    }

    .hero-info .info-subtitle {
        font-size: 14px;
    }

    .hero-info .info-highlights {
        flex-direction: column;
        gap: 10px;
    }

    .hero-info .highlight-divider {
        display: none;
    }

    .hero-info .highlight-text {
        font-size: 13px;
    }

    .hero-info .info-features p {
        font-size: 13px;
    }

    .hero-info .info-actions .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero-info .info-badges {
        gap: 8px;
    }

    .hero-info .badge-item {
        font-size: 11px;
        padding: 5px 10px;
        min-width: 100px;
    }

    .hero-info .badge-item i {
        font-size: 14px;
    }

    .hero-info .special-offer {
        padding: 20px 15px;
    }

    .hero-info .special-offer h4 {
        font-size: 18px;
    }

    .hero-info .special-offer p {
        font-size: 14px;
    }

    .special-offer-banner {
        padding: 20px 0;
    }

    .special-offer-banner .offer-icon {
        font-size: 32px;
    }

    .special-offer-banner .offer-text h4 {
        font-size: 20px;
    }

    .special-offer-banner .offer-text p {
        font-size: 14px;
    }
}

/* Remove old styles */
.hero-main-info,
.main-info {
    display: none;
}

/* ========================================
   Floating Contact Buttons
======================================== */
.floating-contacts {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: pulse 2s infinite;
    opacity: 0.5;
    z-index: -1;
}

.floating-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.floating-btn:active {
    transform: scale(0.95);
}

.floating-btn i {
    position: relative;
    z-index: 2;
    animation: shake 3s infinite;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128C7E 100%);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.phone-btn {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.phone-btn:hover {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
}

.btn-tooltip {
    position: absolute;
    left: 75px;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    font-weight: 600;
}

.btn-tooltip::after {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.85);
}

.floating-btn:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-2px) rotate(-5deg);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(2px) rotate(5deg);
    }
}

/* Logo rotation animation */
@keyframes logoRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Text shine animation for hero title */
@keyframes textShine {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Text glow animation */
@keyframes textGlow {

    0%,
    100% {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(255, 255, 255, 0.3);
    }

    50% {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3),
            0 0 30px rgba(255, 255, 255, 0.6),
            0 0 40px rgba(20, 184, 166, 0.4);
    }
}

/* Title slide animation for hero title */
@keyframes titleSlide {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(20px);
    }
}

/* Bounce icon animation for special offer */
@keyframes bounceIcon {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .floating-contacts {
        bottom: 20px;
        left: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .btn-tooltip {
        display: none;
    }
}

@media (max-width: 576px) {
    .floating-contacts {
        bottom: 15px;
        left: 15px;
        gap: 10px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* ========================================
   Booking Form Modal Styles
======================================== */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.booking-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    position: relative;
    animation: slideUp 0.3s ease;
    margin: auto;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.booking-modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 32px;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
}

.booking-modal-close:hover {
    color: var(--danger-color);
    background: #fee;
    transform: rotate(90deg);
}

.booking-modal-header {
    text-align: center;
    padding: 40px 30px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 20px 20px 0 0;
}

.booking-modal-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.booking-modal-icon i {
    font-size: 36px;
    color: white;
}

.booking-modal-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.booking-modal-header p {
    font-size: 16px;
    opacity: 0.95;
}

.booking-modal-body {
    padding: 30px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary-color);
    font-size: 18px;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 15px;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-group input::placeholder {
    color: var(--text-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-submit {
    background: linear-gradient(135deg, #25d366, #1faa52);
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-family: 'Cairo', sans-serif;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-submit i {
    font-size: 22px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .booking-modal {
        padding: 10px;
    }

    .booking-modal-content {
        max-width: 100%;
    }

    .booking-modal-header {
        padding: 30px 20px 20px;
    }

    .booking-modal-header h2 {
        font-size: 24px;
    }

    .booking-modal-header p {
        font-size: 14px;
    }

    .booking-modal-body {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .btn-submit {
        font-size: 16px;
        padding: 14px 20px;
    }
}

@media (max-width: 576px) {
    .booking-modal-icon {
        width: 60px;
        height: 60px;
    }

    .booking-modal-icon i {
        font-size: 30px;
    }

    .booking-modal-header h2 {
        font-size: 22px;
    }

    .booking-modal-body {
        padding: 15px;
    }

    .form-group input,
    .form-group select {
        padding: 12px 14px;
        font-size: 14px;
    }
}

/* ========================================
   Contact Options Styles
======================================== */
.booking-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    cursor: pointer;
}

.booking-option:hover {
    border-color: var(--primary-color);
    transform: translateX(-5px);
    box-shadow: var(--shadow-md);
}

.booking-option.whatsapp:hover {
    border-color: #25d366;
    background: rgba(37, 211, 102, 0.05);
}

.booking-option.phone:hover {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

.booking-option.email:hover {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.05);
}

.option-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.booking-option.whatsapp .option-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.booking-option.phone .option-icon {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.booking-option.email .option-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.option-info {
    flex: 1;
}

.option-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.option-info p {
    font-size: 14px;
    color: var(--text-light);
}

.option-arrow {
    font-size: 20px;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.booking-option:hover .option-arrow {
    transform: translateX(-5px);
}

.booking-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    margin-top: 10px;
}

.booking-note i {
    color: var(--primary-color);
    font-size: 18px;
}

.booking-note span {
    font-size: 14px;
    color: var(--text-light);
}