/* ==========================================================================
   YOUR HURGHADA EXCURSION - MODERN COMPONENTS (GETYOURGUIDE / VIATOR STYLE)
   Domain: yourhurghadaexcursion.com
   ========================================================================== */

/* 1. TOP UTILITY BAR (CLEAN & SUBTLE) */
.top-bar {
    background: #162447;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.top-bar-message {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.selector-pill {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.1);
    padding: 3px 8px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.selector-pill select {
    color: #ffffff;
    background: transparent;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
}

.selector-pill select option {
    background: #0f294d;
    color: #ffffff;
}

.top-phone-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #25d366;
    font-weight: 700;
}

/* 2. MAIN HEADER & NAVBAR */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-fast);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 20px;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-icon-wrap {
    width: 38px;
    height: 38px;
    background: var(--brand-navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-navy);
    line-height: 1.15;
    letter-spacing: -0.3px;
}

.brand-title span {
    color: var(--brand-coral);
}

.brand-sub {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.4px;
}

/* Navigation Links */
.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-heading);
    padding: 6px 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--brand-blue);
    border-radius: var(--radius-full);
    transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Header Action Icons & CTAs */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-heading);
    position: relative;
    transition: all var(--transition-fast);
}

.header-icon-btn:hover {
    background: #eef2f6;
    color: var(--brand-blue);
}

.badge-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--brand-coral);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    font-size: 1.4rem;
    color: var(--brand-navy);
    padding: 6px;
}

/* 3. HERO SECTION WITH GETYOURGUIDE FLOATING SEARCH BAR */
.hero-section {
    position: relative;
    padding: 90px 0 100px;
    background: #0f294d;
    overflow: hidden;
}

.hero-bg-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 41, 77, 0.65) 0%, rgba(15, 41, 77, 0.88) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.hero-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 700;
    color: #fef08a;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.8px;
}

.hero-title span {
    color: #38bdf8;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 36px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* Floating Search Capsule */
.floating-search-bar {
    background: #ffffff;
    border-radius: var(--radius-full);
    padding: 8px 10px 8px 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    display: grid;
    grid-template-columns: 2fr 1.4fr 1.2fr auto;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

body.rtl .floating-search-bar {
    padding: 8px 24px 8px 10px;
}

.search-col {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-right: 1px solid var(--border-color);
}

body.rtl .search-col {
    border-right: none;
    border-left: 1px solid var(--border-color);
}

.search-col:last-of-type {
    border: none;
}

.search-col svg {
    color: var(--brand-blue);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.search-col input, .search-col select {
    width: 100%;
    color: var(--text-heading);
    font-size: 0.92rem;
    font-weight: 600;
}

.search-col input::placeholder {
    color: var(--text-muted);
    font-weight: 500;
}

.floating-search-btn {
    background: var(--brand-coral);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 10px rgba(255, 90, 54, 0.35);
}

.floating-search-btn:hover {
    background: var(--brand-coral-hover);
    transform: translateY(-1px);
}

/* Trust Bar Badges */
.hero-trust-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.95);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.trust-item svg {
    color: #22c55e;
}

/* 4. CATEGORY PILLS BAR */
.category-filter-section {
    padding: 20px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 72px;
    z-index: 900;
}

.category-pills-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-pills-wrap::-webkit-scrollbar {
    display: none;
}

.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: var(--radius-full);
    background: var(--bg-subtle);
    color: var(--text-heading);
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.cat-pill:hover {
    background: #ffffff;
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

.cat-pill.active {
    background: var(--brand-navy);
    border-color: var(--brand-navy);
    color: #ffffff;
}

/* 5. TOOLBAR & FILTER CONTROLS */
.toolbar-section {
    padding: 30px 0 20px;
}

.toolbar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #ffffff;
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.toolbar-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.toolbar-search {
    position: relative;
    min-width: 260px;
}

.toolbar-search input {
    width: 100%;
    padding: 10px 14px 10px 36px;
    background: var(--bg-subtle);
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-heading);
}

.toolbar-search svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

body.rtl .toolbar-search input {
    padding: 10px 36px 10px 14px;
}

body.rtl .toolbar-search svg {
    left: auto;
    right: 12px;
}

.filter-select {
    padding: 9px 16px;
    background: var(--bg-subtle);
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-heading);
    cursor: pointer;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.results-count {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.view-toggles {
    display: flex;
    background: var(--bg-subtle);
    border-radius: var(--radius-sm);
    padding: 2px;
}

.view-btn {
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 1rem;
}

.view-btn.active {
    background: #ffffff;
    color: var(--brand-blue);
    box-shadow: var(--shadow-subtle);
}

/* 6. GETYOURGUIDE STYLE TOUR CARDS */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

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

.tour-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: #cbd5e1;
}

.card-media {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.tour-card:hover .card-media img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

body.rtl .card-badge {
    left: auto;
    right: 12px;
}

.card-wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    z-index: 2;
    transition: all var(--transition-fast);
}

body.rtl .card-wishlist-btn {
    right: auto;
    left: 12px;
}

.card-wishlist-btn:hover, .card-wishlist-btn.active {
    background: #ffffff;
    color: #ef4444;
}

.card-bottom-tags {
    position: absolute;
    bottom: 10px;
    left: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.card-tag-item {
    background: rgba(15, 41, 77, 0.78);
    backdrop-filter: blur(4px);
    color: #ffffff;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.card-body {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-category-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 6px;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--brand-navy);
    line-height: 1.35;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-title a {
    color: inherit;
}

.card-title a:hover {
    color: var(--brand-blue);
}

.card-rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.86rem;
    margin-bottom: 12px;
}

.stars-wrap {
    color: var(--brand-gold);
    display: flex;
    align-items: center;
    gap: 2px;
    font-weight: 800;
}

.reviews-meta {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.card-specs-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-subtle);
}

.card-spec {
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-spec svg {
    color: var(--brand-emerald);
}

.card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: auto;
    gap: 12px;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.final-price {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--brand-navy);
    line-height: 1.1;
}

.price-per {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* 7. SPOTLIGHT & CURATED SECTIONS */
.spotlight-section {
    padding: 80px 0;
    background: var(--bg-subtle);
}

.spotlight-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 44px;
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow-card);
    margin-bottom: 40px;
}

.spotlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: #eef4ff;
    color: var(--brand-blue);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.spotlight-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-navy);
    line-height: 1.25;
    margin-bottom: 14px;
}

