/* إعدادات عامة */
* {
    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;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* خلفيات الهيرو المتعددة */
.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;
    
}

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

.hero-content {
    position: relative;
    z-index: 15;
    max-width: calc(100% - 40px);
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}

.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-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);
}



/* قسم باقات العمرة */
.packages-section {
    background: #f8f9fa;
    padding: 4rem 0;
    margin-top: -80px;
    position: relative;
    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;
}

/* استجابة للشاشات الصغيرة - التصميم الجديد */
@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-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;
    }
}
