/* ===== المتغيرات والأساسيات ===== */
:root {
    --primary: #b87333;
    --primary-dark: #9a6129;
    --accent: #1e3a32;
    --accent-light: #2d5a4a;
    --bg-dark: #0f1412;
    --bg-light: #ffffff;
    --text: #2c2c2c;
    --text-muted: #5a5a5a;
    --white: #fff;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.12);
    --radius: 14px;
    --radius-sm: 10px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.rtl {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Arial, sans-serif;
}

body.ltr {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', Tahoma, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--text);
    line-height: 1.7;
}

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

/* ===== الأزرار ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(46, 125, 50, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46, 125, 50, 0.4);
}

.btn-outline {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: var(--white);
    border: 2px solid #2e7d32;
    box-shadow: 0 4px 14px rgba(46, 125, 50, 0.35);
}

.btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46, 125, 50, 0.4);
}

/* ===== الهيدر ===== */
.header {
    position: relative;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: var(--radius-sm);
}

.logo i {
    font-size: 1.2rem;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* مبدّل اللغات */
.lang-switcher {
    display: flex;
    background: var(--bg-light);
    border-radius: 10px;
    padding: 4px;
}

.lang-btn {
    padding: 8px 14px;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 8px;
    transition: all var(--transition);
}

.lang-btn:hover {
    color: var(--accent);
}

.lang-btn.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--accent);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slider {
    min-height: 420px;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,58,50,0.85) 0%, rgba(45,90,74,0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 640px;
    padding: 0 24px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
}

.btn-hero {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.2);
    color: white;
    cursor: pointer;
    z-index: 3;
    transition: all var(--transition);
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.hero-prev { right: 24px; }
.hero-next { left: 24px; }

.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all var(--transition);
}

.hero-dots span.active {
    background: white;
    transform: scale(1.2);
}

/* ===== التخطيط الرئيسي ===== */
.main-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px 24px;
}

.content-area { min-width: 0; }

/* ===== العناوين ===== */
.section {
    margin-bottom: 56px;
}

.section-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 4px solid var(--primary);
    display: inline-block;
}

/* ===== قسم الرحلات مع الإطار ===== */
.trips-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 48px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 0 2px #2e7d32,
        0 0 0 4px rgba(46, 125, 50, 0.1),
        0 8px 32px rgba(46, 125, 50, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all var(--transition);
}

.trips-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        #2e7d32 0%, 
        #4caf50 25%, 
        #66bb6a 50%, 
        #4caf50 75%, 
        #2e7d32 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    border-radius: 20px 20px 0 0;
}

.trips-section::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(46, 125, 50, 0.3) 0%, 
        rgba(46, 125, 50, 0.1) 50%, 
        rgba(46, 125, 50, 0.3) 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.trips-section:hover {
    box-shadow: 
        0 0 0 2px #2e7d32,
        0 0 0 4px rgba(46, 125, 50, 0.15),
        0 12px 48px rgba(46, 125, 50, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* ===== سلايدر الرحلات ===== */
.trips-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    overflow: hidden;
}

.slider-btn {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    cursor: pointer;
    transition: all var(--transition);
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.slider-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 12px 0;
    direction: ltr;
}

.slider-track::-webkit-scrollbar { display: none; }

.trip-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

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

.trip-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.trip-info {
    padding: 24px;
}

.trip-info h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--accent);
}

.trip-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all var(--transition);
}

.slider-dots span.active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
}

/* ===== فورم الحجز ===== */
.booking-section {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.booking-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
    font-weight: 600;
    color: var(--accent);
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 14px 18px;
    border: 2px solid #e8e6e3;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 1.05rem;
}

.booking-confirm {
    display: none;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: var(--radius);
    color: var(--accent);
}

.booking-confirm.show { display: block; }

.booking-confirm i {
    font-size: 4rem;
    color: #2e7d32;
    margin-bottom: 20px;
}

.booking-confirm h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