.spotlight-desc {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-body);
    margin-bottom: 24px;
}

.spotlight-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-heading);
    font-weight: 600;
}

.feature-check svg {
    color: var(--brand-emerald);
    flex-shrink: 0;
}

.spotlight-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.spotlight-media img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

/* VIP Private Boat Banner */
.private-charter-banner {
    background: linear-gradient(135deg, #0f294d 0%, #1e3e62 100%);
    border-radius: var(--radius-xl);
    padding: 50px;
    color: #ffffff;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.charter-content {
    max-width: 720px;
    margin: 0 auto;
}

.charter-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.charter-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 26px;
}

/* 8. WHY CHOOSE US */
.why-us-section {
    padding: 80px 0;
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--bg-subtle);
    padding: 30px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.why-card:hover {
    background: #ffffff;
    box-shadow: var(--shadow-card);
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: #ffffff;
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
    box-shadow: var(--shadow-subtle);
}

.why-card-title {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 8px;
}

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

/* 9. REVIEWS SECTION */
.reviews-section {
    padding: 80px 0;
    background: var(--bg-subtle);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: #ffffff;
    padding: 26px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-navy);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-navy);
}

.reviewer-origin {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.review-stars {
    color: var(--brand-gold);
    margin-bottom: 10px;
    font-size: 0.88rem;
}

.review-text {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
}

.review-tour-tag {
    font-size: 0.78rem;
    color: var(--brand-blue);
    font-weight: 700;
    border-top: 1px solid var(--border-subtle);
    padding-top: 10px;
}

/* 10. FAQ SECTION */
.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-subtle);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item.active {
    background: #ffffff;
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-subtle);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--brand-navy);
    cursor: pointer;
    text-align: left;
}

body.rtl .faq-question {
    text-align: right;
}

.faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
    font-size: 0.85rem;
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--brand-blue);
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.65;
}

.faq-item.active .faq-answer {
    max-height: 360px;
    padding: 0 20px 18px;
}

/* 11. DEDICATED TOUR DETAILS PAGE */
.tour-detail-page {
    padding: 30px 0 80px;
}

.tour-detail-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 36px;
    align-items: start;
}

.detail-gallery-main {
    width: 100%;
    height: 440px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 14px;
}

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

