/* إعدادات عامة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    direction: rtl;
    text-align: right;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* الأزرار */
.btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
}

.btn-primary {
    background: #17a2b8;
    color: white;
}

.btn-primary:hover {
    background: #138496;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #ffc107;
    color: #333;
}

.btn-secondary:hover {
    background: #e0a800;
}

.btn-outline {
    background: transparent;
    color: #17a2b8;
    border: 2px solid #17a2b8;
}

.btn-outline:hover {
    background: #17a2b8;
    color: white;
}

.btn-search {
    background: #17a2b8;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
}

.btn-search:hover {
    background: #138496;
}

/* أزرار الهيرو */
.btn-return {
    background: #4285f4;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.btn-return:hover {
    background: #3367d6;
}

.btn-packages {
    background: #34a853;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.btn-packages:hover {
    background: #2d8f47;
}

.btn-call {
    background: #ff9800;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.btn-call:hover {
    background: #f57c00;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: #20ba5a;
}

/* الهيدر الجديد الاحترافي */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0;
}

/* الهيدر الشفاف للصفحة الرئيسية */
.main-header.transparent {
    background: transparent;
}

.main-header.transparent.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

/* الهيدر الأبيض للصفحات الأخرى */
.main-header.white {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    width: 100%;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.main-header.scrolled .navbar {
    padding: 0.7rem 0;
}

.nav-container {
    max-width: 1200px;
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

/* قسم الإجراءات المحمولة */
.mobile-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.5rem;
}

.nav-brand img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.main-header.scrolled .nav-brand img {
    height: 40px;
}

.nav-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
}

.main-header.white .nav-brand-text {
    color: #2c3e50;
}

.main-header.transparent.scrolled .nav-brand-text {
    color: #2c3e50;
}

/* الأيقونات المصغرة */
.mini-actions {
    display: none;
    gap: 0.5rem;
    align-items: center;
}

.mini-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mini-whatsapp {
    background: linear-gradient(135deg, #25d366, #20ba5a);
    color: white;
    animation: pulse 2s infinite;
}

.mini-book {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #2c3e50;
    animation: pulse 2s infinite 0.5s;
}

.mini-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* تأثير النبضة */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
}

/* أزرار الإجراءات */
.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #20ba5a);
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-book {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #2c3e50;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* تأثير عند التمرير */
.main-header.scrolled .mini-btn {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
}

/* إيقاف النبضة عند التمرير */
.main-header.scrolled .mini-whatsapp,
.main-header.scrolled .mini-book {
    animation: none;
}

/* تأثير النبضة للأيقونات */
.mini-whatsapp {
    animation: miniPulse 3s infinite;
}

.mini-book {
    animation: miniPulse 3s infinite 1.5s;
}

@keyframes miniPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
}

/* زر القائمة المحمولة */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.mobile-menu-bar {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.main-header.white .mobile-menu-toggle {
    background: rgba(74, 155, 142, 0.1);
    border-color: rgba(74, 155, 142, 0.2);
}

.main-header.white .mobile-menu-toggle:hover {
    background: rgba(74, 155, 142, 0.2);
}

.main-header.white .mobile-menu-bar {
    background: #4a9b8e;
}

.main-header.transparent.scrolled .mobile-menu-toggle {
    background: rgba(74, 155, 142, 0.1);
    border-color: rgba(74, 155, 142, 0.2);
}

.main-header.transparent.scrolled .mobile-menu-bar {
    background: #4a9b8e;
}

.mobile-menu-toggle.active .mobile-menu-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .mobile-menu-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .mobile-menu-bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.logo-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 10px;
}

.header-transparent.scrolled .logo-text {
    color: #2c3e50;
}

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

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.header-transparent.scrolled .nav-link {
    color: #2c3e50;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.header-transparent.scrolled .nav-link:hover {
    background: rgba(74, 155, 142, 0.1);
    color: #4a9b8e;
}

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

.btn-whatsapp-header {
    background: linear-gradient(135deg, #25d366, #20ba5a);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-book-header {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #2c3e50;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-book-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle-bar {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header-transparent.scrolled .nav-toggle-bar {
    background: #2c3e50;
}

/* هيدر الصفحات الداخلية */
.page-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e9ecef;
}

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

.page-header .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.5rem;
}

.page-header .logo img {
    height: 45px;
    width: auto;
}

.page-header .logo-fallback {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a9b8e;
    font-weight: 700;
    font-size: 1.2rem;
}

.page-header .main-nav {
    display: flex;
    align-items: center;
}

.page-header .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.page-header .nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.page-header .nav-link:hover,
.page-header .nav-link.active {
    background: rgba(74, 155, 142, 0.1);
    color: #4a9b8e;
}

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

.page-header .whatsapp-btn,
.page-header .call-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.page-header .whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #20ba5a);
    color: white;
}

.page-header .whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.page-header .call-btn {
    background: linear-gradient(135deg, #4a9b8e, #5fb3a3);
    color: white;
}

.page-header .call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 155, 142, 0.3);
}

.page-header .mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

.page-header .mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 1px solid #e9ecef;
}

.page-header .mobile-nav.active {
    display: block;
}

.page-header .mobile-nav-content {
    padding: 1rem;
}

.page-header .mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-header .mobile-nav-links li {
    margin-bottom: 0.5rem;
}

.page-header .mobile-nav-links a {
    display: block;
    color: #2c3e50;
    text-decoration: none;
    padding: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.page-header .mobile-nav-links a:hover {
    background: rgba(74, 155, 142, 0.1);
    color: #4a9b8e;
}

.page-header .mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.page-header .mobile-whatsapp-btn,
.page-header .mobile-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-header .mobile-whatsapp-btn {
    background: #25d366;
    color: white;
}

.page-header .mobile-call-btn {
    background: #4a9b8e;
    color: white;
}

/* استجابة للجوال */
@media (max-width: 768px) {
    .page-header .main-nav,
    .page-header .header-actions {
        display: none;
    }

    .page-header .mobile-menu-btn {
        display: flex;
    }
}

/* الهيدر القديم */
.header {
    background: #4a9b8e;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    color: white;
}

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

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.header-center {
    text-align: center;
    flex: 1;
}

.header-center h2 {
    color: white;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.header-center p {
    color: #ffd700;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.header-profile {
    padding: 8px;
}

.profile-icon {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.profile-icon i {
    color: white;
    font-size: 14px;
}

.mobile-nav {
    background: rgba(74, 155, 142, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    padding: 1rem 0;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: background 0.3s ease;
    border-radius: 5px;
}

.mobile-nav a:hover {
    background: rgba(255,255,255,0.1);
}

/* البانر الرئيسي */
.hero {
    height: 100vh;
    min-height: 100vh;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

/* خلفيات الهيرو المتعددة */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 1;
}

.hero-background.active {
    opacity: 1;
}

/* التدرج يتم تطبيقه من الكود الديناميكي في PHP */

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

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(80px) translateY(80px); }
}

.hero-content {
    position: relative;
    z-index: 1001;
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 2rem 0.5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.hero-logo {
    margin-bottom: 2rem;
}

.logo-circle {
    width: 100px;
    height: 100px;
    background: #00000059;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    padding: 10px;
    transition: all 0.3s ease;
}

.logo-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.logo-circle img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.logo-circle i {
    font-size: 2.5rem;
    color: #4a9b8e;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

/* الأيقونات الثلاث تحت اسم الموقع */
.hero-features-icons {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out;
}

/* انيميشن اسم الموقع */
@keyframes titleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 20px rgba(0,0,0,0.8), 2px 2px 8px rgba(0,0,0,0.9);
    }
    100% {
        text-shadow: 0 0 30px rgba(255,215,0,0.4), 0 0 20px rgba(0,0,0,0.8), 2px 2px 8px rgba(0,0,0,0.9);
    }
}

.hero-feature-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 130px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* خلفيات مختلفة لكل أيقونة */
.hero-feature-icon:nth-child(1) {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.2), rgba(66, 133, 244, 0.35));
    border-color: rgba(66, 133, 244, 0.3);
}