/* ===== الخدمات ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
}

.service-card h3 {
    color: var(--accent);
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== نصائح مصر ===== */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.tip-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    border-inline-start: 5px solid var(--primary);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

body.rtl .tip-card { border-inline-start: none; border-right: 5px solid var(--primary); }
body.ltr .tip-card { border-inline-start: 5px solid var(--primary); }

body.rtl .tip-card:hover { transform: translateX(-4px); }
body.ltr .tip-card:hover { transform: translateX(4px); }

.tip-icon {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.tip-card h3 {
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.tip-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== من نحن ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text p {
    margin-bottom: 18px;
    color: var(--text-muted);
}

.about-video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: transform var(--transition);
}

.about-video-placeholder:hover { transform: scale(1.02); }

.about-video-placeholder i {
    font-size: 4rem;
    margin-bottom: 12px;
}

/* ===== الشريط الجانبي ===== */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-section {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 28px;
}

.sidebar-section h3 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.15rem;
}

.quick-links { list-style: none; }

.quick-links li { margin-bottom: 6px; }

.quick-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
    padding: 10px 0;
    transition: color var(--transition);
}

.quick-links a:hover { color: var(--primary); }

.quick-links i {
    color: var(--primary);
    width: 20px;
}

.trips-schedule {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.trips-schedule th,
.trips-schedule td {
    padding: 12px 14px;
    text-align: inherit;
    border-bottom: 1px solid #eee;
}

body.rtl .trips-schedule th,
body.rtl .trips-schedule td { text-align: right; }
body.ltr .trips-schedule th,
body.ltr .trips-schedule td { text-align: left; }

.trips-schedule th {
    background: var(--bg-light);
    color: var(--accent);
    font-weight: 600;
}

.trips-schedule tr:hover td { background: #fafafa; }

/* Sidebar Tips */
.sidebar-tips {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-tip-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.sidebar-tip-item:hover {
    background: rgba(184, 115, 51, 0.08);
    transform: translateX(-4px);
}

body.ltr .sidebar-tip-item:hover {
    transform: translateX(4px);
}

.sidebar-tip-item i {
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.sidebar-tip-item strong {
    display: block;
    color: var(--accent);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.sidebar-tip-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Sidebar About */
.sidebar-about p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.sidebar-about strong {
    color: var(--accent);
}

/* ===== الفوتر ===== */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    margin-top: 64px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding: 48px 24px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section h3 {
    margin-bottom: 16px;
    color: var(--primary);
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    color: var(--white);
    font-size: 1.25rem;
    transition: color var(--transition);
}

.social-links a:hover { color: var(--primary); }

/* ===== Footer Ratings ===== */
.footer-ratings {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.15) 0%, rgba(245, 166, 35, 0.05) 100%);
    padding: 20px 18px;
    border-radius: 12px;
    border: 2px solid rgba(245, 166, 35, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-ratings::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.rating-stars i {
    color: #f5a623;
    text-shadow: 
        0 0 10px rgba(245, 166, 35, 0.5),
        0 2px 8px rgba(245, 166, 35, 0.4),
        0 0 20px rgba(245, 166, 35, 0.3);
    animation: starGlow 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(245, 166, 35, 0.6));
    transition: transform 0.3s ease;
}

.rating-stars i:hover {
    transform: scale(1.2) rotate(15deg);
}

.rating-stars i:nth-child(1) { animation-delay: 0s; }
.rating-stars i:nth-child(2) { animation-delay: 0.15s; }
.rating-stars i:nth-child(3) { animation-delay: 0.3s; }
.rating-stars i:nth-child(4) { animation-delay: 0.45s; }
.rating-stars i:nth-child(5) { animation-delay: 0.6s; }

@keyframes starGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
        filter: drop-shadow(0 0 4px rgba(245, 166, 35, 0.6));
    }
    50% {
        transform: scale(1.15);
        opacity: 0.9;
        filter: drop-shadow(0 0 12px rgba(245, 166, 35, 0.9));
    }
}

.rating-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.rating-value {
    color: #f5a623;
    font-size: 2rem;
    text-shadow: 
        0 0 15px rgba(245, 166, 35, 0.6),
        0 2px 10px rgba(245, 166, 35, 0.4);
    font-weight: 800;
    letter-spacing: -1px;
}

.rating-total {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    font-weight: 500;
}

.rating-count {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin-top: 6px;
    position: relative;
    z-index: 1;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.9rem;
    opacity: 0.85;
}

/* ===== Trip Detail Page Styles ===== */

/* Simple Hero */
.trip-hero-simple {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.trip-hero-simple .trip-hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.trip-hero-simple .trip-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,20,18,0.8) 0%, rgba(30,58,50,0.6) 100%);
    z-index: 2;
}