.detail-thumbs-wrap {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.detail-thumb {
    width: 90px;
    height: 65px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
}

.detail-thumb.active, .detail-thumb:hover {
    border-color: var(--brand-blue);
}

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

/* Modal Tabs */
.modal-tabs {
    display: flex;
    gap: 8px;
    border-bottom: 2px solid var(--border-color);
    margin: 24px 0 20px;
    overflow-x: auto;
}

.modal-tab-btn {
    padding: 10px 16px;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    white-space: nowrap;
}

.modal-tab-btn.active {
    color: var(--brand-blue);
    border-bottom-color: var(--brand-blue);
}

.modal-tab-pane {
    display: none;
    animation: fadeIn 0.25s ease;
}

.modal-tab-pane.active {
    display: block;
}

/* Timeline */
.timeline-list {
    position: relative;
    padding-left: 24px;
}

body.rtl .timeline-list {
    padding-left: 0;
    padding-right: 24px;
}

.timeline-list::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: #cbd5e1;
}

body.rtl .timeline-list::before {
    left: auto;
    right: 6px;
}

.timeline-item {
    position: relative;
    margin-bottom: 18px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -24px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--brand-blue);
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 1px var(--brand-blue);
}

body.rtl .timeline-item::after {
    left: auto;
    right: -24px;
}

.timeline-time {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--brand-blue);
    text-transform: uppercase;
}

.timeline-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin: 2px 0 4px;
}

.timeline-desc {
    font-size: 0.88rem;
    color: var(--text-body);
}

/* Checklist */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-body);
}

.check-item.included svg {
    color: var(--brand-emerald);
    flex-shrink: 0;
    margin-top: 3px;
}

.check-item.excluded svg {
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Sticky Booking Card (Airbnb / GetYourGuide Style) */
.modal-booking-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 24px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 90px;
}

.booking-header-price {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 14px;
}

.booking-form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.booking-form-row label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-heading);
}

.booking-input, .booking-select {
    width: 100%;
    padding: 11px 14px;
    background: var(--bg-subtle);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-heading);
    font-weight: 600;
}

.booking-input:focus, .booking-select:focus {
    background: #ffffff;
    border-color: var(--brand-blue);
}

.counters-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.counter-box {
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.counter-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--text-heading);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.counter-btn:hover {
    background: var(--brand-blue);
    color: #ffffff;
    border-color: var(--brand-blue);
}

.counter-val {
    font-weight: 800;
    font-size: 1rem;
}

.calc-total-box {
    background: #eef4ff;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.calc-total-label {
    font-weight: 700;
    color: var(--brand-navy);
    font-size: 0.88rem;
}

.calc-total-val {
    font-size: 1.55rem;
    font-weight: 900;
    color: var(--brand-blue);
}

/* 12. DRAWER, TOAST & FLOATING WHATSAPP */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 41, 77, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2500;
    display: none;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.drawer-overlay.active {
    display: block;
    opacity: 1;
}

.drawer-panel {
    position: fixed;
    top: 0;
    right: -440px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #ffffff;
    box-shadow: var(--shadow-floating);
    z-index: 2600;
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body.rtl .drawer-panel {
    right: auto;
    left: -440px;
    transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-panel.active {
    right: 0;
}

body.rtl .drawer-panel.active {
    left: 0;
    right: auto;
}

.drawer-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand-navy);
}

.drawer-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.drawer-item {
    display: flex;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-subtle);
    align-items: center;
}

.drawer-item-img {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.drawer-item-info {
    flex: 1;
}

.drawer-item-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-navy);
    line-height: 1.3;
    margin-bottom: 4px;
}

.drawer-item-price {
    font-weight: 800;
    color: var(--brand-coral);
    font-size: 0.92rem;
}

.drawer-item-remove {
    color: var(--text-light);
    cursor: pointer;
    padding: 4px;
}

.drawer-item-remove:hover {
    color: #ef4444;
}

.drawer-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-subtle);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.drawer-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--brand-navy);
}

.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

body.rtl .floating-whatsapp {
    right: auto;
    left: 24px;
    align-items: flex-start;
}

.wa-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition-fast);
}

.wa-btn:hover {
    transform: scale(1.08);
}

.live-toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1400;
    background: #0f294d;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 320px;
    font-size: 0.82rem;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.rtl .live-toast {
    left: auto;
    right: 24px;
}

.live-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--brand-blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* 13. SITE FOOTER */
.site-footer {
    background: #0f294d;
    color: #ffffff;
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr 1.4fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 16px 0 20px;
}

.footer-heading {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: #38bdf8;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    margin-bottom: 14px;
}

.footer-contact-item svg {
    color: #38bdf8;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
}