.hero-feature-icon:nth-child(2) {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.2), rgba(255, 152, 0, 0.35));
    border-color: rgba(255, 152, 0, 0.3);
}

.hero-feature-icon:nth-child(3) {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.35));
    border-color: rgba(76, 175, 80, 0.3);
}

.hero-feature-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.hero-feature-icon:nth-child(1):hover {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.3), rgba(66, 133, 244, 0.45));
}

.hero-feature-icon:nth-child(2):hover {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.3), rgba(255, 152, 0, 0.45));
}

.hero-feature-icon:nth-child(3):hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.3), rgba(76, 175, 80, 0.45));
}

.hero-feature-icon i {
    font-size: 2.2rem;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
}

.hero-feature-icon span {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-align: center;
    line-height: 1.2;
}

/* تأثيرات متحركة للأيقونات */
@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.hero-feature-icon:nth-child(1) {
    animation: iconFloat 3s ease-in-out infinite;
    animation-delay: 0s;
}

.hero-feature-icon:nth-child(2) {
    animation: iconFloat 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.hero-feature-icon:nth-child(3) {
    animation: iconFloat 3s ease-in-out infinite;
    animation-delay: 1s;
}

/* الاستجابة للموبايل */
@media (max-width: 768px) {
    .hero-features-icons {
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .hero-feature-icon {
        padding: 1rem 1.2rem;
        min-width: 110px;
    }
    
    .hero-feature-icon i {
        font-size: 1.8rem;
    }
    
    .hero-feature-icon span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-features-icons {
        gap: 1rem;
        margin: 1rem 0;
        justify-content: space-between;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 0.5rem;
    }
    
    .hero-feature-icon {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.8rem 0.8rem;
        min-width: 90px;
        flex-shrink: 0;
    }
    
    .hero-feature-icon i {
        font-size: 1.3rem;
    }
    
    .hero-feature-icon span {
        font-size: 0.75rem;
        line-height: 1.1;
    }
}

.hero-subtitle-section {
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: fadeInUp 1.2s ease-out;
    min-height: 2rem;
}

/* تأثير الكتابة المتحركة */
#typewriter-text {
    display: inline-block;
}

.cursor {
    display: inline-block;
    background-color: #ffd700;
    margin-right: 3px;
    width: 3px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* تأثير محو النص */
@keyframes erasing {
    from { opacity: 1; }
    to { opacity: 0; }
}

.erasing {
    animation: erasing 0.1s ease-out;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: #ffd700;
    margin: 0 auto;
    border-radius: 2px;
}

.hero-description {
    margin-bottom: 2.5rem;
    animation: fadeInUp 1.4s ease-out;
}

.hero-description p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.button-row {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.button-row .btn {
    min-width: 100px;
    max-width: calc(50% - 0.5rem);
    padding: 12px 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    box-sizing: border-box;
    flex-shrink: 1;
    word-wrap: break-word;
}

/* أزرار الهيرو المحدثة */
.btn-book {
    background: #4285f4;
    color: white;
    border-radius: 10px;
    font-weight: 600;
}

.btn-book:hover {
    background: #3367d6;
    transform: translateY(-2px);
}

.btn-packages {
    background: #34a853;
    color: white;
    border-radius: 25px;
    font-weight: 600;
}

.btn-packages:hover {
    background: #2d8f47;
    transform: translateY(-2px);
}

.btn-hotel {
    background: #ff9800;
    color: white;
    border-radius: 25px;
    font-weight: 600;
}

.btn-hotel:hover {
    background: #f57c00;
    transform: translateY(-2px);
}

/* إخفاء عناصر الهيرو القديمة */
.hero-logo,
.hero-features-icons,
.hero-subtitle-section,
.hero-description,
.hero-buttons,
.hero-bottom-features {
    display: none !important;
}

/* إظهار عناصر الهيرو الجديدة */
.hero-main-title,
.hero-subtitle-with-icons,
.hero-packages-desc,
.hero-service-cards,
.hero-action-buttons {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-service-cards {
    display: flex !important;
}

.hero-action-buttons {
    display: flex !important;
    flex-direction: column !important;
}

/* تصميم الهيرو الجديد - مطابق للصورة */
.hero-main-title {
    margin-bottom: 1.5rem;
}

.hero-main-title h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0,0,0,0.8), 2px 2px 8px rgba(0,0,0,0.9);
    line-height: 1.1;
    margin: 0;
    letter-spacing: 1px;
    animation: titleFloat 3s ease-in-out infinite, titleGlow 2s ease-in-out infinite alternate;
}

.hero-subtitle-with-icons {
    margin-bottom: 1.5rem;
}

.hero-subtitle-with-icons p {
    font-size: 1.4rem;
    color: #ffd700;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    margin: 0;
}

.hero-packages-desc {
    margin-bottom: 2rem;
}

.hero-packages-desc p {
    font-size: 1.1rem;
    color: #e8f4fd;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    margin: 0;
}

/* كروت الخدمات الثلاث */
.hero-service-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.service-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    flex-shrink: 0;
}

.service-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.service-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.service-desc {
    font-size: 0.85rem;
    color: #e8f4fd;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* أزرار الإجراءات الرئيسية */
.hero-action-buttons {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-action-buttons .button-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 120px;
    border: none;
    cursor: pointer;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.btn-transport {
    background: linear-gradient(135deg, #4285f4, #6b73ff);
    color: white;
}

.btn-hotels {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: white;
}

.btn-book-now {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.btn-whatsapp-large {
    background: linear-gradient(135deg, #25d366, #20ba5a);
    color: white;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    margin-top: 0.5rem;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* المميزات السفلية */
.hero-bottom-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.bottom-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 1rem;
}

.feature-text {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* إظهار وتنسيق خاص للموبايل */
@media (max-width: 768px) {
    .container {
        padding: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .hero .container {
        padding: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .hero {
        min-height: 80vh !important;
        height: 80vh !important;
        padding: 4rem 0 1rem 0 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;
        position: relative !important;
        padding-top: 6rem !important;
        width: 100% !important;
    }
    
    .hero-content {
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        z-index: 1001 !important;
        position: relative !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        min-height: auto !important;
        box-sizing: border-box !important;
        text-align: center !important;
        gap: 1rem !important;
        overflow: visible !important;
    }
    
    /* ترتيب عناصر الهيرو */
    .hero-content > * {
        flex-shrink: 0 !important;
        width: 100% !important;
        position: relative !important;
    }
    
    .hero-main-title {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-bottom: 1rem !important;
        width: 100% !important;
        text-align: center !important;
        position: relative !important;
        z-index: 1002 !important;
        order: -10 !important;
        margin-top: 0 !important;
    }
    
    /* Update mobile 480px hero-main-title h1 */
    .hero-main-title h1 {
        display: block !important;
        visibility: visible !important;
        font-size: 1.8rem !important;
        margin: 0 !important;
        padding: 0.8rem 0.5rem !important;
        color: #ffffff !important;
        text-shadow: 0 0 20px rgba(0,0,0,0.9), 2px 2px 8px rgba(0,0,0,0.8) !important;
        font-weight: 800 !important;
        line-height: 1.2 !important;
        text-align: center !important;
        letter-spacing: 0.5px !important;
        animation: titleFloat 3s ease-in-out infinite, titleGlow 2s ease-in-out infinite alternate !important;
    }

    
    .hero-subtitle-with-icons {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-bottom: 1rem !important;
        width: 100% !important;
        text-align: center !important;
        order: -9 !important;
    }
    
    .hero-subtitle-with-icons p {
        display: block !important;
        visibility: visible !important;
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
        margin: 0 !important;
        padding: 0 !important;
        color: #ffd700 !important;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5) !important;
        font-weight: 600 !important;
        text-align: center !important;
    }
    
    .hero-packages-desc {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-bottom: 1.5rem !important;
        width: 100% !important;
        text-align: center !important;
        order: -8 !important;
    }
    
    .hero-packages-desc p {
        display: block !important;
        visibility: visible !important;
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
        margin: 0 !important;
        padding: 0 !important;
        color: #e8f4fd !important;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.4) !important;
        font-weight: 500 !important;
        text-align: center !important;
    }
    
    .hero-service-cards {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: rgba(255, 255, 255, 0.15) !important;
        backdrop-filter: blur(15px) !important;
        border-radius: 15px !important;
        padding: 1.5rem 1rem !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
        margin: 2rem auto !important;
        max-width: 320px !important;
        justify-content: space-between !important;
        gap: 0.5rem !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        order: -7 !important;
    }
    
    .service-card {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: transparent !important;
        backdrop-filter: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        min-width: unset !important;
        width: calc(33.33% - 0.3rem) !important;
        max-width: unset !important;
        margin: 0 !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    .hero-action-buttons {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 2rem 0 !important;
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
        width: 100% !important;
        order: -6 !important;
    }
}
    
    .hero-service-cards {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(15px);
        border-radius: 15px;
        padding: 1.5rem 1rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        margin: 2rem auto;
        max-width: 320px;
        display: flex;
        justify-content: space-between;
        gap: 0.5rem;
        flex-wrap: nowrap;
    }
    
    .service-card {
        background: transparent;
        backdrop-filter: none;
        border-radius: 0;
        padding: 0;
        border: none;
        box-shadow: none;
        min-width: unset;
        width: calc(33.33% - 0.3rem);
        max-width: unset;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .service-card:hover {
        transform: none;
        background: transparent;
        box-shadow: none;
    }
    
    .service-icon {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.2rem;
        text-align: center;
    }
    
    .service-title {
        font-size: 0.8rem;
        font-weight: 700;
        line-height: 1.1;
    }
    
    .service-desc {
        font-size: 0.65rem;
        line-height: 1.1;
        text-align: center;
    }
    
    .hero-action-buttons {
        margin: 2rem 0;
    }
    
    .hero-action-buttons .button-row {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.5rem !important;
    }
    
    .hero-action-buttons .button-row:first-child {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 0.5rem !important;
    }
    
    .hero-action-buttons .button-row:last-child {
        display: grid !important;
        grid-template-columns: 1fr !important;
        justify-content: center !important;
        margin-top: 0.5rem !important;
        max-width: 200px !important;
    }
    
    .hero-btn {
        width: 100%;
        font-size: 0.85rem;
        padding: 0.7rem 0.5rem;
        min-width: unset;
        text-align: center;
    }
    
    .btn-whatsapp-large {
        max-width: 250px;
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }
    
    .hero-bottom-features {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
        margin-top: 1.5rem;
    }
    
    .bottom-feature {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .hero .container {
        padding: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .hero {
        min-height: 70vh !important;
        height: auto !important;
        padding: 3rem 0 1rem 0 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;
        padding-top: 5rem !important;
        width: 100% !important;
    }
    
    .hero-content {
        padding: 0 !important;
        margin: 0 !important;
        z-index: 1001 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        min-height: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        gap: 0.8rem !important;
        overflow: visible !important;
    }
    
    .hero-main-title {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-bottom: 0.8rem !important;
        width: 100% !important;
        text-align: center !important;
        margin-top: 0 !important;
        order: -10 !important;
    }
    
    .hero-main-title h1 {
        display: block !important;
        visibility: visible !important;
        font-size: 1.8rem !important;
        margin: 0 !important;
        padding: 0.8rem 0.5rem !important;
        color: #ffffff !important;
        text-shadow: 0 0 20px rgba(0,0,0,0.9), 2px 2px 8px rgba(0,0,0,0.8) !important;
        font-weight: 800 !important;
        line-height: 1.2 !important;
        text-align: center !important;
        letter-spacing: 0.5px !important;
        animation: titleFloat 3s ease-in-out infinite, titleGlow 2s ease-in-out infinite alternate !important;
    }
    
    .hero-subtitle-with-icons {
        margin-bottom: 0.8rem;
        width: 100%;
        text-align: center;
    }
    
    .hero-subtitle-with-icons p {
        font-size: 1rem;
        padding: 0 0.5rem;
        margin: 0;
        color: #ffd700;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
        font-weight: 600;
        line-height: 1.3;
    }
    
    .hero-packages-desc {
        margin-bottom: 1.2rem;
        width: 100%;
        text-align: center;
    }
    
    .hero-packages-desc p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
        margin: 0;
        color: #e8f4fd;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        font-weight: 500;
        line-height: 1.4;
    }
    
    .hero-service-cards {
        max-width: 280px;
        padding: 1.2rem 0.8rem;
        gap: 0.3rem;
    }
    
    .service-card {
        width: calc(33.33% - 0.2rem);
        gap: 0.4rem;
    }
    
    .service-icon {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
        border-radius: 6px;
    }
    
    .service-title {
        font-size: 0.75rem;
    }
    
    .service-desc {
        font-size: 0.6rem;
        line-height: 1;
    }
    
    .hero-action-buttons .button-row:first-child {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
    }
    
    .hero-btn {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }
    
    .btn-whatsapp-large {
        font-size: 0.95rem;
        padding: 0.8rem 1.2rem;
        max-width: 220px;
    }
}



/* قسم باقات العمرة */
.packages-section {
    background: #f8f9fa;
    padding: 4rem 0;
    margin-top: -80px;
    z-index: 10;
}

.packages-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.packages-section .section-header h2 {
    color: #ffd700;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.packages-section .section-header h3 {
    color: #4285f4;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.packages-section .section-header p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-wrapper {
    position: relative;
    margin-top: 20px;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 3px solid #64b5f6;
    position: relative;
    margin-top: 0;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: #42a5f5;
}

.package-card.featured {
    border-color: #4caf50;
    transform: scale(1.02);
}

.package-card.vip {
    border: 4px solid #ba68c8;
    background: linear-gradient(135deg, #ffffff 0%, #fce4ec 100%);
    position: relative;
    box-shadow: 0 12px 30px rgba(156, 39, 176, 0.15);
}

.package-card.vip:hover {
    border-color: #9c27b0;
    box-shadow: 0 18px 40px rgba(156, 39, 176, 0.25);
    transform: translateY(-10px);
}

.package-card.vip::before {
    content: 'VIP';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 6px 15px rgba(156, 39, 176, 0.4);
    animation: vipPulse 2s infinite;
}

@keyframes vipPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* التصميم الجديد المطابق للصورة */
.packages-header-new {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.packages-title-gold {
    font-size: 3.5rem;
    font-weight: 800;
    color: #DAA520;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-family: 'Cairo', sans-serif;
}

.packages-title-blue {
    font-size: 2.8rem;
    font-weight: 600;
    color: #4169E1;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    font-family: 'Cairo', sans-serif;
}

.packages-description {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    font-family: 'Cairo', sans-serif;
}

.packages-orange-line {
    width: 120px;
    height: 4px;
    background: #FF6B35;
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

/* قسم الخدمات الجديد - تصميم عصري واحترافي */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 0 1rem;
}

.service-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 2.2rem 1.5rem 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.1),
        0 1px 8px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(255,255,255,0.8), rgba(248,249,250,0.4));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.15),
        0 5px 15px rgba(0,0,0,0.1);
}

.service-item .icon-wrapper {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #4169E1, #6B73FF);
    box-shadow: 
        0 8px 20px rgba(65, 105, 225, 0.3),
        inset 0 1px 3px rgba(255,255,255,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:nth-child(1) .icon-wrapper {
    background: linear-gradient(145deg, #4169E1, #6B73FF);
    box-shadow: 0 8px 20px rgba(65, 105, 225, 0.3), inset 0 1px 3px rgba(255,255,255,0.3);
}

.service-item:nth-child(2) .icon-wrapper {
    background: linear-gradient(145deg, #FF6B35, #FF8C42);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3), inset 0 1px 3px rgba(255,255,255,0.3);
}

.service-item:nth-child(3) .icon-wrapper {
    background: linear-gradient(145deg, #28A745, #34CE57);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3), inset 0 1px 3px rgba(255,255,255,0.3);
}

.service-item:nth-child(4) .icon-wrapper {
    background: linear-gradient(145deg, #6F42C1, #8A63D2);
    box-shadow: 0 8px 20px rgba(111, 66, 193, 0.3), inset 0 1px 3px rgba(255,255,255,0.3);
}

.service-item:hover .icon-wrapper {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 
        0 12px 30px rgba(65, 105, 225, 0.4),
        inset 0 1px 3px rgba(255,255,255,0.5);
}

.service-item:nth-child(2):hover .icon-wrapper {
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4), inset 0 1px 3px rgba(255,255,255,0.5);
}

.service-item:nth-child(3):hover .icon-wrapper {
    box-shadow: 0 12px 30px rgba(40, 167, 69, 0.4), inset 0 1px 3px rgba(255,255,255,0.5);
}

.service-item:nth-child(4):hover .icon-wrapper {
    box-shadow: 0 12px 30px rgba(111, 66, 193, 0.4), inset 0 1px 3px rgba(255,255,255,0.5);
}

.service-item i {
    font-size: 2.2rem;
    color: white;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.service-item:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.service-item .service-title {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    line-height: 1.4;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
    margin-bottom: 0.5rem;
}

.service-item .service-description {
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
    font-weight: 500;
    color: #6c757d;
    text-align: center;
    line-height: 1.5;
    margin: 0;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.service-item:hover .service-title {
    color: #1a252f;
    transform: translateY(-2px);
}

.service-item:hover .service-description {
    color: #495057;
    opacity: 1;
    transform: translateY(-1px);
}

/* التأثير المتلألئ */
.service-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255,255,255,0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.service-item:hover::after {
    animation: shimmer 0.6s ease-in-out;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

/* استجابة للموبايل */
@media (max-width: 768px) {
    .services-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 0.5rem;
        margin: 2rem 0;
    }
    
    .service-item {
        padding: 1.8rem 1rem 2rem;
    }
    
    .service-item .icon-wrapper {
        width: 65px;
        height: 65px;
    }
    
    .service-item i {
        font-size: 1.8rem;
    }
    
    .service-item .service-title {
        font-size: 1.1rem;
    }
    
    .service-item .service-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .services-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 2.2rem 1.5rem 2.5rem;
    }
    
    .service-item .icon-wrapper {
        width: 75px;
        height: 75px;
    }
    
    .service-item i {
        font-size: 2rem;
    }
    
    .service-item .service-title {
        font-size: 1.2rem;
    }
    
    .service-item .service-description {
        font-size: 0.9rem;
    }
}

/* قسم الفنادق المميزة - تصميم عصري */
.featured-hotels-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.featured-hotels-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.featured-hotels-section .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4169E1, #6B73FF);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(65, 105, 225, 0.3);
    transition: all 0.3s ease;
}

.section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(65, 105, 225, 0.4);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.hotel-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    position: relative;
}

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

.hotel-card.featured {
    border-color: #ffd700;
}

.hotel-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #2c3e50;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.hotel-image {
    position: relative;
    height: 200px;
    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.05);
}

.hotel-stars {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0,0,0,0.8);
    color: #ffd700;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.hotel-stars .fas.fa-star.active {
    color: #ffd700;
}

.hotel-stars .fas.fa-star {
    color: #666;
}

.hotel-content {
    padding: 1.5rem;
}

.hotel-content h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hotel-location {
    color: #6c757d;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hotel-location i {
    color: #4a9b8e;
}

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

.rating-score {
    background: #4a9b8e;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.rating-stars {
    color: #ffd700;
}

.reviews-count {
    color: #6c757d;
    font-size: 0.9rem;
}

.hotel-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hotel-price {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.price-period {
    color: #6c757d;
    font-size: 0.9rem;
}

.hotel-contact-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid #4a9b8e;
}

.contact-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.contact-note i {
    color: #ffc107;
}

.phone-number {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
    direction: ltr;
    text-align: center;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: white;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

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

.hotel-actions .btn {
    flex: 1;
    padding: 0.8rem;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hotel-actions .btn-primary {
    background: linear-gradient(135deg, #4a9b8e, #2c3e50);
    color: white;
}

.hotel-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 155, 142, 0.3);
}

.hotel-actions .btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #20ba5a);
    color: white;
}

.hotel-actions .btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.rating-text small {
    color: #6c757d;
    font-size: 0.75rem;
}

.hotel-description {
    color: #6c757d;
    line-height: 1.4;
    margin: 0.6rem 0;
    font-size: 0.85rem;
}

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

.btn-hotel-details {
    flex: 1;
    background: linear-gradient(135deg, #6c757d, #8d9299);
    color: white;
    padding: 0.6rem 0.6rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    font-size: 0.8rem;
}

.btn-hotel-details:hover {
    background: linear-gradient(135deg, #5a6268, #7a8288);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
    color: white;
}

.btn-hotel-book {
    flex: 1;
    background: linear-gradient(135deg, #25d366, #20ba5a);
    color: white;
    padding: 0.6rem 0.6rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    font-size: 0.8rem;
}

.btn-hotel-book:hover {
    background: linear-gradient(135deg, #20ba5a, #1e9f4e);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    color: white;
}

.section-actions {
    text-align: center;
    margin-top: 3rem;
}

.btn-view-all {
    background: linear-gradient(135deg, #4169E1, #6B73FF);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 6px 20px rgba(65, 105, 225, 0.3);
}

.btn-view-all:hover {
    background: linear-gradient(135deg, #3557d4, #5a6aef);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.4);
    color: white;
}

.no-hotels-content {
    text-align: center;
    padding: 4rem 2rem;
    color: #6c757d;
}

.no-hotels-content i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
    color: #4169E1;
}

.no-hotels-content p {
    font-size: 1.2rem;
    margin: 0;
}

/* استجابة للفنادق */
@media (max-width: 768px) {
    .featured-hotels-section {
        padding: 2rem 0;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    .hotels-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.8rem;
    }
    
    .hotel-card {
        border-radius: 10px;
    }
    
    .hotel-image {
        height: 130px;
    }
    
    .hotel-content {
        padding: 0.9rem;
    }
    
    .hotel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .hotel-stars {
        margin-left: 0;
    }
    
    .hotel-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-view-all {
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hotels-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .hotel-content {
        padding: 0.8rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .hotel-image {
        height: 120px;
    }
    
    .hotel-header h3 {
        font-size: 1rem;
    }
}

/* استجابة للشاشات الصغيرة - التصميم الجديد */
@media (max-width: 768px) {
    .packages-header-new {
        padding: 2rem 1.5rem;
    }

    .packages-title-gold {
        font-size: 31px;
    }

    .packages-title-blue {
        font-size: 2rem;
    }

    .packages-description {
        font-size: 1rem;
    }

    .packages-orange-line {
        width: 80px;
        height: 3px;
    }
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #28a745;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.package-badge.vip-badge {
    background: #6f42c1;
}



/* رسالة عدم وجود رحلات */
.no-trips-message {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}

.no-trips-message p {
    font-size: 1.1rem;
    margin: 0;
}

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

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.package-duration {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.package-availability {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 15;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    animation: availabilityBlink 3s infinite;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@keyframes availabilityBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.package-content {
    padding: 2rem 1.5rem;
}

.package-content h4 {
    color: #f39c12;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 4px rgba(243, 156, 18, 0.2);
}

.package-content .package-subtitle {
    color: #6c757d;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-weight: 500;
}

.package-subtitle {
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-size: 14px;
    line-height: 1.4;
}


/* مميزات الرحلات - بسيط وصحيح */
.trip-features {
    margin: 1.5rem 0;
}

.trip-feature {
    display: flex;
    align-items: center;
    text-align: right;
    padding: 0.6rem 0;
    margin-bottom: 0.5rem;
    color: #495057;
    font-size: 14px;
    line-height: 1.5;
    border-bottom: 1px solid #f0f0f0;
}

.trip-feature:last-child {
    border-bottom: none;
}

.trip-feature::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    font-size: 16px;
    margin-left: 8px;
    flex-shrink: 0;
}

/* مميزات VIP */
.package-card.vip .trip-feature::before {
    color: #9c27b0;
}



.package-features i {
    display: none; /* إخفاء الأيقونات القديمة */
}

/* مميزات الباقات المميزة */
.package-card.featured .package-features li {
    border-left-color: #28a745;
}

.package-card.featured .package-features i {
    color: #28a745;
}

.package-card.vip-package .package-features li {
    border-left-color: #6f42c1;
    background: linear-gradient(135deg, #f8f9ff, #f0f4ff);
}

.package-card.vip-package .package-features i {
    color: #6f42c1;
}

.package-actions {
    border-top: 1px solid #e9ecef;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-package {
    background: linear-gradient(135deg, #20c997, #17a2b8);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
    border: none;
}

.btn-package:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 201, 151, 0.4);
    text-decoration: none;
    color: white;
}

/* أزرار VIP */
.package-card.vip .btn-package {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.package-card.vip .btn-package:hover {
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    transform: translateY(-2px) scale(1.02);
}

.btn-package:hover {
    background: #138496;
    transform: translateY(-2px);
}

.btn-package.vip-btn {
    background: #6f42c1;
}

.btn-package.vip-btn:hover {
    background: #5a2d91;
}

.package-info {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.package-info span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #6c757d;
    font-size: 12px;
}

.package-info i {
    color: #28a745;
    font-size: 10px;
}

/* فورم الحجز داخل الكارت */
.booking-form {
    border-top: 1px solid #e9ecef;
    padding: 1.5rem;
    background: #f8f9fa;
    margin-top: 1rem;
    border-radius: 0 0 15px 15px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

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

.booking-header h4 {
    color: #17a2b8;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.booking-form .form-group {
    margin-bottom: 1.2rem;
}

.booking-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
    font-size: 13px;
}

.booking-form .form-group input,
.booking-form .form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 13px;
    transition: all 0.3s ease;
    background: white;
    color: #374151;
    box-sizing: border-box;
}

.booking-form .form-group input:focus,
.booking-form .form-group select:focus {
    outline: none;
    border-color: #17a2b8;
    box-shadow: 0 0 0 2px rgba(23, 162, 184, 0.1);
}

.booking-form .form-group input::placeholder {
    color: #9ca3af;
    font-size: 12px;
}

.booking-form .form-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.btn-whatsapp-send {
    background: #25d366;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
}

.btn-whatsapp-send:hover {
    background: #20ba5a;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

.btn-cancel {
    background: #6c757d;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 0.4;
    font-size: 13px;
}

.btn-cancel:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

/* قسم الباصات */
.buses-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
    padding: 4rem 0;
    position: relative;
}

.buses-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #4285f4;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.buses-section .section-header h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.buses-section .section-header h3 {
    color: #4285f4;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.buses-section .section-header p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.buses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.bus-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    position: relative;
    text-align: center;
}

.bus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.bus-card.vip {
    border-color: #6f42c1;
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
}

.bus-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #6f42c1;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.bus-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4285f4, #1976d2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
}

.bus-card.vip .bus-icon {
    background: linear-gradient(135deg, #6f42c1, #5a2d91);
    box-shadow: 0 8px 20px rgba(111, 66, 193, 0.3);
}

.bus-icon i {
    font-size: 2rem;
    color: white;
}

.bus-content h4 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.bus-subtitle {
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-size: 14px;
    line-height: 1.5;
}

.bus-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #495057;
    font-size: 14px;
}

.feature-item i {
    color: #4285f4;
    width: 16px;
    font-size: 12px;
}

.bus-card.vip .feature-item i {
    color: #6f42c1;
}

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

.price-label {
    color: #17a2b8;
    font-weight: 600;
    font-size: 14px;
}

.bus-card.vip .price-label {
    color: #6f42c1;
}

/* قسم لماذا نحن الخيار الأول */
.why-us-section {
    background: white;
    padding: 4rem 0;
    position: relative;
}

.why-us-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-us-section .section-header h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.why-us-section .section-header h3 {
    color: #4285f4;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-us-section .section-header p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.features-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    color: #28a745;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #28a745;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.2);
}

.feature-badge i {
    font-size: 16px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.why-us-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4285f4, #1976d2);
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4285f4, #1976d2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
    transition: all 0.3s ease;
}

.why-us-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(66, 133, 244, 0.4);
}

.card-icon i {
    font-size: 1.8rem;
    color: white;
}

.card-content h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
}

.card-content p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* الرحلات المميزة */
.featured-trips {
    padding: 4rem 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #17a2b8;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

.trip-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.trip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.trip-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.trip-card:hover .trip-image img {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #dc3545;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.trip-content {
    padding: 1.5rem;
}

.trip-content h3 {
    color: #17a2b8;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.trip-content p {
    color: #6c757d;
    margin-bottom: 1rem;
    font-size: 14px;
    line-height: 1.5;
}

.trip-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 13px;
}

.detail i {
    color: #17a2b8;
    width: 16px;
    font-size: 12px;
}

.trip-price {
    margin-bottom: 1.2rem;
    text-align: center;
}

.original-price {
    text-decoration: line-through;
    color: #adb5bd;
    margin-left: 10px;
    font-size: 14px;
}

.current-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #28a745;
}

.trip-actions {
    display: flex;
    gap: 0.8rem;
}

.trip-actions .btn {
    flex: 1;
    text-align: center;
    padding: 10px 15px;
    font-size: 13px;
}

/* قسم المعلومات */
.info-section {
    background: white;
    padding: 4rem 0;
}

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

.info-text h2 {
    color: #17a2b8;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.info-text p {
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 15px;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #495057;
    font-size: 15px;
}

.features-list i {
    color: #28a745;
    font-size: 1.1rem;
}

.info-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* لماذا نحن الأفضل */
.why-us {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #17a2b8, #138496);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-item h3 {
    color: #17a2b8;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.feature-item p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 14px;
}

/* الفوتر الجديد البسيط والاحترافي */
.modern-footer {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

/* معلومات الشركة */
.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}

.footer-logo h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.footer-tagline {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* صفحات الموقع والخدمات الرسمية */
.footer-nav h4,
.footer-official h4,
.footer-contact h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-nav h4::after,
.footer-official h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 30px;
    height: 2px;
    background: #4a9b8e;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: #4a9b8e;
    transform: translateX(-5px);
}

.footer-links a::before {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #4a9b8e;
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 10px;
}

/* تنسيقات خاصة للخدمات الرسمية */
.footer-official .footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f3f4;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.footer-official .footer-links a:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.footer-official .footer-links a i {
    color: #4a9b8e;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.footer-official .footer-links a:hover {
    background: #f8f9fa;
    padding-right: 0.5rem;
    border-radius: 5px;
    transform: none;
}

.footer-official .footer-links a::before {
    display: none;
}

/* معلومات الاتصال */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-color: #4a9b8e;
}

.contact-link.whatsapp:hover {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

.contact-link.phone:hover {
    background: #4a9b8e;
    color: white;
    border-color: #4a9b8e;
}

.contact-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* خط الفصل */
.footer-divider {
    height: 1px;
    background: #e9ecef;
    margin: 2rem 0 1.5rem;
}

/* حقوق النشر */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #4a9b8e;
}

.footer-legal span {
    color: #dee2e6;
}

/* صفحة تفاصيل الرحلة */
.trip-details-content {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.trip-main-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.trip-image-large {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.trip-image-large img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.trip-info h1 {
    color: #2c5aa0;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trip-description {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.trip-highlights {
    display: grid;
    gap: 1rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-right: 4px solid #2c5aa0;
}

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

.highlight strong {
    display: block;
    color: #374151;
    margin-bottom: 0.2rem;
}

.highlight span {
    color: #6b7280;
}

.trip-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.trip-includes, .trip-excludes {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.trip-includes h3, .trip-excludes h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.trip-includes h3 {
    color: #10b981;
}

.trip-excludes h3 {
    color: #ef4444;
}

.include-item, .exclude-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
}

.include-item i {
    color: #10b981;
}

.exclude-item i {
    color: #ef4444;
}

.booking-card {
    position: sticky;
    top: 120px;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #2c5aa0;
}

.price-section {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.price-section .original-price {
    display: block;
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.price-section .current-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.price-section .price-note {
    color: #6b7280;
    font-size: 0.9rem;
}

.booking-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: 600;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.booking-features .feature i {
    color: #10b981;
    width: 16px;
}

/* صفحة الحجز */
.booking-page {
    background: #f8fafc;
    min-height: calc(100vh - 200px);
}

.booking-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.booking-form-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.booking-form-section h1 {
    color: #2c5aa0;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.error-message {
    background: #fef2f2;
    color: #dc2626;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    color: #374151;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

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

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #374151;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.booking-summary {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 120px;
}

.booking-summary h3 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.trip-summary {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.trip-summary img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.trip-summary .trip-info h4 {
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.trip-summary .trip-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.trip-summary .trip-details i {
    color: #2c5aa0;
    width: 14px;
}

.price-breakdown {
    margin-bottom: 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.price-item.total {
    border-top: 2px solid #2c5aa0;
    border-bottom: none;
    font-weight: 700;
    font-size: 1.1rem;
    color: #2c5aa0;
}

.contact-support {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 2rem;
}

.contact-support h4 {
    color: #374151;
    margin-bottom: 0.5rem;
}

.contact-support p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.support-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c5aa0;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

.support-phone:hover {
    color: #1e3a8a;
}

/* رسالة نجاح الحجز */
.booking-success {
    text-align: center;
    background: white;
    padding: 4rem 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 2rem;
}

.booking-success h2 {
    color: #2c5aa0;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.booking-success p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* تحسينات إضافية */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #e9ecef, transparent);
    margin: 2rem 0;
}

/* تأثيرات الحركة */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* استجابة للشاشات الصغيرة */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

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

    .hero-description p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .button-row {
        flex-direction: row;
        gap: 0.8rem;
        width: 100%;
        justify-content: center;
    }

    .button-row .btn {
        flex: 1;
        max-width: calc(50% - 0.4rem);
        min-width: 80px;
        font-size: 13px;
        padding: 10px 8px;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }



    .logo-circle {
        width: 80px;
        height: 80px;
    }

    .logo-circle img {
        width: 120px;
        height: 120px;
    }

    .info-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .header-content {
        padding: 0.8rem 0;
    }

    .header-center h2 {
        font-size: 1.1rem;
    }

    .header-center p {
        font-size: 0.8rem;
    }

    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

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

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

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

    .packages-section .section-header {
        padding: 1.5rem;
    }

    .packages-section .section-header h2 {
        font-size: 1.8rem;
    }

    .packages-section .section-header h3 {
        font-size: 1.3rem;
    }

    .package-card.featured {
        transform: none;
    }

    .package-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .booking-form {
        padding: 1rem;
    }

    .booking-form .form-actions {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn-cancel {
        flex: 1;
    }

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

    .modal-header {
        padding: 1rem;
    }

    .modal-header h3 {
        font-size: 1.1rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-cancel {
        flex: 1;
    }

    .buses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .bus-card {
        padding: 1.5rem;
    }

    .buses-section .section-header h2 {
        font-size: 1.8rem;
    }

    .buses-section .section-header h3 {
        font-size: 1.3rem;
    }

    .bus-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .bus-icon i {
        font-size: 1.5rem;
    }

    .features-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .feature-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-us-card {
        padding: 1.5rem;
    }

    .why-us-section .section-header h2 {
        font-size: 1.8rem;
    }

    .why-us-section .section-header h3 {
        font-size: 1.3rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .card-icon i {
        font-size: 1.5rem;
    }

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

    /* الفوتر الجديد - استجابة للموبايل */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-nav h4::after,
    .footer-official h4::after,
    .footer-contact h4::after {
        right: 50%;
        transform: translateX(50%);
    }

    .footer-links a::before {
        display: none;
    }

    .footer-links a:hover {
        transform: none;
    }

    .contact-links {
        align-items: center;
    }

    .contact-link {
        max-width: 250px;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

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

    .hero-description p {
        font-size: 0.9rem;
    }

    .logo-circle {
        width: 110px;
        height: 110px;
    }

    .logo-circle img {
        width: 84px;
        height: 84px;
    }

    .logo-circle i {
        font-size: 1.8rem;
    }



    .button-row .btn {
        font-size: 12px;
        padding: 8px 6px;
        min-width: 70px;
        max-width: calc(50% - 0.25rem);
        border-radius: 8px;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .header-center h2 {
        font-size: 1rem;
    }

    .header-center p {
        font-size: 0.75rem;
    }

    .container {
        padding: 0 10px;
        width: calc(100% - 20px);
        max-width: 100%;
        box-sizing: border-box;
    }

    .trip-card {
        margin: 0 10px;
    }

    .feature-item {
        padding: 1.5rem 1rem;
    }

    .search-form h3 {
        font-size: 1.5rem;
    }
}

/* صفحة البحث */
.search-results {
    background: #f8fafc;
    min-height: calc(100vh - 200px);
}

.search-header {
    text-align: center;
    margin-bottom: 3rem;
}

.search-header h1 {
    color: #2c5aa0;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.search-header p {
    color: #6b7280;
    font-size: 1.2rem;
}

.search-filters {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.filter-form {
    margin: 0;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: end;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f59e0b;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.no-results {
    text-align: center;
    background: white;
    padding: 4rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.no-results-icon {
    font-size: 4rem;
    color: #9ca3af;
    margin-bottom: 2rem;
}

.no-results h3 {
    color: #374151;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.no-results p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.no-results-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* تحسينات إضافية للاستجابة */
@media (max-width: 480px) {
    .filter-row {
        grid-template-columns: 1fr;
    }

    .no-results-actions {
        flex-direction: column;
        align-items: center;
    }

    .trip-actions {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .package-features {
        justify-content: center;
    }

    .package-features li {
        font-size: 11px;
        padding: 0.4rem 0.6rem;
    }
}

/* استجابة الهيدر الشفاف للموبايل */
@media (max-width: 768px) {
    .header-transparent {
        height: auto;
        min-height: 80px;
        padding: 0.8rem 0;
    }

    .nav-content {
        padding: 0 10px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .nav-logo-section {
        gap: 0.8rem;
        flex: 1;
        min-width: 0;
    }

    .mini-actions {
        gap: 0.4rem;
        flex-shrink: 0;
    }

    .mini-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        flex-shrink: 0;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(44, 62, 80, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .nav-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .btn-whatsapp-header,
    .btn-book-header {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .nav-toggle {
        display: flex;
    }
}

/* صفحات الفنادق */

/* هيرو الفنادق */
.hero-hotels {
    background: linear-gradient(135deg, #4a9b8e 0%, #2c3e50 100%);
    padding: 8rem 0 4rem;
    color: white;
    text-align: center;
}

.hero-hotels h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-hotels p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* فلاتر البحث */
.hotels-filters {
    background: #f8f9fa;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.filters-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.filter-group input,
.filter-group select {
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: #4a9b8e;
}

.btn-filter {
    background: linear-gradient(135deg, #4a9b8e, #2c3e50);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 155, 142, 0.3);
}

/* قائمة الفنادق */
.hotels-list {
    padding: 4rem 0;
}

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

.hotel-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    position: relative;
}

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

.hotel-card.featured {
    border-color: #ffd700;
}

.hotel-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #2c3e50;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.hotel-image {
    position: relative;
    height: 200px;
    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.05);
}

.hotel-stars {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0,0,0,0.8);
    color: #ffd700;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.hotel-stars .fas.fa-star.active {
    color: #ffd700;
}

.hotel-stars .fas.fa-star {
    color: #666;
}

.hotel-content {
    padding: 1.5rem;
}

.hotel-content h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hotel-location {
    color: #6c757d;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hotel-location i {
    color: #4a9b8e;
}

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

.rating-score {
    background: #4a9b8e;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.rating-stars {
    color: #ffd700;
}

.reviews-count {
    color: #6c757d;
    font-size: 0.9rem;
}

.hotel-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hotel-price {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.price-period {
    color: #6c757d;
    font-size: 0.9rem;
}

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

.hotel-actions .btn {
    flex: 1;
    padding: 0.8rem;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hotel-actions .btn-primary {
    background: linear-gradient(135deg, #4a9b8e, #2c3e50);
    color: white;
}

.hotel-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 155, 142, 0.3);
}

.hotel-actions .btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #20ba5a);
    color: white;
}

.hotel-actions .btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* رسالة عدم وجود نتائج */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: #6c757d;
}

.no-results i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #dee2e6;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

/* صفحة تفاصيل الفندق */
.hotel-details {
    padding: 6rem 0 4rem;
}

.breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: #4a9b8e;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a:hover {
    color: #2c3e50;
}

.hotel-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.hotel-main-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

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

.hotel-badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #2c3e50;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
}

.hotel-info h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hotel-name-en {
    color: #6c757d;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hotel-stars-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hotel-stars-large .fas.fa-star.active {
    color: #ffd700;
    font-size: 1.5rem;
}

.hotel-stars-large .fas.fa-star {
    color: #dee2e6;
    font-size: 1.5rem;
}

.stars-text {
    font-weight: 600;
    color: #2c3e50;
}

.hotel-location-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #6c757d;
}

.hotel-location-large i {
    color: #4a9b8e;
    font-size: 1.2rem;
}

.distance {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hotel-rating-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.rating-score-large {
    background: #4a9b8e;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.rating-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hotel-price-large {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
}

.hotel-price-large .price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    display: block;
}

.hotel-price-large .price-period {
    color: #6c757d;
    font-size: 1rem;
}

.hotel-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.hotel-description-section,
.hotel-amenities-section,
.hotel-location-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.hotel-content-grid h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    border-bottom: 2px solid #4a9b8e;
    padding-bottom: 0.5rem;
}

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

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #4a9b8e;
}

.amenity-item i {
    color: #4a9b8e;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

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

.location-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.location-item i {
    color: #4a9b8e;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

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

.location-item strong {
    color: #2c3e50;
    font-weight: 600;
}

.hotel-booking-section {
    background: linear-gradient(135deg, #4a9b8e, #2c3e50);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.hotel-booking-section h2 {
    color: white;
    border-bottom: 2px solid rgba(255,255,255,0.3);
}

.booking-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-whatsapp-large,
.btn-call {
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.btn-whatsapp-large {
    background: linear-gradient(135deg, #25d366, #20ba5a);
    color: white;
}

.btn-whatsapp-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-call {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #2c3e50;
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.booking-note {
    font-size: 0.9rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* الفنادق المشابهة */
.similar-hotels {
    background: #f8f9fa;
    padding: 4rem 0;
}

.similar-hotels h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

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

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

.similar-hotel-image {
    height: 150px;
    overflow: hidden;
}

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

.similar-hotel-info {
    padding: 1.5rem;
    text-align: center;
}

.similar-hotel-info h4 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.similar-hotel-stars {
    color: #ffd700;
    margin-bottom: 0.8rem;
}

.similar-hotel-price {
    color: #4a9b8e;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.btn-outline {
    background: transparent;
    color: #4a9b8e;
    border: 2px solid #4a9b8e;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #4a9b8e;
    color: white;
}

/* القائمة الرئيسية للهيدر الجديد */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.main-header.white .nav-link {
    color: #2c3e50;
}

.main-header.transparent.scrolled .nav-link {
    color: #2c3e50;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.main-header.white .nav-link:hover {
    background: rgba(74, 155, 142, 0.1);
    color: #4a9b8e;
}

.main-header.transparent.scrolled .nav-link:hover {
    background: rgba(74, 155, 142, 0.1);
    color: #4a9b8e;
}

/* الاستجابة للموبايل - الهيدر الجديد */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-nav.active {
        display: block;
    }
    
    /* تحسين صفحة تفاصيل الفندق للموبايل */
    .hotel-details {
        padding: 4rem 0 2rem;
    }
    
    .hotel-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .hotel-main-image {
        height: 250px;
        margin-bottom: 1rem;
    }
    
    .hotel-info h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hotel-name-en {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hotel-stars-large {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .hotel-stars-large .fas.fa-star.active,
    .hotel-stars-large .fas.fa-star {
        font-size: 1.2rem;
    }
    
    .hotel-location-large {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .hotel-rating-large {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .rating-score-large {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .hotel-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hotel-description-section,
    .hotel-amenities-section,
    .hotel-location-section,
    .hotel-booking-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hotel-content-grid h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .amenity-item {
        padding: 0.6rem;
        gap: 0.6rem;
    }
    
    .location-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .location-item i {
        font-size: 1.2rem;
        width: 25px;
    }
    
    .booking-actions {
        gap: 0.8rem;
    }
    
    .btn-whatsapp-large,
    .btn-call {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .booking-note {
        font-size: 0.85rem;
    }
    
    /* الفنادق المشابهة للموبايل */
    .similar-hotels {
        padding: 2rem 0;
    }
    
    .similar-hotels h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .similar-hotels-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .similar-hotel-info {
        padding: 1rem;
    }
    
    .similar-hotel-image {
        height: 120px;
    }
    
    /* تحسين معلومات الاتصال الكبيرة للموبايل */
    .hotel-contact-info-large {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .contact-note,
    .special-offers {
        font-size: 0.9rem;
        gap: 0.5rem;
        margin-bottom: 0.6rem;
    }
    
    .contact-note i,
    .special-offers i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hotel-details {
        padding: 3rem 0 1.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hotel-main-image {
        height: 200px;
        border-radius: 10px;
    }
    
    .hotel-info h1 {
        font-size: 1.5rem;
    }
    
    .hotel-name-en {
        font-size: 0.9rem;
    }
    
    .hotel-stars-large .fas.fa-star.active,
    .hotel-stars-large .fas.fa-star {
        font-size: 1rem;
    }
    
    .rating-score-large {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .hotel-description-section,
    .hotel-amenities-section,
    .hotel-location-section,
    .hotel-booking-section {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .hotel-content-grid h2 {
        font-size: 1.2rem;
    }
    
    .amenity-item {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .amenity-item i {
        font-size: 1rem;
    }
    
    .location-item {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .btn-whatsapp-large,
    .btn-call {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .similar-hotels h2 {
        font-size: 1.3rem;
    }
    
    .similar-hotel-info h4 {
        font-size: 1rem;
    }
    
    .hotel-contact-info-large {
        padding: 0.8rem;
        border-radius: 8px;
    }
    
    .contact-note,
    .special-offers {
        font-size: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
}
@media (max-width: 768px) {
    .nav-container {
        padding: 0 10px;
        width: calc(100% - 20px);
        max-width: 100%;
    }

    .mobile-actions {
        gap: 0.6rem;
    }

    .mini-actions {
        display: flex;
        gap: 0.4rem;
    }

    .mini-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(44, 62, 80, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
        width: 100%;
    }

    .nav-link {
        color: white !important;
        padding: 1rem;
        border-radius: 8px;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .nav-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .btn-header {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        box-sizing: border-box;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
}

/* زر العودة للأعلى */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4a9b8e, #5fb3a3);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(74, 155, 142, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 155, 142, 0.4);
}

/* أيقونة واتساب ثابتة */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #20ba5a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

/* تأثير النبضة لأيقونة واتساب */
@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 2rem 0 1rem;
        margin-top: 2rem;
    }

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

    .footer-tagline {
        font-size: 0.9rem;
    }

    .contact-link {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .scroll-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* قسم المعارض (الباصات والفنادق) */
.gallery-section {
    padding: 5rem 0;
    position: relative;
}

.gallery-section.buses-gallery {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-section.hotels-gallery {
    background: linear-gradient(135deg, #fff8e1 0%, #fffde7 100%);
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-header .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4a9b8e, #5fb3a3);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(74, 155, 142, 0.3);
}

.hotels-gallery .gallery-header .section-badge {
    background: linear-gradient(135deg, #ff9800, #ffa726);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.gallery-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.gallery-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    color: white;
    padding: 2rem;
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
    margin: 0;
}

.gallery-actions {
    text-align: center;
    margin-top: 2rem;
}

.btn-gallery {
    background: linear-gradient(135deg, #4a9b8e, #5fb3a3);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 155, 142, 0.3);
    font-size: 1rem;
}

.btn-gallery:hover {
    background: linear-gradient(135deg, #3d8b7e, #4da393);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 155, 142, 0.4);
    color: white;
    text-decoration: none;
}

.hotels-gallery .btn-gallery {
    background: linear-gradient(135deg, #ff9800, #ffa726);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.hotels-gallery .btn-gallery:hover {
    background: linear-gradient(135deg, #f57c00, #ff9800);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.no-gallery-content {
    text-align: center;
    padding: 4rem 2rem;
    color: #6c757d;
}

.no-gallery-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-gallery-content p {
    font-size: 1.1rem;
    margin: 0;
}

/* الاستجابة للموبايل - المعارض */
@media (max-width: 768px) {
    .gallery-section {
        padding: 3rem 0;
    }
    
    .gallery-header {
        margin-bottom: 2.5rem;
    }
    
    .gallery-header h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-content {
        padding: 1.5rem;
    }
    
    .gallery-content h4 {
        font-size: 1.1rem;
    }
    
    .gallery-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-header h2 {
        font-size: 1.6rem;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .btn-gallery {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}