.trip-hero-simple .trip-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 48px 24px;
}

.trip-hero-simple h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 32px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.trip-hero-simple .trip-hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.trip-hero-simple .btn-large {
    padding: 16px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.trip-hero-simple .btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(184,115,51,0.3);
}

/* Hero */
.trip-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.trip-hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.trip-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,20,18,0.96) 0%, rgba(30,58,50,0.6) 50%, transparent 100%);
}

.trip-hero-content {
    position: relative;
    z-index: 2;
    padding: 48px 24px 48px;
    max-width: 900px;
}

.trip-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.trip-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.trip-hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.95);
}

.trip-hero-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.trip-hero-info i {
    color: var(--primary);
}

.trip-hero-price {
    font-weight: 700;
    color: white !important;
}

/* Header Section: Gallery + Price + Included */
.trip-header-section {
    padding: 0 0 64px;
}

.trip-header-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
    margin-top: -80px;
    position: relative;
    z-index: 5;
}

.trip-gallery-block {
    min-width: 0;
}

.trip-info-block {
    position: sticky;
    top: 100px;
}

/* Gallery: Main + Thumbs */
.photo-gallery {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
}

.photo-gallery .gallery-main {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.photo-gallery .gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    padding: 12px;
}

.gallery-thumb {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--primary);
    opacity: 1;
}

.gallery-thumb:not(.active) {
    opacity: 0.8;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Trip Info Card */
.trip-info-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
}

.trip-price-box {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.price-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
}

.price-note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.included-excluded {
    margin-bottom: 20px;
}

