/* ==========================================================================
   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: 82px;
    gap: 20px;
}

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

.site-header-logo {
    height: 70px;
    max-height: 70px;
    width: auto;
    max-width: 280px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
    transition: transform var(--transition-fast);
}

.site-footer-logo {
    height: 95px;
    max-height: 95px;
    width: auto;
    max-width: 300px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 4px 14px rgba(0,0,0,0.4));
    transition: transform var(--transition-fast);
}

.brand-logo:hover .site-header-logo,
.brand-logo:hover .site-footer-logo {
    transform: scale(1.03);
}

.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;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.tour-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
    gap: 36px;
    align-items: start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.tour-detail-main,
.tour-booking-column {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

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

/* Quick Highlights Row */
.quick-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 20px 0 24px;
    padding: 14px;
    background: var(--bg-subtle);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.highlight-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.stat-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--brand-navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Mobile Sticky Bottom Booking Bar */
.mobile-sticky-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    padding: 10px 16px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-sizing: border-box;
}

.sticky-bar-price {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

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

.sticky-price-val {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--brand-navy);
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.sticky-price-per {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--text-muted);
}

.sticky-bar-btn {
    flex-shrink: 0;
    padding: 11px 20px !important;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    border-radius: var(--radius-full) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    box-shadow: 0 4px 14px rgba(26, 115, 232, 0.35) !important;
}

/* 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;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

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

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

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

.booking-input, .booking-select {
    width: 100%;
    height: 48px;
    min-height: 48px;
    padding: 10px 14px;
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border-color);
    font-size: 16px; /* Prevents auto-zoom on iOS */
    color: var(--text-heading);
    font-weight: 600;
    display: block;
    box-sizing: border-box;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.booking-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7a8d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

body.rtl .booking-select {
    background-position: left 14px center;
    padding-right: 14px;
    padding-left: 38px;
}

.booking-input:focus, .booking-select:focus {
    background: #ffffff;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

input[type="date"].booking-input {
    min-height: 48px;
    font-family: inherit;
    color: var(--text-heading);
    cursor: pointer;
}

body.rtl input[type="date"].booking-input {
    text-align: right;
}

/* Luxury Guest Counter Picker */
.guest-counters-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--bg-subtle);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    box-sizing: border-box;
    width: 100%;
}

.guest-counter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 4px 0;
    width: 100%;
}

.guest-counter-row:first-child {
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 10px;
}

.guest-counter-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.guest-label-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.3;
}

.guest-label-sub {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--text-muted);
}

.counter-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    padding: 3px 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.counter-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    border-radius: 50%;
    background: var(--bg-subtle);
    color: var(--text-heading);
    font-weight: 800;
    font-size: 1.15rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: all 0.15s ease;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.counter-btn:hover, .counter-btn:active {
    background: var(--brand-blue);
    color: #ffffff;
    border-color: var(--brand-blue);
    transform: scale(1.06);
}

.counter-val {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--brand-navy);
    min-width: 22px;
    text-align: center;
}

/* Related Tours Carousel */
.related-tours-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    width: 100%;
    box-sizing: border-box;
}

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

.carousel-nav-arrows {
    display: flex;
    align-items: center;
    gap: 8px;
}

.carousel-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    color: var(--brand-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-subtle);
    touch-action: manipulation;
}

.carousel-arrow-btn:hover, .carousel-arrow-btn:active {
    background: var(--brand-blue);
    color: #ffffff;
    border-color: var(--brand-blue);
    transform: scale(1.08);
}

.related-tours-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.related-tours-carousel,
.related-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    margin-bottom: 0;
}

.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);
    flex-shrink: 0;
}

.booking-submit-btn {
    width: 100%;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #e8513d 0%, #c7382a 100%);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    border: none;
    box-shadow: 0 4px 14px rgba(232, 81, 61, 0.4);
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
    text-align: center;
    white-space: nowrap;
}

.booking-submit-btn:hover, .booking-submit-btn:active {
    background: linear-gradient(135deg, #d4402d 0%, #b32e21 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(232, 81, 61, 0.5);
}

.booking-submit-btn svg {
    flex-shrink: 0;
}

/* 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: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #ffffff;
    box-shadow: var(--shadow-floating);
    z-index: 2600;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}

body.rtl .drawer-panel {
    right: auto;
    left: 0;
    transform: translateX(-100%);
}

.drawer-panel.active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

body.rtl .drawer-panel.active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: 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;
}

.floating-social-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
    color: #ffffff;
}

.floating-social-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
    color: #ffffff;
}

.floating-social-btn.fb { background: #1877F2; }
.floating-social-btn.ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.floating-social-btn.tt { background: #000000; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); }
.floating-social-btn.yt { background: #FF0000; }

.wa-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.wa-btn svg {
    width: 24px;
    height: 24px;
}

.wa-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}

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

/* Responsive Grid Helpers */
.contact-card-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 36px;
}

.charter-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.charter-form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