.included h4,
.excluded h4 {
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.included h4 { color: #2e7d32; }
.included h4 i { color: #2e7d32; }

.excluded h4 { color: #c62828; }
.excluded h4 i { color: #c62828; }

.included ul,
.excluded ul {
    list-style: none;
    padding: 0;
}

.included li,
.excluded li {
    padding: 5px 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    padding-inline-start: 22px;
    position: relative;
}

.included li::before {
    content: "✓";
    position: absolute;
    inset-inline-start: 0;
    color: #2e7d32;
    font-weight: 700;
}

.excluded li::before {
    content: "×";
    position: absolute;
    inset-inline-start: 0;
    color: #c62828;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Main Layout */
.trip-detail-main {
    padding: 0 0 64px;
}

.trip-detail-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
}

.trip-detail-content {
    min-width: 0;
}

.trip-section {
    margin-bottom: 48px;
}

/* Itinerary Accordion */
.itinerary-accordion {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background var(--transition);
}

.accordion-header:hover {
    background: rgba(184, 115, 51, 0.08);
}

.accordion-time {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
}

.accordion-title {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent);
}

.accordion-icon {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform var(--transition);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 400px;
}

.accordion-content p {
    padding: 0 24px 20px 24px;
    padding-inline-start: calc(24px + 70px + 20px);
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .accordion-content p {
        padding-inline-start: 24px;
    }
}

/* Tips Grid (Trip Detail) */
.tips-grid .tip-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.tips-grid .tip-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.tips-grid .tip-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.tips-grid .tip-card h4 {
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.tips-grid .tip-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: #f5a623;
    margin-bottom: 12px;
}

.testimonial-stars i {
    margin-right: 2px;
}

.testimonial-card > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.testimonial-author strong {
    display: block;
    color: var(--accent);
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* About Section */
.about-trip-section {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-trip-section p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

.about-trip-stats {
    display: flex;
    gap: 40px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

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

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Sidebar: Booking Form */
.trip-sidebar {
    position: relative;
}

.booking-form-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
}

.sticky-card {
    position: sticky;
    top: 100px;
}

.booking-form-card h3 {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 24px;
}

.trip-booking-form .form-group {
    margin-bottom: 18px;
}

.trip-booking-form .form-group:last-of-type {
    margin-bottom: 20px;
}

.booking-confirm h4 {
    margin-bottom: 8px;
}

.booking-confirm i {
    font-size: 3rem;
    color: #2e7d32;
    margin-bottom: 12px;
}

/* Gallery Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox.active {
    display: flex;
}

#lightboxImage {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ===== Trip Detail Page - Tabs Style ===== */
.trip-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.trip-hero-slides {
    position: absolute;
    inset: 0;
}

.trip-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.trip-hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.trip-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,58,50,0.85) 0%, rgba(45,90,74,0.75) 100%);
}

.trip-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 24px;
    text-align: center;
    color: var(--white);
}

.trip-code {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.trip-hero-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.trip-hero-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trip-hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.view-gallery-btn {
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 3;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.8);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all var(--transition);
}

.view-gallery-btn:hover {
    background: rgba(255,255,255,0.3);
}

/* Trip Info Bar */
.trip-info-bar {
    background: var(--white);
    border-bottom: 1px solid #e5e7eb;
    padding: 32px 0;
    margin-top: -1px;
}

.trip-info-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    align-items: center;
}

.trip-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f9fafb;
    border-radius: var(--radius);
    transition: all var(--transition);
    border: 2px solid transparent;
}

.trip-info-item:hover {
    background: #f3f4f6;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.trip-info-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(184, 115, 51, 0.3);
}

.trip-info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trip-info-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trip-info-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
}

@media (max-width: 768px) {
    .trip-info-bar {
        padding: 24px 0;
    }
    
    .trip-info-items {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .trip-info-item {
        padding: 16px;
    }
    
    .trip-info-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
    
    .trip-info-value {
        font-size: 1rem;
    }
}
    transform: translateY(-2px);
}

.trip-hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.trip-hero-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all var(--transition);
}

.trip-hero-dots span.active {
    background: white;
    transform: scale(1.2);
    width: 28px;
    border-radius: 5px;
}

/* Tabs Navigation */
.tabs-container {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 68px;
    z-index: 50;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(0);
    opacity: 1;
}

.tabs-container.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.tabs-nav {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tabs-nav::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 20px 28px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: color var(--transition);
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Tab Content */
.tab-content {
    display: none;
    padding: 48px 0;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

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

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.section-description p {
    margin-bottom: 16px;
}

/* Accordion for Trip Outline */
.accordion {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 16px;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background var(--transition);
}

.accordion-header:hover {
    background: rgba(184, 115, 51, 0.08);
}

.accordion-day {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
}

.accordion-time {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.accordion-icon {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform var(--transition);
}

.accordion.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion.active .accordion-content {
    max-height: 500px;
}

.accordion-content-inner {
    padding: 0 24px 20px 24px;
    padding-inline-start: calc(24px + 100px + 20px);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Lists for Includes/Excludes */
.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.6;
}

.info-list li::before {
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.includes-list li::before {
    content: "✓";
    color: #2e7d32;
}

.excludes-list li::before {
    content: "✖";
    color: #c62828;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

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

/* FAQ Accordion */
.faq-accordion {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 16px;
}

.faq-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background var(--transition);
}

.faq-header:hover {
    background: rgba(184, 115, 51, 0.08);
}

.faq-question {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent);
}

.faq-icon {
    color: var(--primary);
    transition: transform var(--transition);
}

.faq-accordion.active .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-accordion.active .faq-content {
    max-height: 500px;
}

.faq-answer {
    padding: 0 24px 20px 24px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== Additional Services ===== */
.extras-container {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
}

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

.extra-service {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border: 2px solid #e8e6e3;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    transition: all var(--transition);
    gap: 16px;
}

body.rtl .extra-service {
    flex-direction: row;
}

body.ltr .extra-service {
    flex-direction: row;
}

.extra-service:hover {
    border-color: var(--primary);
    background: rgba(184, 115, 51, 0.05);
}

.extra-service input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

body.rtl .extra-service input[type="checkbox"] {
    margin-left: 0;
    margin-right: 0;
}

body.ltr .extra-service input[type="checkbox"] {
    margin-left: 0;
    margin-right: 0;
}

.extra-service-label {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.extra-service-name {
    font-weight: 500;
    color: var(--accent);
}

.extra-service-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.extras-total {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid #e8e6e3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.extras-total-label {
    font-weight: 600;
    color: var(--accent);
    font-size: 1.1rem;
}

.extras-total-value {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.5rem;
}

/* ===== Reviews Main Section ===== */
.reviews-main-section {
    background: var(--white);
    padding: 64px 0;
    margin-top: 48px;
}

.reviews-main-section .section-title {
    text-align: center;
    margin-bottom: 48px;
}

/* ===== Reviews Section ===== */
.reviews-section {
    background: var(--bg-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
    margin-bottom: 32px;
}

.review-form {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius);
    margin-bottom: 32px;
}

.review-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.review-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-form-group.full-width {
    grid-column: 1 / -1;
}

.review-form-group label {
    font-weight: 600;
    color: var(--accent);
    font-size: 0.95rem;
}

.review-form-group input,
.review-form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e8e6e3;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition);
}

.review-form-group input:focus,
.review-form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.review-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.rating-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.rating-options {
    display: flex;
    gap: 8px;
}

.rating-options {
    display: flex;
    gap: 4px;
}

body.rtl .rating-options {
    flex-direction: row-reverse;
}

body.ltr .rating-options {
    flex-direction: row;
}

.rating-options input[type="radio"] {
    display: none;
}

.rating-options label {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: color var(--transition);
    user-select: none;
}

/* RTL: When checked, color this and all previous (visually right) stars */
body.rtl .rating-options input[type="radio"]:checked ~ label {
    color: #f5a623;
}

/* LTR: When checked, color this and all previous (visually left) stars */
body.ltr .rating-options input[type="radio"]:checked + label,
body.ltr .rating-options input[type="radio"]:checked ~ label {
    color: #f5a623;
}

/* Hover effect */
body.rtl .rating-options label:hover,
body.rtl .rating-options label:hover ~ label {
    color: #f5a623;
}

body.ltr .rating-options label:hover,
body.ltr .rating-options label:hover ~ label {
    color: #f5a623;
}

.reviews-list {
    margin-top: 32px;
}

.review-item {
    padding: 24px;
    border-bottom: 1px solid #eee;
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

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

.review-author .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.review-author strong {
    display: block;
    color: var(--accent);
    font-size: 1rem;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-stars {
    color: #f5a623;
    font-size: 1.1rem;
}

.review-text {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.no-reviews {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-muted);
}

/* ===== Booking Section ===== */
.booking-main-section {
    background: var(--white);
    padding: 64px 0;
    margin-top: 48px;
}

.booking-main-section .section-title {
    text-align: center;
    margin-bottom: 16px;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.booking-form-container {
    min-width: 0;
}

.booking-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.booking-form textarea {
    padding: 14px 18px;
    border: 2px solid #e8e6e3;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition);
    resize: vertical;
}

.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.booking-summary {
    position: sticky;
    top: 100px;
}

.booking-summary-card {
    background: var(--bg-light);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.booking-summary-card h3 {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e8e6e3;
    color: var(--text);
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-item strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 0;
    margin-top: 20px;
    border-top: 2px solid var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.summary-total strong {
    color: var(--primary);
    font-size: 1.5rem;
}

/* ===== Category Page - Hero ===== */
.category-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    text-align: center;
}

.category-hero-overlay {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1539650116574-8efeb43e2750?w=1600') center/cover;
    opacity: 0.2;
}

.category-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.category-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.category-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* ===== Category Filters ===== */
.category-filters {
    background: var(--white);
    padding: 24px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 80px;
    z-index: 50;
}

.filters-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.category-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 10px 20px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition);
}

.category-tab:hover {
    background: rgba(184, 115, 51, 0.1);
    color: var(--primary);
}

.category-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

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

.sort-wrapper label {
    font-weight: 600;
    color: var(--accent);
    font-size: 0.95rem;
}

.sort-select {
    padding: 10px 16px;
    border: 2px solid #e8e6e3;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    cursor: pointer;
    transition: border-color var(--transition);
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary);
}

/* ===== Category Main ===== */
.category-main {
    padding: 48px 0;
    background: var(--bg-light);
    min-height: 60vh;
}

.trips-results-info {
    margin-bottom: 32px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.trips-grid .trip-card {
    flex: none;
    width: 100%;
}

.no-results {
    text-align: center;
    padding: 80px 24px;
    color: var(--text-muted);
}

.no-results i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--primary);
    opacity: 0.5;
}

.no-results p {
    font-size: 1.2rem;
}

/* ===== Contact Page - Hero ===== */
.contact-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    text-align: center;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1552832230-c0197dd311b5?w=1600') center/cover;
    opacity: 0.2;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form .form-group label {
    display: block;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e6e3;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-success {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: var(--radius-sm);
    text-align: center;
    margin-top: 24px;
}

.contact-success i {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

/* ===== Contact Info ===== */
.contact-info-container {
    position: sticky;
    top: 100px;
}

.contact-info-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 32px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e6e3;
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-content h3 {
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-info-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.contact-social {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-social h3 {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.contact-social .social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.contact-social .social-link {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    transition: all var(--transition);
    text-decoration: none;
}

.contact-social .social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
}

/* ===== Gallery Page - Hero ===== */
.gallery-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    text-align: center;
}

.gallery-hero-overlay {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=1600') center/cover;
    opacity: 0.2;
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.gallery-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.gallery-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* ===== Gallery Filters ===== */
.gallery-filters {
    background: var(--white);
    padding: 24px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 80px;
    z-index: 50;
}

.gallery-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    padding: 10px 20px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition);
}

.gallery-filter-btn:hover {
    background: rgba(184, 115, 51, 0.1);
    color: var(--primary);
}

.gallery-filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ===== Gallery Main ===== */
.gallery-main {
    padding: 48px 0;
    background: var(--bg-light);
    min-height: 60vh;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: all var(--transition);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: var(--white);
}

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

.gallery-item-overlay i {
    font-size: 1.5rem;
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

body.rtl .lightbox-prev {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

body.rtl .lightbox-next {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

body.ltr .lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

body.ltr .lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* ===== Services Page - Hero ===== */
.services-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    text-align: center;
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1552832230-c0197dd311b5?w=1600') center/cover;
    opacity: 0.2;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.services-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.services-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* ===== Services Sections ===== */
.services-section {
    padding: 80px 0;
    background: var(--white);
}

.services-section-alt {
    background: var(--white);
}

.services-header {
    text-align: center;
    margin-bottom: 48px;
}

.services-header .section-description {
    max-width: 700px;
    margin: 16px auto 0;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== About Page - Hero ===== */
.about-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    text-align: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1539650116574-8efeb43e2750?w=1600') center/cover;
    opacity: 0.2;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* ===== Mission & Vision ===== */
.about-mission-vision {
    padding: 80px 0;
    background: var(--white);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.mission-vision-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all var(--transition);
}

.mission-vision-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.mission-vision-card .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.mission-vision-card h2 {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.mission-vision-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ===== Statistics ===== */
.about-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
}

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

.stat-card {
    text-align: center;
    padding: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    transition: all var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.15);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    opacity: 0.9;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* ===== Values ===== */
.about-values {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.value-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.8rem;
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== Why Choose Us ===== */
.about-why {
    padding: 80px 0;
    background: var(--white);
}

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

.why-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
}

.why-card h3 {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.why-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== Team ===== */
.about-team {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.team-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.team-card h3 {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-desc {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== Similar Trips Section ===== */
.similar-trips-section {
    background: var(--bg-light);
    padding: 64px 0;
    margin-top: 48px;
}

.similar-trips-section .section-title {
    text-align: center;
    margin-bottom: 48px;
}

.similar-trips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.similar-trip-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    cursor: pointer;
}

.similar-trip-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.similar-trip-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.similar-trip-info {
    padding: 20px;
}

.similar-trip-info h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 8px;
}

.similar-trip-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.similar-trip-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap var(--transition);
}

.similar-trip-link:hover {
    gap: 12px;
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition);
    text-decoration: none;
    animation: pulse 2s infinite;
}

body.rtl .whatsapp-float {
    left: auto;
    right: 24px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background: #20ba5a;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
        bottom: 20px;
        left: 20px;
    }

    body.rtl .whatsapp-float {
        right: 20px;
        left: auto;
    }
}

/* ===== Offer Popup ===== */
.offer-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.offer-popup.show {
    display: flex;
}

.offer-popup-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

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

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

.offer-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition);
}

body.rtl .offer-popup-close {
    right: auto;
    left: 16px;
}

.offer-popup-close:hover {
    background: #f5f5f5;
    color: var(--accent);
}

.offer-popup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    animation: bounce 1s ease infinite;
}

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

.offer-popup-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
}

.offer-popup-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.offer-popup-btn {
    padding: 16px 32px;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .offer-popup-content {
        padding: 32px 24px;
    }

    .offer-popup-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .offer-popup-content h3 {
        font-size: 1.5rem;
    }

    .offer-popup-content p {
        font-size: 1rem;
    }
}

/* ===== Inquiry Modal ===== */
.inquiry-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.inquiry-modal.show {
    display: flex;
}

.inquiry-modal-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 550px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.inquiry-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition);
}

body.rtl .inquiry-modal-close {
    right: auto;
    left: 16px;
}

.inquiry-modal-close:hover {
    background: #f5f5f5;
    color: var(--accent);
}

.inquiry-modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.inquiry-modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.inquiry-modal-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.inquiry-form .form-group {
    margin-bottom: 24px;
}

.inquiry-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.inquiry-form .required {
    color: #e74c3c;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition);
    background: var(--white);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.1);
}

.inquiry-form textarea {
    resize: vertical;
    min-height: 120px;
}

.inquiry-form .btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    margin-top: 8px;
}

.inquiry-confirm {
    text-align: center;
    padding: 40px 20px;
}

.inquiry-confirm i {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 24px;
    display: block;
}

.inquiry-confirm h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
}

.inquiry-confirm p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .inquiry-modal-content {
        padding: 32px 24px;
        max-width: 100%;
    }

    .inquiry-modal-header h2 {
        font-size: 1.6rem;
    }

    .inquiry-modal-header p {
        font-size: 1rem;
    }

    .inquiry-confirm i {
        font-size: 3rem;
    }

    .inquiry-confirm h3 {
        font-size: 1.5rem;
    }
}

/* ===== الاستجابة ===== */
@media (max-width: 1024px) {
    .trip-header-grid {
        grid-template-columns: 1fr;
        margin-top: -60px;
    }

    .trip-info-block {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .trip-detail-layout {
        grid-template-columns: 1fr;
    }

    .trip-sidebar {
        order: -1;
    }

    .sticky-card {
        position: static;
    }
}

@media (max-width: 992px) {
    .main-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .nav { display: none; }

    .header-actions .btn { display: none; }

    .mobile-menu-btn { display: block; }

    .hero h1 { font-size: 1.75rem; }
    .hero p { font-size: 1rem; }

    .booking-form .form-grid {
        grid-template-columns: 1fr;
    }

    .booking-section { padding: 24px; }

    .trips-section {
        padding: 28px 20px;
        border-radius: 16px;
    }
    
    .trips-section::before {
        height: 4px;
        border-radius: 16px 16px 0 0;
    }
    
    .trips-section::after {
        border-radius: 16px;
    }

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

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

    .trip-card {
        flex: 0 0 280px;
    }

    .trip-hero h1 {
        font-size: 1.75rem;
    }

    .trip-hero-info {
        gap: 16px;
    }

    .trip-header-grid {
        margin-top: -40px;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }

    .trip-info-block {
        grid-template-columns: 1fr;
    }

    .accordion-content p {
        padding-inline-start: 24px;
    }

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

    .about-trip-stats {
        flex-direction: column;
        gap: 20px;
    }

    .trip-hero {
        min-height: 400px;
    }

    .trip-hero h1 {
        font-size: 1.75rem;
    }

    .trip-hero-info {
        font-size: 0.95rem;
        gap: 16px;
    }

    .trip-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .trip-hero-actions .btn {
        width: 100%;
    }

    /* Simple Hero Mobile */
    .trip-hero-simple {
        min-height: 400px;
    }

    .trip-hero-simple h1 {
        font-size: 2rem;
        margin-bottom: 24px;
    }

    .trip-hero-simple .btn-large {
        padding: 14px 32px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
    }

    .view-gallery-btn {
        position: static;
        margin-top: 16px;
    }

    .tabs-nav {
        padding: 8px 10px;
        display: flex;
        gap: 8px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .tabs-nav::-webkit-scrollbar {
        display: block;
        height: 4px;
    }

    .tabs-nav::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 999px;
    }

    .tab-btn {
        flex: 0 0 auto;
        scroll-snap-align: start;
        padding: 10px 12px;
        font-size: 0.78rem;
        text-align: center;
        white-space: nowrap;
        line-height: 1.2;
        border: 1px solid var(--border);
        border-radius: 999px;
    }

    .tab-btn.active {
        border-color: var(--primary);
    }

    .tab-content {
        padding: 32px 0;
    }

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

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

    .accordion-content-inner {
        padding-left: 24px;
    }

    .tabs-container {
        top: 52px;
    }

    .review-form-grid {
        grid-template-columns: 1fr;
    }

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

    .extra-service {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .extra-service-label {
        width: 100%;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-summary {
        position: static;
        margin-top: 32px;
    }

    .booking-form .form-grid {
        grid-template-columns: 1fr;
    }

    .category-hero h1 {
        font-size: 1.75rem;
    }

    .category-hero p {
        font-size: 1rem;
    }

    .filters-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .category-tabs {
        justify-content: center;
    }

    .sort-wrapper {
        justify-content: center;
    }

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

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

    .about-hero p {
        font-size: 1.1rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid,
    .why-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

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

    .services-hero p {
        font-size: 1.1rem;
    }

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

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

    .gallery-hero p {
        font-size: 1.1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 16px;
    }

    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

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

    .contact-hero p {
        font-size: 1.1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-container {
        position: static;
        margin-top: 32px;
    }

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

    .footer-section {
        width: 100%;
    }

    .footer-ratings {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .rating-stars {
        font-size: 1.3rem;
        gap: 6px;
        margin-bottom: 14px;
    }

    .rating-text {
        font-size: 1.5rem;
        gap: 4px;
    }

    .rating-value {
        font-size: 2rem;
    }

    .rating-total {
        font-size: 1.2rem;
    }

    .rating-count {
        font-size: 0.85rem;
    }
}
