*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
body{font-family:var(--font);color:var(--text);background:var(--bg);line-height:1.7;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer}
.container{max-width:1200px;margin:0 auto;padding:0 20px}
.site-header{position:fixed;top:0;left:0;right:0;background:rgba(255,255,255,.95);backdrop-filter:blur(10px);z-index:1000;transition:all .3s;border-bottom:1px solid transparent}
.site-header.scrolled{background:#fff;box-shadow:0 2px 20px rgba(0,0,0,.06);border-bottom-color:#eee}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;gap:20px}
.site-logo img{max-height:50px;width:auto}
.site-logo .logo-text{font-size:22px;font-weight:800;color:var(--secondary);letter-spacing:.5px}
.main-nav{display:flex;gap:28px;align-items:center}
.nav-link{font-size:15px;font-weight:600;color:var(--text);position:relative;padding:4px 0;transition:color .2s}
.nav-link:hover,.nav-link.active{color:var(--primary)}
.nav-link.active::after{content:'';position:absolute;bottom:-4px;left:0;right:0;height:2px;background:var(--primary);border-radius:2px}
.header-actions{display:flex;align-items:center;gap:14px}
.lang-dropdown{position:relative}
.lang-btn{display:flex;align-items:center;gap:6px;padding:8px 14px;border-radius:8px;background:#f5f7fa;border:none;font-size:14px;font-weight:600;color:var(--text)}
.lang-btn:hover{background:#eef1f6}
.lang-btn .arrow{font-size:10px}
.lang-menu{position:absolute;top:calc(100% + 8px);right:0;background:#fff;border-radius:10px;box-shadow:0 8px 30px rgba(0,0,0,.12);min-width:160px;padding:6px;opacity:0;visibility:hidden;transform:translateY(-5px);transition:all .2s}
.lang-menu.open{opacity:1;visibility:visible;transform:translateY(0)}
.lang-item{display:flex;align-items:center;gap:10px;padding:9px 14px;border-radius:6px;font-size:14px;transition:background .2s}
.lang-item:hover{background:#f5f7fa}
.lang-item.active{background:var(--primary);color:#fff}
.btn-book{display:inline-block;padding:11px 22px;background:var(--primary);color:#fff;border-radius:var(--btn-radius);font-weight:700;font-size:14px;transition:all .2s;box-shadow:0 4px 15px rgba(201,169,97,.3)}
.btn-book:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(201,169,97,.4)}
.mobile-toggle{display:none;background:transparent;border:none;font-size:24px;color:var(--text)}
.hero{position:relative;min-height:100vh;display:flex;align-items:center;justify-content:center;text-align:center;color:#fff;overflow:hidden;padding:120px 20px 80px;background:linear-gradient(135deg,#1a1f2e,#2d3348)}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(0,0,0,.65),rgba(0,0,0,.35));z-index:1}
.hero-content{position:relative;z-index:2;max-width:800px}
.hero h1{font-size:clamp(32px,6vw,64px);font-weight:800;line-height:1.2;margin-bottom:20px;text-shadow:0 4px 30px rgba(0,0,0,.4)}
.hero p{font-size:clamp(16px,2.2vw,22px);margin-bottom:36px;opacity:.95}
.btn-hero{display:inline-block;padding:16px 44px;background:var(--primary);color:#fff;border-radius:var(--btn-radius);font-size:16px;font-weight:700;transition:all .3s;box-shadow:0 10px 40px rgba(201,169,97,.5)}
.btn-hero:hover{transform:translateY(-3px);box-shadow:0 15px 50px rgba(201,169,97,.6)}
.section{padding:90px 0}
.section-gray{background:#f8f9fb}
.section-head{text-align:center;margin-bottom:50px}
.section-title{font-size:clamp(26px,4vw,42px);font-weight:800;margin-bottom:12px;color:var(--secondary)}
.section-subtitle{font-size:16px;color:#6b7280;max-width:600px;margin:0 auto}
.section-title-accent{display:inline-block;position:relative}
.section-title-accent::after{content:'';position:absolute;bottom:-8px;left:50%;transform:translateX(-50%);width:60px;height:3px;background:var(--primary);border-radius:3px}
.trips-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:28px}
.trip-card{background:#fff;border-radius:16px;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,.06);transition:all .35s;display:flex;flex-direction:column}
.trip-card:hover{transform:translateY(-6px);box-shadow:0 15px 40px rgba(0,0,0,.12)}
.trip-card-img{position:relative;height:240px;overflow:hidden}
.trip-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.trip-card:hover .trip-card-img img{transform:scale(1.08)}
.trip-card-img .no-img{width:100%;height:100%;background:linear-gradient(135deg,#f0f2f5,#e4e7ec);display:flex;align-items:center;justify-content:center;color:#9ca3af;font-size:40px}
.trip-duration-badge{position:absolute;top:14px;right:14px;background:rgba(255,255,255,.95);color:var(--secondary);padding:6px 14px;border-radius:20px;font-size:12px;font-weight:700;backdrop-filter:blur(4px)}
.trip-card-body{padding:22px;flex:1;display:flex;flex-direction:column}
.trip-card-title{font-size:19px;font-weight:700;margin-bottom:8px;color:var(--secondary);line-height:1.4}
.trip-card-desc{color:#6b7280;font-size:14px;line-height:1.6;margin-bottom:16px;flex:1}
.trip-card-footer{display:flex;justify-content:space-between;align-items:center;padding-top:16px;border-top:1px solid #f0f2f5}
.trip-price{display:flex;flex-direction:column}
.trip-price-label{font-size:11px;color:#9ca3af}
.trip-price-value{font-size:20px;font-weight:800;color:var(--primary);line-height:1.2}
.btn-trip{padding:10px 20px;background:var(--secondary);color:#fff;border-radius:var(--btn-radius);font-size:13px;font-weight:700;transition:all .2s;display:inline-block}
.btn-trip:hover{background:var(--primary)}
.blog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:28px}
.blog-card{background:#fff;border-radius:16px;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,.06);transition:all .35s;display:flex;flex-direction:column}
.blog-card:hover{transform:translateY(-6px);box-shadow:0 15px 40px rgba(0,0,0,.12)}
.blog-card-img{height:200px;overflow:hidden;background:#f0f2f5}
.blog-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.blog-card:hover .blog-card-img img{transform:scale(1.08)}
.blog-card-body{padding:22px;flex:1;display:flex;flex-direction:column}
.blog-card-meta{font-size:12px;color:#9ca3af;margin-bottom:8px;display:flex;gap:12px}
.blog-card-title{font-size:18px;font-weight:700;color:var(--secondary);margin-bottom:10px;line-height:1.4}
.blog-card-excerpt{color:#6b7280;font-size:14px;line-height:1.6;margin-bottom:14px;flex:1}
.blog-card-link{color:var(--primary);font-weight:700;font-size:14px}
.why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:28px}
.why-card{text-align:center;padding:36px 20px;background:#fff;border-radius:14px;transition:all .3s}
.why-card:hover{transform:translateY(-5px);box-shadow:0 10px 30px rgba(0,0,0,.08)}
.why-icon{font-size:42px;margin-bottom:16px;display:inline-block}
.why-title{font-size:17px;font-weight:700;color:var(--secondary)}
.testimonials-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:24px}
.testimonial-card{background:#fff;padding:28px;border-radius:16px;box-shadow:0 4px 20px rgba(0,0,0,.06);position:relative}
.testimonial-card::before{content:'"';position:absolute;top:12px;right:24px;font-size:70px;color:var(--primary);opacity:.18;font-family:serif;line-height:1}
.testimonial-rating{color:var(--primary);font-size:15px;margin-bottom:14px;letter-spacing:2px}
.testimonial-text{color:var(--text);font-size:15px;line-height:1.7;margin-bottom:20px;font-style:italic}
.testimonial-author{display:flex;align-items:center;gap:12px;padding-top:16px;border-top:1px solid #f0f2f5}
.testimonial-avatar{width:48px;height:48px;border-radius:50%;object-fit:cover;background:var(--primary);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:18px}
.testimonial-name{font-weight:700;font-size:15px}
.testimonial-country{font-size:13px;color:#9ca3af}
.cta-box{background:linear-gradient(135deg,var(--secondary) 0%,#2d3348 100%);border-radius:20px;padding:60px 40px;text-align:center;color:#fff}
.cta-box h2{font-size:clamp(24px,3.5vw,36px);font-weight:800;margin-bottom:12px}
.cta-box p{font-size:17px;opacity:.85;margin-bottom:30px}
.site-footer{background:#0f1218;color:#b8bfd0;padding:70px 0 0}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:50px;padding-bottom:40px}
.footer-title{color:#fff;font-size:22px;font-weight:800;margin-bottom:14px}
.footer-desc{font-size:14px;line-height:1.7}
.footer-heading{color:#fff;font-size:16px;font-weight:700;margin-bottom:16px}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:10px}
.footer-links a{font-size:14px;transition:color .2s}
.footer-links a:hover{color:var(--primary)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding:22px 0;text-align:center;font-size:13px}
.lang-modal{position:fixed;inset:0;background:rgba(15,18,24,.85);backdrop-filter:blur(8px);z-index:9999;display:flex;align-items:center;justify-content:center;padding:20px;animation:fadeIn .4s}
.lang-modal-box{background:#fff;border-radius:24px;padding:44px 36px;max-width:560px;width:100%;text-align:center;box-shadow:0 30px 80px rgba(0,0,0,.4);animation:scaleIn .5s}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes scaleIn{from{transform:scale(.9);opacity:0}to{transform:scale(1);opacity:1}}
.lang-modal-header{margin-bottom:32px}
.lang-modal-flag{font-size:42px;width:82px;height:82px;border-radius:50%;background:linear-gradient(135deg,var(--primary),#e0c078);color:#fff;display:flex;align-items:center;justify-content:center;margin:0 auto 18px}
.lang-modal-header h2{font-size:24px;font-weight:800;color:var(--secondary);margin-bottom:6px}
.lang-modal-header p{color:#6b7280;font-size:15px}
.lang-modal-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.lang-modal-item{display:flex;align-items:center;gap:12px;padding:18px 20px;background:#f8f9fb;border:2px solid transparent;border-radius:14px;font-weight:600;font-size:15px;transition:all .25s;color:var(--secondary)}
.lang-modal-item:hover{border-color:var(--primary);background:#fffbf2;transform:translateY(-2px)}
.lang-modal-flag-icon{font-size:24px}
.trip-hero{position:relative;height:70vh;min-height:500px;display:flex;align-items:flex-end;color:#fff;overflow:hidden;margin-top:82px;background:linear-gradient(135deg,#1a1f2e,#2d3348)}
.trip-hero-bg{position:absolute;inset:0;background-size:cover;background-position:center}
.trip-hero-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.85) 0%,rgba(0,0,0,.2) 60%,transparent 100%)}
.trip-hero-content{position:relative;z-index:2;padding:50px 0;width:100%}
.trip-hero h1{font-size:clamp(28px,5vw,52px);font-weight:800;margin-bottom:14px;text-shadow:0 2px 20px rgba(0,0,0,.4)}
.trip-hero-meta{display:flex;flex-wrap:wrap;gap:24px;font-size:15px}
.trip-hero-meta span{display:inline-flex;align-items:center;gap:6px}
.trip-tabs{position:sticky;top:82px;background:#fff;border-bottom:1px solid #eee;z-index:100;box-shadow:0 2px 12px rgba(0,0,0,.04)}
.trip-tabs-inner{display:flex;gap:4px;overflow-x:auto;padding:8px 0}
.trip-tab{padding:12px 20px;border:none;background:transparent;font-size:14px;font-weight:600;color:#6b7280;border-radius:8px;white-space:nowrap;transition:all .2s}
.trip-tab:hover{background:#f5f7fa;color:var(--text)}
.trip-tab.active{background:var(--primary);color:#fff}
.trip-content{display:grid;grid-template-columns:1fr 360px;gap:40px;padding:60px 0}
.trip-section{margin-bottom:50px;scroll-margin-top:160px}
.trip-section-title{font-size:24px;font-weight:800;color:var(--secondary);margin-bottom:20px;padding-bottom:12px;border-bottom:2px solid var(--primary);display:inline-block}
.itinerary-timeline{position:relative;padding-right:30px}
.itinerary-timeline::before{content:'';position:absolute;top:8px;bottom:8px;right:11px;width:2px;background:linear-gradient(to bottom,var(--primary),#e0c078)}
.itinerary-item{position:relative;padding:0 30px 24px 0}
.itinerary-dot{position:absolute;right:4px;top:4px;width:16px;height:16px;border-radius:50%;background:var(--primary);border:3px solid #fff;box-shadow:0 0 0 2px var(--primary)}
.itinerary-time{display:inline-block;background:var(--primary);color:#fff;padding:4px 12px;border-radius:20px;font-size:12px;font-weight:700;margin-bottom:8px}
.itinerary-title{font-size:16px;font-weight:700;color:var(--secondary);margin-bottom:4px}
.itinerary-desc{font-size:14px;color:#6b7280}
.includes-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.includes-col{background:#f8f9fb;border-radius:14px;padding:24px}
.includes-col h4{font-size:15px;margin-bottom:14px;color:var(--secondary)}
.includes-col ul{list-style:none}
.includes-col li{padding:8px 0 8px 26px;position:relative;font-size:14px;color:#4b5563}
.includes-col li::before{content:'✓';position:absolute;left:0;top:8px;color:#10b981;font-weight:700;font-size:14px}
.includes-col.excludes li::before{content:'✕';color:#ef4444}
.trip-gallery{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:12px}
.trip-gallery img{width:100%;height:160px;object-fit:cover;border-radius:10px;cursor:pointer;transition:transform .3s}
.trip-gallery img:hover{transform:scale(1.03)}
.booking-box{background:#fff;border-radius:16px;padding:28px;box-shadow:0 10px 40px rgba(0,0,0,.08);position:sticky;top:160px;border:1px solid #f0f2f5}
.booking-price{font-size:32px;font-weight:800;color:var(--primary);margin-bottom:6px}
.booking-price small{font-size:14px;color:#9ca3af;font-weight:500}
.booking-box form{margin-top:22px}
.booking-box .form-group{margin-bottom:14px}
.booking-box label{display:block;font-size:13px;font-weight:600;color:var(--text);margin-bottom:5px}
.booking-box input,.booking-box select,.booking-box textarea{width:100%;padding:10px 12px;border:1px solid #e5e9f0;border-radius:8px;font-family:inherit;font-size:14px;background:#fff}
.booking-box input:focus,.booking-box select:focus,.booking-box textarea:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 3px rgba(201,169,97,.15)}
.btn-submit-booking{width:100%;padding:14px;background:var(--primary);color:#fff;border:none;border-radius:var(--btn-radius);font-size:15px;font-weight:700;transition:all .2s;margin-top:6px}
.btn-submit-booking:hover{background:#b8934a}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.post-hero{padding:140px 0 60px;background:linear-gradient(135deg,#f8f9fb,#eef1f6);text-align:center}
.post-hero h1{font-size:clamp(26px,4vw,44px);font-weight:800;color:var(--secondary);margin-bottom:16px;max-width:900px;margin-left:auto;margin-right:auto;line-height:1.3}
.post-meta{display:flex;justify-content:center;gap:20px;color:#9ca3af;font-size:14px;flex-wrap:wrap}
.post-featured-img{max-width:900px;margin:-40px auto 40px;border-radius:20px;overflow:hidden;box-shadow:0 20px 60px rgba(0,0,0,.15)}
.post-featured-img img{width:100%;height:auto}
.post-content{max-width:780px;margin:0 auto;font-size:17px;line-height:1.9;color:#374151}
.post-content h2,.post-content h3{margin:32px 0 14px;color:var(--secondary);font-weight:700}
.post-content h2{font-size:26px}
.post-content h3{font-size:21px}
.post-content p{margin-bottom:18px}
.post-content img{border-radius:12px;margin:20px 0}
.post-content ul,.post-content ol{margin:16px 0;padding-left:26px}
.post-content li{margin-bottom:8px}
.post-content a{color:var(--primary);text-decoration:underline}
.post-content blockquote{border-right:4px solid var(--primary);padding:12px 20px;background:#f8f9fb;border-radius:8px;margin:20px 0;font-style:italic}
.page-hero{padding:140px 0 60px;background:linear-gradient(135deg,var(--secondary),#2d3348);color:#fff;text-align:center}
.page-hero h1{font-size:clamp(28px,4.5vw,46px);font-weight:800;margin-bottom:10px}
.page-hero p{opacity:.85;font-size:16px}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:flex-start}
.contact-info-card{background:#f8f9fb;padding:30px;border-radius:16px}
.contact-info-item{display:flex;gap:14px;padding:14px 0;border-bottom:1px solid #e5e9f0}
.contact-info-item:last-child{border-bottom:none}
.contact-info-icon{width:46px;height:46px;border-radius:50%;background:var(--primary);color:#fff;display:flex;align-items:center;justify-content:center;font-size:20px;flex-shrink:0}
.contact-info-label{font-size:12px;color:#9ca3af;margin-bottom:4px}
.contact-info-value{font-weight:600;color:var(--text)}
.contact-form-card{background:#fff;padding:34px;border-radius:16px;box-shadow:0 4px 20px rgba(0,0,0,.06)}
.contact-form-card .form-group{margin-bottom:18px}
.contact-form-card label{display:block;font-size:14px;font-weight:600;margin-bottom:6px;color:var(--text)}
.contact-form-card input,.contact-form-card textarea{width:100%;padding:12px 14px;border:1px solid #e5e9f0;border-radius:10px;font-family:inherit;font-size:14px}
.contact-form-card input:focus,.contact-form-card textarea:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 3px rgba(201,169,97,.15)}
.btn-primary-lg{padding:14px 32px;background:var(--primary);color:#fff;border:none;border-radius:var(--btn-radius);font-weight:700;font-size:15px;transition:all .2s}
.btn-primary-lg:hover{background:#b8934a;transform:translateY(-2px)}
.alert-success-box{background:#d1fae5;border:1px solid #6ee7b7;color:#065f46;padding:16px 20px;border-radius:12px;margin-bottom:20px;font-weight:600}
.alert-error-box{background:#fee2e2;border:1px solid #fca5a5;color:#991b1b;padding:16px 20px;border-radius:12px;margin-bottom:20px;font-weight:600}
.empty-front{text-align:center;padding:80px 20px;color:#9ca3af}
.empty-front .icon{font-size:60px;margin-bottom:16px}
.modal-backdrop{position:fixed;inset:0;background:rgba(0,0,0,.7);z-index:9998;display:flex;align-items:center;justify-content:center;padding:20px}
@media (max-width:900px){
.main-nav{position:fixed;top:82px;left:0;right:0;background:#fff;flex-direction:column;padding:20px;gap:0;transform:translateY(-110%);transition:transform .3s;box-shadow:0 4px 20px rgba(0,0,0,.1);align-items:flex-start}
.main-nav.open{transform:translateY(0)}
.nav-link{padding:14px 0;width:100%;border-bottom:1px solid #f0f2f5}
.mobile-toggle{display:block}
.btn-book{display:none}
.footer-grid{grid-template-columns:1fr;gap:30px;text-align:center}
.trip-content{grid-template-columns:1fr}
.booking-box{position:static}
.includes-grid{grid-template-columns:1fr}
.contact-grid{grid-template-columns:1fr}
.lang-modal-grid{grid-template-columns:1fr}
.hero{min-height:80vh;padding-top:100px}
.section{padding:60px 0}
}
/* ===================================================== */
/*   Enhanced Mobile Responsive — Global Fix              */
/* ===================================================== */
* { max-width: 100%; }
html, body { overflow-x: hidden; width: 100%; }

img, video, iframe, table { max-width: 100%; height: auto; }

@media (max-width: 900px) {

  .container { padding: 0 16px; }

  /* ========== Header ========== */
  .header-inner { padding: 10px 16px; gap: 10px; }
  .site-logo img { max-height: 40px; }
  .site-logo .logo-text { font-size: 17px; }

  .main-nav {
    position: fixed;
    top: 62px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 8px 16px 20px;
    gap: 0;
    transform: translateX(100%);
    transition: transform .3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    align-items: stretch;
    max-height: calc(100vh - 62px);
    overflow-y: auto;
    border-top: 1px solid #f0f2f5;
  }
  html[dir="ltr"] .main-nav { transform: translateX(-100%); }
  .main-nav.open { transform: translateX(0) !important; }

  .nav-link {
    padding: 14px 4px;
    width: 100%;
    border-bottom: 1px solid #f0f2f5;
    font-size: 15px;
  }
  .nav-link.active::after { display: none; }
  .nav-link.active { color: var(--primary); font-weight: 700; }

  .mobile-toggle {
    display: block;
    font-size: 26px;
    padding: 4px 8px;
    background: transparent;
    border: none;
  }
  .btn-book { display: none; }

  .lang-btn { padding: 7px 10px; }
  .lang-btn .lang-name, .lang-btn .arrow { display: none; }
  .lang-btn span:first-child { font-size: 20px; }

  /* ========== Hero ========== */
  .hero { min-height: 78vh; padding: 90px 16px 50px; }
  .hero h1 { font-size: clamp(26px, 7vw, 38px); }
  .hero p { font-size: 15px; margin-bottom: 24px; }
  .btn-hero { padding: 13px 28px; font-size: 14px; }

  /* ========== Sections ========== */
  .section { padding: 45px 0; }
  .section-head { margin-bottom: 28px; }
  .section-title { font-size: 24px; }
  .section-subtitle { font-size: 14px; }

  /* ========== Grids — single column ========== */
  .trips-grid,
  .blog-grid,
  .testimonials-grid,
  .why-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  /* ========== Trip Cards ========== */
  .trip-card-img { height: 210px; }
  .trip-card-body { padding: 16px; }
  .trip-card-title { font-size: 17px; }
  .trip-card-desc { font-size: 13px; }
  .trip-price-value { font-size: 17px; }
  .btn-trip { padding: 8px 14px; font-size: 12px; }

  /* ========== Blog Cards ========== */
  .blog-card-img { height: 180px; }
  .blog-card-body { padding: 16px; }
  .blog-card-title { font-size: 16px; }
  .blog-card-excerpt { font-size: 13px; }

  /* ========== Testimonials ========== */
  .testimonial-card { padding: 22px 18px; }
  .testimonial-text { font-size: 14px; }
  .testimonial-avatar { width: 42px; height: 42px; font-size: 16px; }

  /* ========== Why Us ========== */
  .why-card { padding: 26px 16px; }
  .why-icon { font-size: 34px; margin-bottom: 10px; }
  .why-title { font-size: 15px; }

  /* ========== CTA ========== */
  .cta-box { padding: 40px 22px; border-radius: 16px; }
  .cta-box h2 { font-size: 22px; }
  .cta-box p { font-size: 14px; margin-bottom: 22px; }

  /* ========== Footer ========== */
  .site-footer { padding: 45px 0 0; }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
    padding-bottom: 30px;
    text-align: center;
  }
  .footer-title { font-size: 18px; }
  .footer-desc { font-size: 13px; }
  .footer-links { align-items: center; }
  .footer-links a { font-size: 13px; }
  .footer-bottom { padding: 16px 0; font-size: 12px; }

  /* ========== Page Hero (about/trips/blog/contact) ========== */
  .page-hero { padding: 100px 0 40px; }
  .page-hero h1 { font-size: 26px; }
  .page-hero p { font-size: 14px; }

  /* ========== Trip Hero ========== */
  .trip-hero {
    height: auto;
    min-height: 380px;
    margin-top: 62px;
    padding-top: 90px;
    padding-bottom: 30px;
    align-items: flex-end;
  }
  .trip-hero h1 { font-size: 22px; margin-bottom: 12px; }
  .trip-hero-meta { gap: 8px 14px; font-size: 12px; }
  .trip-hero-meta span { width: 100%; }
  .trip-hero-content { padding: 20px 0; }

  /* ========== Trip Tabs ========== */
  .trip-tabs { top: 62px; }
  .trip-tabs-inner { padding: 6px 0; gap: 2px; }
  .trip-tab { padding: 9px 14px; font-size: 12px; }

  /* ========== Trip Content ========== */
  .trip-content {
    grid-template-columns: 1fr !important;
    padding: 30px 0;
    gap: 24px;
  }
  .trip-section { margin-bottom: 30px; }
  .trip-section-title { font-size: 19px; margin-bottom: 14px; padding-bottom: 8px; }

  /* ========== Itinerary Timeline ========== */
  .itinerary-timeline { padding-right: 22px; }
  .itinerary-timeline::before { right: 8px; }
  .itinerary-dot { right: 1px; width: 14px; height: 14px; border-width: 2px; }
  .itinerary-item { padding: 0 22px 20px 0; }
  .itinerary-time { font-size: 11px; padding: 3px 10px; }
  .itinerary-title { font-size: 15px; }
  .itinerary-desc { font-size: 13px; }

  html[dir="ltr"] .itinerary-timeline { padding-right: 0; padding-left: 22px; }
  html[dir="ltr"] .itinerary-timeline::before { right: auto; left: 8px; }
  html[dir="ltr"] .itinerary-dot { right: auto; left: 1px; }
  html[dir="ltr"] .itinerary-item { padding: 0 0 20px 22px; }

  /* ========== Includes ========== */
  .includes-grid { grid-template-columns: 1fr !important; gap: 14px; }
  .includes-col { padding: 18px; }
  .includes-col h4 { font-size: 14px; }
  .includes-col li { font-size: 13px; padding: 6px 0 6px 24px; }

  /* ========== Gallery ========== */
  .trip-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .trip-gallery img { height: 130px; }

  /* ========== Booking Box ========== */
  .booking-box {
    position: static;
    padding: 22px;
    border-radius: 14px;
    top: auto;
  }
  .booking-price { font-size: 26px; }
  .booking-box input,
  .booking-box textarea,
  .booking-box select { font-size: 15px; padding: 11px 12px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .btn-submit-booking { padding: 13px; font-size: 15px; }

  /* ========== Contact Page ========== */
  .contact-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .contact-info-card { padding: 22px 18px; }
  .contact-form-card { padding: 22px 18px; }
  .contact-info-item { padding: 12px 0; }
  .contact-info-icon { width: 42px; height: 42px; font-size: 18px; }

  /* ========== Post Page ========== */
  .post-hero { padding: 100px 0 30px; }
  .post-hero h1 { font-size: 22px; line-height: 1.4; }
  .post-meta { font-size: 12px; gap: 10px; flex-wrap: wrap; justify-content: center; }
  .post-featured-img {
    margin: -20px 16px 24px;
    border-radius: 14px;
  }
  .post-content { font-size: 15px; line-height: 1.75; }
  .post-content h2 { font-size: 20px; margin: 24px 0 10px; }
  .post-content h3 { font-size: 17px; margin: 20px 0 8px; }
  .post-content p { margin-bottom: 14px; }

  /* ========== Language Modal ========== */
  .lang-modal { padding: 16px; }
  .lang-modal-box {
    padding: 28px 22px;
    border-radius: 18px;
    max-height: 90vh;
    overflow-y: auto;
  }
  .lang-modal-flag {
    font-size: 32px;
    width: 68px; height: 68px;
    margin-bottom: 14px;
  }
  .lang-modal-header { margin-bottom: 22px; }
  .lang-modal-header h2 { font-size: 20px; }
  .lang-modal-header p { font-size: 13px; }
  .lang-modal-grid { grid-template-columns: 1fr !important; gap: 10px; }
  .lang-modal-item { padding: 14px 16px; font-size: 14px; }
  .lang-modal-flag-icon { font-size: 22px; }

  /* ========== Buttons Global ========== */
  .btn-primary-lg { padding: 12px 24px; font-size: 14px; }

  /* ========== Alerts ========== */
  .alert-success-box,
  .alert-error-box { padding: 14px 16px; font-size: 13px; }

  /* ========== Empty State ========== */
  .empty-front { padding: 50px 16px; }
  .empty-front .icon { font-size: 44px; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }

  .hero h1 { font-size: 24px; }
  .hero p { font-size: 14px; }
  .btn-hero { padding: 12px 22px; font-size: 13px; }

  .section { padding: 36px 0; }
  .section-title { font-size: 21px; }

  .trips-grid, .blog-grid, .testimonials-grid { gap: 14px; }
  .trip-card-img { height: 180px; }
  .blog-card-img { height: 160px; }

  .cta-box { padding: 30px 18px; }
  .cta-box h2 { font-size: 20px; }

  .booking-price { font-size: 24px; }

  .trip-gallery { grid-template-columns: 1fr; }
  .trip-gallery img { height: 200px; }

  .trip-hero h1 { font-size: 20px; }
  .trip-hero-meta { font-size: 11px; }

  .post-hero h1 { font-size: 20px; }
  .post-content { font-size: 14.5px; }
}
/* ===================================================== */
/*   PREMIUM HERO                                         */
/* ===================================================== */
.hero { position: relative; }
.hero .hero-bg-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  object-fit: cover;
  z-index: 0;
  transform-origin: center;
}
.hero.zoom-effect .hero-bg-media {
  animation: heroZoomBg 12s ease-out forwards;
}
.hero.fade-only .hero-bg-media {
  animation: heroFadeIn 1.6s ease-out;
}
.hero.static .hero-bg-media,
.hero .hero-bg-media.video {
  animation: none;
}
@keyframes heroZoomBg {
  from { transform: scale(1.15); }
  to   { transform: scale(1); }
}

.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.35) 50%, rgba(0,0,0,.65) 100%);
  z-index: 1;
}

.hero .hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-block;
  padding: 8px 18px;
  margin-bottom: 22px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.95);
  letter-spacing: .3px;
}
.hero h1 {
  font-size: clamp(34px, 6.5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
  text-shadow: 0 6px 40px rgba(0,0,0,.5);
}
.hero p {
  font-size: clamp(16px, 2.3vw, 21px);
  line-height: 1.6;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
}

/* Admin hero preview */
.hero-preview {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}
.hero-preview img,
.hero-preview video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .hero h1 { font-size: clamp(28px, 8.5vw, 42px); letter-spacing: -.5px; }
  .hero p  { font-size: 15px; line-height: 1.55; }
  .hero-eyebrow { font-size: 11px; padding: 6px 14px; margin-bottom: 16px; }
  .hero.zoom-effect .hero-bg-media { animation-duration: 18s; }
}
/* ===================================================== */
/*   PREMIUM HERO                                         */
/* ===================================================== */
.hero { position: relative; }
.hero .hero-bg-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  object-fit: cover;
  z-index: 0;
  transform-origin: center;
}
.hero.zoom-effect .hero-bg-media {
  animation: heroZoomBg 12s ease-out forwards;
}
.hero.fade-only .hero-bg-media {
  animation: heroFadeIn 1.6s ease-out;
}
.hero.static .hero-bg-media,
.hero .hero-bg-media.video {
  animation: none;
}
@keyframes heroZoomBg {
  from { transform: scale(1.15); }
  to   { transform: scale(1); }
}

.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.35) 50%, rgba(0,0,0,.65) 100%);
  z-index: 1;
}

.hero .hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-block;
  padding: 8px 18px;
  margin-bottom: 22px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.95);
  letter-spacing: .3px;
}
.hero h1 {
  font-size: clamp(34px, 6.5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
  text-shadow: 0 6px 40px rgba(0,0,0,.5);
}
.hero p {
  font-size: clamp(16px, 2.3vw, 21px);
  line-height: 1.6;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
}

/* Admin hero preview */
.hero-preview {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}
.hero-preview img,
.hero-preview video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .hero h1 { font-size: clamp(28px, 8.5vw, 42px); letter-spacing: -.5px; }
  .hero p  { font-size: 15px; line-height: 1.55; }
  .hero-eyebrow { font-size: 11px; padding: 6px 14px; margin-bottom: 16px; }
  .hero.zoom-effect .hero-bg-media { animation-duration: 18s; }
}
/* ===================================================== */
/*   PREMIUM HERO                                         */
/* ===================================================== */
.hero { position: relative; overflow: hidden; }
.hero .hero-bg-media {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  object-fit: cover;
  z-index: 0;
  transform-origin: center;
}
.hero.zoom-effect .hero-bg-media { animation: heroZoomBg 12s ease-out forwards; }
.hero.fade-only  .hero-bg-media { animation: heroFadeIn 1.6s ease-out; }
.hero.static .hero-bg-media,
.hero .hero-bg-media.video { animation: none; }
@keyframes heroZoomBg { from { transform: scale(1.15); } to { transform: scale(1); } }
@keyframes heroFadeIn { from { opacity: 0; } to { opacity: 1; } }

.hero .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.35) 50%, rgba(0,0,0,.65) 100%);
  z-index: 1;
}
.hero .hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-block;
  padding: 8px 18px;
  margin-bottom: 22px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.95);
}
.hero h1 {
  font-size: clamp(34px, 6.5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
  text-shadow: 0 6px 40px rgba(0,0,0,.5);
}
.hero p {
  font-size: clamp(16px, 2.3vw, 21px);
  line-height: 1.6;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
}

.hero-preview {
  width: 100%; max-width: 480px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}
.hero-preview img, .hero-preview video { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 900px) {
  .hero h1 { font-size: clamp(28px, 8.5vw, 42px); letter-spacing: -.5px; }
  .hero p  { font-size: 15px; line-height: 1.55; }
  .hero-eyebrow { font-size: 11px; padding: 6px 14px; margin-bottom: 16px; }
}
/* ============ About Page ============ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}
.about-layout > .about-content:first-child { grid-column: 1 / -1; }
.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}
.about-image img { width: 100%; height: auto; display: block; }
.about-content {
  font-size: 16.5px;
  line-height: 1.95;
  color: #374151;
}
.about-content p { margin-bottom: 16px; }

.about-features {
  border-top: 1px solid #f0f2f5;
  padding-top: 60px;
}

@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .about-content { font-size: 15px; line-height: 1.85; }
  .about-features { padding-top: 30px; }
}
/* ============ Heroicons Base ============ */
.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 24px; height: 24px; }
.icon-xl { width: 32px; height: 32px; }
.icon-2xl { width: 48px; height: 48px; }

/* ===================================================== */
/*   DARK MODE                                            */
/* ===================================================== */
[data-theme="dark"] {
  --bg: #0b0f17;
  --text: #d1d5db;
  --secondary: #f9fafb;
  --primary: #C9A961;
  --muted: #9ca3af;
  --surface: #151a24;
  --surface-2: #1a2130;
  --border: #2a3244;
}

[data-theme="dark"] body {
  background: var(--bg);
  color: var(--text);
}

/* Smooth transition on theme change */
body, .site-header, .section, .trip-card, .blog-card, .testimonial-card,
.why-card, .booking-box, .contact-form-card, .contact-info-card,
.post-content, .chat-window, .lang-modal-box {
  transition: background-color .35s ease, color .35s ease, border-color .35s ease;
}

/* ========== Header ========== */
[data-theme="dark"] .site-header {
  background: rgba(11,15,23,.92) !important;
  border-bottom-color: rgba(255,255,255,.05) !important;
}
[data-theme="dark"] .site-header.scrolled {
  background: rgba(11,15,23,.98) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,.5) !important;
  border-bottom-color: rgba(255,255,255,.06) !important;
}
[data-theme="dark"] .site-logo .logo-text { color: #fff; }
[data-theme="dark"] .nav-link { color: var(--text); }
[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active { color: var(--primary); }
[data-theme="dark"] .lang-btn {
  background: rgba(255,255,255,.06);
  color: var(--text);
}
[data-theme="dark"] .lang-btn:hover { background: rgba(255,255,255,.1); }
[data-theme="dark"] .lang-menu {
  background: var(--surface);
  box-shadow: 0 8px 30px rgba(0,0,0,.5);
}
[data-theme="dark"] .lang-item { color: var(--text); }
[data-theme="dark"] .lang-item:hover { background: rgba(255,255,255,.05); }

/* ========== Sections ========== */
[data-theme="dark"] .section { background: var(--bg); }
[data-theme="dark"] .section-gray { background: #0d121b; }
[data-theme="dark"] .section-title { color: #fff; }
[data-theme="dark"] .section-subtitle { color: var(--muted); }

/* ========== Cards ========== */
[data-theme="dark"] .trip-card,
[data-theme="dark"] .blog-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .why-card,
[data-theme="dark"] .booking-box,
[data-theme="dark"] .contact-form-card,
[data-theme="dark"] .contact-info-card {
  background: var(--surface);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  border-color: var(--border);
}
[data-theme="dark"] .trip-card:hover,
[data-theme="dark"] .blog-card:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,.5);
}
[data-theme="dark"] .trip-card-title,
[data-theme="dark"] .blog-card-title,
[data-theme="dark"] .testimonial-name,
[data-theme="dark"] .why-title,
[data-theme="dark"] .booking-price,
[data-theme="dark"] .contact-info-value {
  color: #fff;
}
[data-theme="dark"] .trip-card-desc,
[data-theme="dark"] .blog-card-excerpt,
[data-theme="dark"] .testimonial-text,
[data-theme="dark"] .testimonial-country,
[data-theme="dark"] .trip-price-label,
[data-theme="dark"] .blog-card-meta,
[data-theme="dark"] .contact-info-label {
  color: var(--muted);
}
[data-theme="dark"] .trip-card-footer {
  border-top-color: var(--border);
}
[data-theme="dark"] .trip-card-img .no-img {
  background: linear-gradient(135deg, #1a2130, #0d121b);
  color: var(--muted);
}
[data-theme="dark"] .testimonial-author {
  border-top-color: var(--border);
}

/* ========== Inputs ========== */
[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
  background: rgba(255,255,255,.04);
  border-color: var(--border);
  color: var(--text);
}
[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
  color: #6b7280;
}
[data-theme="dark"] input:focus,
[data-theme="dark"] textarea:focus,
[data-theme="dark"] select:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 3px rgba(201,169,97,.2);
}

/* ========== Trip Page ========== */
[data-theme="dark"] .trip-tabs {
  background: var(--surface);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
[data-theme="dark"] .trip-tab {
  color: var(--muted);
}
[data-theme="dark"] .trip-tab:hover {
  background: rgba(255,255,255,.05);
  color: var(--text);
}
[data-theme="dark"] .trip-tab.active { color: #fff; }
[data-theme="dark"] .trip-section-title { color: #fff; }
[data-theme="dark"] .trip-section > div { color: var(--text) !important; }
[data-theme="dark"] .includes-col {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
}
[data-theme="dark"] .includes-col h4 { color: #fff; }
[data-theme="dark"] .includes-col li { color: var(--muted); }
[data-theme="dark"] .itinerary-title { color: #fff; }
[data-theme="dark"] .itinerary-desc { color: var(--muted); }

/* ========== Blog Post ========== */
[data-theme="dark"] .post-hero {
  background: linear-gradient(135deg, #0d121b, #151a24);
}
[data-theme="dark"] .post-hero h1 { color: #fff; }
[data-theme="dark"] .post-meta { color: var(--muted); }
[data-theme="dark"] .post-content { color: var(--text); }
[data-theme="dark"] .post-content h2,
[data-theme="dark"] .post-content h3 { color: #fff; }
[data-theme="dark"] .post-content blockquote {
  background: rgba(255,255,255,.03);
  border-right-color: var(--primary);
}

/* ========== Page Hero ========== */
[data-theme="dark"] .page-hero {
  background: linear-gradient(135deg, #151a24, #0d121b);
}

/* ========== Footer ========== */
[data-theme="dark"] .site-footer {
  background: #05070a;
  border-top: 1px solid var(--border);
}

/* ========== Language Modal ========== */
[data-theme="dark"] .lang-modal {
  background: rgba(0,0,0,.85);
}
[data-theme="dark"] .lang-modal-box {
  background: var(--surface);
}
[data-theme="dark"] .lang-modal-header h2 { color: #fff; }
[data-theme="dark"] .lang-modal-header p { color: var(--muted); }
[data-theme="dark"] .lang-modal-item {
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-color: transparent;
}
[data-theme="dark"] .lang-modal-item:hover {
  background: rgba(201,169,97,.12);
  border-color: var(--primary);
}

/* ========== Chat Widget ========== */
[data-theme="dark"] .chat-window {
  background: var(--surface);
  box-shadow: 0 20px 70px rgba(0,0,0,.6);
}
[data-theme="dark"] .chat-messages {
  background: #0d121b;
}
[data-theme="dark"] .chat-bubble.admin {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--border);
}
[data-theme="dark"] .chat-input-form {
  background: var(--surface);
  border-top-color: var(--border);
}
[data-theme="dark"] .chat-input-form input {
  background: rgba(255,255,255,.04);
  color: var(--text);
}
[data-theme="dark"] .chat-date-sep::before,
[data-theme="dark"] .chat-date-sep::after {
  background: var(--border);
}

/* ========== About Page ========== */
[data-theme="dark"] .about-content { color: var(--text); }
[data-theme="dark"] .about-features {
  border-top-color: var(--border);
}

/* ========== Contact Page ========== */
[data-theme="dark"] .contact-info-item {
  border-bottom-color: var(--border);
}
[data-theme="dark"] .contact-form-card h3 { color: #fff; }

/* ========== CTA Box ========== */
[data-theme="dark"] .cta-box {
  background: linear-gradient(135deg, #151a24, #0d121b);
  border: 1px solid var(--border);
}

/* ========== Empty State ========== */
[data-theme="dark"] .empty-front { color: var(--muted); }

/* ========== Theme Toggle Button ========== */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,.05);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .3s;
  color: var(--secondary);
  padding: 0;
}
.theme-toggle:hover {
  background: rgba(0,0,0,.1);
  transform: rotate(20deg);
}
[data-theme="dark"] .theme-toggle {
  background: rgba(255,255,255,.08);
  color: #fbbf24;
}
[data-theme="dark"] .theme-toggle:hover {
  background: rgba(255,255,255,.15);
}
.theme-icon-dark { display: none; }
[data-theme="dark"] .theme-icon-light { display: none; }
[data-theme="dark"] .theme-icon-dark { display: inline-flex; }

@media (max-width: 900px) {
  .theme-toggle { width: 36px; height: 36px; }
}

/* ===================================================== */
/*   ADVANCED ANIMATIONS v2                              */
/* ===================================================== */

/* ========== Page Load Fade ========== */
body { animation: pageFadeIn .5s ease-out; }
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ========== Scroll Reveal (enhanced) ========== */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px) scale(.98);
  transition: opacity .9s cubic-bezier(.22,1,.36,1),
              transform .9s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}
[data-reveal="fade"]        { transform: none; }
[data-reveal="fade-left"]   { transform: translateX(-40px); }
[data-reveal="fade-right"]  { transform: translateX(40px); }
[data-reveal="zoom"]        { transform: scale(.9); }
[data-reveal="zoom"].revealed { transform: scale(1); }
[data-reveal="blur"]        { filter: blur(8px); transform: translateY(30px); }
[data-reveal="blur"].revealed { filter: blur(0); transform: translateY(0); }

/* ========== Delays ========== */
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }
[data-delay="5"] { transition-delay: .5s; }
[data-delay="6"] { transition-delay: .6s; }

/* ========== Hero Parallax ========== */
.hero { overflow: hidden; }
.hero .hero-slides,
.hero .hero-bg-media {
  will-change: transform;
  transition: transform .3s linear;
}
.hero-content { will-change: transform, opacity; }

/* ========== Section Title Reveal ========== */
.section-title-accent {
  position: relative;
  display: inline-block;
}
.section-title-accent::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: transform .8s cubic-bezier(.22,1,.36,1) .3s;
}
[data-reveal].revealed .section-title-accent::after {
  transform: translateX(-50%) scaleX(1);
}

/* ========== Section Head Letter Reveal ========== */
.section-head[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
}
.section-head[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Card Hover (3D Tilt) ========== */
.trip-card,
.blog-card,
.why-card,
.testimonial-card {
  transition: transform .5s cubic-bezier(.22,1,.36,1),
              box-shadow .5s cubic-bezier(.22,1,.36,1);
  transform-style: preserve-3d;
}
.trip-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 25px 60px -15px rgba(0,0,0,.25);
}
.blog-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 25px 60px -15px rgba(0,0,0,.25);
}
.why-card:hover {
  transform: translateY(-8px) scale(1.03);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -12px rgba(0,0,0,.18);
}

/* ========== Card Image Zoom (smoother) ========== */
.trip-card-img img,
.blog-card-img img {
  transition: transform 1.2s cubic-bezier(.22,1,.36,1);
}
.trip-card:hover .trip-card-img img,
.blog-card:hover .blog-card-img img {
  transform: scale(1.1);
}

/* ========== Button Ripple ========== */
.btn-hero,
.btn-trip,
.btn-book,
.btn-submit-booking,
.btn-primary-lg {
  position: relative;
  overflow: hidden;
}
.btn-hero::before,
.btn-trip::before,
.btn-book::before,
.btn-submit-booking::before,
.btn-primary-lg::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  transform: translate(-50%, -50%);
  transition: width .6s ease, height .6s ease;
  pointer-events: none;
}
.btn-hero:active::before,
.btn-trip:active::before,
.btn-book:active::before,
.btn-submit-booking:active::before,
.btn-primary-lg:active::before {
  width: 300px;
  height: 300px;
  transition: width .3s ease, height .3s ease;
}

/* ========== Icon Float ========== */
.why-card .why-icon svg,
.why-card .why-icon {
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.why-card:hover .why-icon {
  transform: translateY(-6px) scale(1.1);
}

/* ========== Stats Counter ========== */
.stat-number {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ========== Page Hero Text Animation ========== */
.page-hero h1 {
  opacity: 0;
  animation: heroFadeUp .8s cubic-bezier(.22,1,.36,1) .1s forwards;
}
.page-hero p {
  opacity: 0;
  animation: heroFadeUp .8s cubic-bezier(.22,1,.36,1) .3s forwards;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========== Smooth Image Load ========== */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity .6s ease;
}
img[loading="lazy"].loaded,
img[loading="lazy"][data-loaded] {
  opacity: 1;
}
img {
  transition: opacity .4s ease;
}
img:not([src=""]) {
  opacity: 1;
}

/* ========== Nav Link Underline Animation ========== */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0; left: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* ========== Footer Fade Up ========== */
.site-footer {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1);
}
.site-footer.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Language Modal ========== */
.lang-modal-item {
  transform: translateY(20px);
  opacity: 0;
  animation: langItemIn .5s cubic-bezier(.22,1,.36,1) forwards;
}
.lang-modal-item:nth-child(1) { animation-delay: .1s; }
.lang-modal-item:nth-child(2) { animation-delay: .2s; }
.lang-modal-item:nth-child(3) { animation-delay: .3s; }
.lang-modal-item:nth-child(4) { animation-delay: .4s; }
@keyframes langItemIn {
  to { transform: translateY(0); opacity: 1; }
}

/* ========== Loading Spinner ========== */
.spinner {
  display: inline-block;
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ========== Cursor Follow (subtle on hero) ========== */
.hero-content {
  transition: transform .3s ease-out;
}

/* ========== Scroll Progress Bar ========== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), #e0c078);
  z-index: 9999;
  transition: width .15s ease;
  box-shadow: 0 0 10px rgba(201,169,97,.6);
}

/* ========== Floating WhatsApp/Chat enhancement ========== */
.chat-fab {
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
}
.chat-fab:hover {
  transform: scale(1.1) rotate(-5deg);
}
.chat-fab:active {
  transform: scale(.95);
}

/* ========== Reduced Motion ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  body { animation: none; }
}

/* ========== Mobile Optimizations ========== */
@media (max-width: 900px) {
  /* تخفيف الحركات الثقيلة على الموبايل */
  .trip-card:hover,
  .blog-card:hover {
    transform: translateY(-4px);
  }
  .trip-card:hover .trip-card-img img,
  .blog-card:hover .blog-card-img img {
    transform: scale(1.05);
  }
  /* Parallax مطفأ على الموبايل */
  .hero .hero-slides,
  .hero .hero-bg-media {
    transform: none !important;
  }
  .scroll-progress { height: 2px; }
}

/* ===================================================== */
/*   UX ENHANCEMENTS                                      */
/* ===================================================== */

/* ========== Breadcrumbs ========== */
.breadcrumbs {
  padding: 20px 0;
  font-size: 13px;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 8px;
  align-items: center;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
}
.breadcrumbs li:not(:last-child)::after {
  content: '/';
  color: #d1d5db;
  font-size: 12px;
}
[dir="rtl"] .breadcrumbs li:not(:last-child)::after { content: '\\'; }
.breadcrumbs a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}
.breadcrumbs a:hover { color: var(--secondary); text-decoration: underline; }
.breadcrumbs .current span { color: var(--text); font-weight: 600; }

/* ========== Share Buttons ========== */
.share-block {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  margin: 30px 0;
  border-top: 1px solid #f0f2f5;
  border-bottom: 1px solid #f0f2f5;
  flex-wrap: wrap;
}
.share-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.share-buttons {
  display: flex;
  gap: 8px;
}
.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  padding: 0;
}
.share-btn svg { width: 18px; height: 18px; }
.share-btn:hover { transform: translateY(-3px) scale(1.05); }
.share-wa  { background: #25D366; box-shadow: 0 4px 12px rgba(37,211,102,.3); }
.share-fb  { background: #1877F2; box-shadow: 0 4px 12px rgba(24,119,242,.3); }
.share-tw  { background: #000;    box-shadow: 0 4px 12px rgba(0,0,0,.3); }
.share-tg  { background: #0088cc; box-shadow: 0 4px 12px rgba(0,136,204,.3); }
.share-copy { background: #6b7280; box-shadow: 0 4px 12px rgba(107,114,128,.3); }
.share-copy.copied { background: #10b981; }

/* ========== Back to Top ========== */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(201,169,97,.4);
  z-index: 996;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .3s cubic-bezier(.22,1,.36,1);
}
[dir="rtl"] .back-to-top { right: auto; left: 24px; }
.back-to-top svg { width: 22px; height: 22px; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover {
  background: var(--secondary);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
}

@media (max-width: 900px) {
  .back-to-top {
    bottom: calc(66px + 84px + env(safe-area-inset-bottom, 0px));
    right: 18px;
    width: 44px;
    height: 44px;
  }
  [dir="rtl"] .back-to-top { left: 18px; right: auto; }
}

/* ========== Skeleton Loading ========== */
.skeleton {
  background: linear-gradient(90deg, #f0f2f5 25%, #e4e7ec 50%, #f0f2f5 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
  border-radius: 8px;
}
@keyframes skeletonShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton-card {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.skeleton-img { height: 200px; border-radius: 0; }
.skeleton-text { height: 14px; margin: 10px 20px; }
.skeleton-title { height: 20px; width: 70%; margin: 16px 20px 8px; }
.skeleton-btn { height: 40px; width: 100px; margin: 16px 20px 20px; border-radius: 10px; }

/* ========== Form Validation ========== */
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #ef4444 !important;
  background: #fef2f2;
}
.form-group.has-success input,
.form-group.has-success textarea,
.form-group.has-success select {
  border-color: #10b981 !important;
}
.form-error-msg {
  display: block;
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
  font-weight: 500;
}
.form-success-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #10b981;
  font-size: 18px;
}
.form-group { position: relative; }

/* ========== 404 Page ========== */
.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}
.page-404-inner {
  max-width: 600px;
}
.page-404-code {
  font-size: clamp(80px, 15vw, 180px);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), #e0c078);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: -4px;
  animation: floatSlow 3s ease-in-out infinite;
}
.page-404 h1 {
  font-size: clamp(24px, 4vw, 36px);
  color: var(--secondary);
  margin-bottom: 14px;
  font-weight: 800;
}
.page-404 p {
  color: #6b7280;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.6;
}
.page-404-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== Toast Notifications ========== */
.ux-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1f2937;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 40px rgba(0,0,0,.3);
  z-index: 9999;
  opacity: 0;
  transition: all .35s cubic-bezier(.22,1,.36,1);
  pointer-events: none;
}
.ux-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.ux-toast.success { background: #10b981; }
.ux-toast.error   { background: #ef4444; }

/* ========== Dark Mode overrides ========== */
[data-theme="dark"] .breadcrumbs li { color: var(--muted); }
[data-theme="dark"] .breadcrumbs .current span { color: #fff; }
[data-theme="dark"] .share-block { border-color: var(--border); }
[data-theme="dark"] .share-label { color: #fff; }
[data-theme="dark"] .skeleton-card { background: var(--surface); }
[data-theme="dark"] .skeleton { background: linear-gradient(90deg, #1a2130 25%, #232b3d 50%, #1a2130 75%); background-size: 200% 100%; }
[data-theme="dark"] .form-group.has-error input { background: rgba(239,68,68,.1); }
[data-theme="dark"] .page-404 h1 { color: #fff; }
[data-theme="dark"] .page-404 p { color: var(--muted); }

/* ===================================================== */
/*   SOCIAL + MAP + REVIEWS                               */
/* ===================================================== */

/* ========== Footer Social ========== */
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}
.social-btn svg { width: 20px; height: 20px; }
.social-btn:hover {
  transform: translateY(-4px) scale(1.05);
}
.social-facebook:hover  { background: #1877F2; box-shadow: 0 6px 18px rgba(24,119,242,.5); }
.social-instagram:hover { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); box-shadow: 0 6px 18px rgba(221,42,123,.5); }
.social-twitter:hover   { background: #000; box-shadow: 0 6px 18px rgba(0,0,0,.5); }
.social-tiktok:hover    { background: #000; box-shadow: 0 6px 18px rgba(0,0,0,.5); }
.social-youtube:hover   { background: #FF0000; box-shadow: 0 6px 18px rgba(255,0,0,.5); }
.social-whatsapp:hover  { background: #25D366; box-shadow: 0 6px 18px rgba(37,211,102,.5); }

/* ========== Contact Map ========== */
.contact-map {
  margin-top: 60px;
}
.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,.15);
  height: 400px;
  background: #f0f2f5;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: contrast(1.05) saturate(.95);
}
.map-address {
  margin-top: 16px;
  text-align: center;
  color: #6b7280;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.map-directions {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
.map-directions:hover { text-decoration: underline; }

/* ========== Reviews CTA (button) ========== */
.reviews-cta {
  max-width: 700px;
  margin: 0 auto;
}
.reviews-cta-inner {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.reviews-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.rating-big {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), #e0c078);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rating-stars {
  display: flex;
  gap: 4px;
  color: var(--primary);
}
.rating-count {
  color: #9ca3af;
  font-size: 14px;
}
.btn-open-reviews {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 10px 30px rgba(201,169,97,.4);
}
.btn-open-reviews:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201,169,97,.55);
}
.btn-open-reviews svg { width: 20px; height: 20px; }

/* ========== Reviews Modal ========== */
.reviews-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: modalFade .3s;
}
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
.reviews-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,18,24,.75);
  backdrop-filter: blur(8px);
}
.reviews-modal-box {
  position: relative;
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 900px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalSlide .4s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
@keyframes modalSlide {
  from { transform: translateY(30px) scale(.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.reviews-modal-header {
  padding: 22px 26px;
  border-bottom: 1px solid #f0f2f5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reviews-modal-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--secondary);
}
.reviews-modal-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f0f2f5;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background .2s;
}
.reviews-modal-close:hover { background: #e5e9f0; }
.reviews-modal-body {
  padding: 22px 26px;
  overflow-y: auto;
}
.reviews-source-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 16px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.review-card {
  background: #f8fafc;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #f0f2f5;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review-avatar-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}
.review-author {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.review-time {
  font-size: 11px;
  color: #9ca3af;
}
.review-stars {
  color: var(--primary);
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}
.review-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: #4b5563;
}

/* ========== Dark Mode ========== */
[data-theme="dark"] .reviews-cta-inner {
  background: var(--surface);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,.5);
}
[data-theme="dark"] .reviews-modal-box { background: var(--surface); }
[data-theme="dark"] .reviews-modal-header { border-bottom-color: var(--border); }
[data-theme="dark"] .reviews-modal-header h3 { color: #fff; }
[data-theme="dark"] .reviews-modal-close { background: rgba(255,255,255,.08); color: #fff; }
[data-theme="dark"] .review-card {
  background: rgba(255,255,255,.03);
  border-color: var(--border);
}
[data-theme="dark"] .review-author { color: #fff; }
[data-theme="dark"] .review-text { color: var(--muted); }
[data-theme="dark"] .map-wrapper { background: var(--surface); }
[data-theme="dark"] .map-address { color: var(--muted); }

/* ========== Mobile ========== */
@media (max-width: 900px) {
  .footer-social { justify-content: center; }
  .map-wrapper { height: 280px; border-radius: 14px; }
  .reviews-cta-inner { padding: 28px 20px; border-radius: 20px; }
  .rating-big { font-size: 42px; }
  .btn-open-reviews { padding: 13px 26px; font-size: 15px; }
  .reviews-modal-box { max-height: 92vh; border-radius: 20px; }
  .reviews-modal-header { padding: 16px 18px; }
  .reviews-modal-body { padding: 16px 18px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 10px; }
  .review-card { padding: 14px; }
}

/* ============ Contact Social ============ */
.contact-social-block {
  margin-top: 20px;
  padding: 22px;
  background: #f8fafc;
  border-radius: 16px;
  text-align: center;
}
.contact-social-block h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}
.contact-social-block .footer-social {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-social-empty {
  font-size: 12px;
  opacity: .5;
  text-align: center;
  color: #9ca3af;
}
[data-theme="dark"] .contact-social-block {
  background: rgba(255,255,255,.03);
}
[data-theme="dark"] .contact-social-block h4 { color: #fff; }

/* ===================================================== */
/*   CINEMATIC TRIP PAGE                                  */
/* ===================================================== */

/* ========== Hero Cinematic ========== */
.trip-hero-cinematic {
  position: relative;
  height: 92vh;
  min-height: 620px;
  max-height: 900px;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.trip-hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.trip-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s ease-in-out, transform 8s ease-out;
  will-change: opacity, transform;
}
.trip-hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.trip-hero-slide.leaving {
  opacity: 0;
}
.trip-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.5) 0%, rgba(0,0,0,.15) 30%, rgba(0,0,0,.65) 75%, rgba(0,0,0,.9) 100%),
    linear-gradient(135deg, rgba(10,12,18,.4), rgba(10,12,18,.1));
}
.trip-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 100px;
}
.trip-hero-eyebrow {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 40px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 22px;
  animation: heroFadeUp 1s cubic-bezier(.22,1,.36,1) .1s both;
}
.trip-hero-cinematic h1 {
  font-size: clamp(32px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin-bottom: 28px;
  max-width: 900px;
  text-shadow: 0 8px 40px rgba(0,0,0,.5);
  animation: heroFadeUp 1s cubic-bezier(.22,1,.36,1) .25s both;
}
.trip-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
  animation: heroFadeUp 1s cubic-bezier(.22,1,.36,1) .4s both;
}
.trip-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
}
.trip-meta-icon {
  display: inline-flex;
  align-items: center;
  color: #C9A961;
}
.trip-meta-price {
  background: linear-gradient(135deg, rgba(201,169,97,.35), rgba(201,169,97,.15));
  border-color: rgba(201,169,97,.5);
}
.trip-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: heroFadeUp 1s cubic-bezier(.22,1,.36,1) .55s both;
}
.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 40px;
  background: linear-gradient(135deg, #C9A961, #e0c078);
  color: #1a1a1a;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: all .3s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 12px 40px rgba(201,169,97,.5);
}
.btn-hero-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 55px rgba(201,169,97,.65);
}
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 32px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s;
  font-family: inherit;
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-3px);
}
.hero-gallery-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  background: #C9A961;
  color: #fff;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
}

/* Hero Thumbs Strip */
.trip-hero-thumbs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 20px 0;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
  animation: heroFadeUp 1s cubic-bezier(.22,1,.36,1) .7s both;
}
.trip-hero-thumbs-inner {
  display: flex;
  gap: 10px;
  padding: 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.trip-hero-thumbs-inner::-webkit-scrollbar { display: none; }
.trip-hero-thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: all .3s cubic-bezier(.22,1,.36,1);
  opacity: .55;
  background: #000;
}
.trip-hero-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.trip-hero-thumb.active {
  opacity: 1;
  border-color: #C9A961;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(201,169,97,.5);
}
.trip-hero-thumb:hover { opacity: 1; transform: scale(1.05); }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 14px;
  animation: heroFadeUp 1s 1s both;
}
.hero-scroll-hint span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 4px;
  animation: scrollHintMove 1.8s infinite;
}
@keyframes scrollHintMove {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 16px); }
}

/* ========== Trip Section Title ========== */
.trip-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 0;
  border-bottom: none;
  font-size: 26px;
  font-weight: 800;
  color: var(--secondary);
}
.trip-section-title span { position: relative; }
.trip-section-title span::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, #C9A961, #e0c078);
  border-radius: 3px;
}
[dir="rtl"] .trip-section-title span::before { left: auto; right: 0; }

.trip-overview-text {
  font-size: 16.5px;
  line-height: 1.95;
  color: #4b5563;
}

/* ========== Itinerary (enhanced) ========== */
.itinerary-timeline {
  position: relative;
  padding-right: 40px;
}
.itinerary-timeline::before {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  right: 13px;
  width: 3px;
  background: linear-gradient(to bottom, #C9A961, #e0c078, #C9A961);
  border-radius: 3px;
  opacity: .35;
}
[dir="ltr"] .itinerary-timeline { padding-right: 0; padding-left: 40px; }
[dir="ltr"] .itinerary-timeline::before { right: auto; left: 13px; }

.itinerary-item {
  position: relative;
  padding: 0 44px 32px 0;
}
[dir="ltr"] .itinerary-item { padding: 0 0 32px 44px; }

.itinerary-dot {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201,169,97,.25), 0 0 0 6px rgba(201,169,97,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
[dir="ltr"] .itinerary-dot { right: auto; left: 4px; }
.itinerary-dot span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #C9A961;
}

.itinerary-content {
  background: #fff;
  border: 1px solid #f0f2f5;
  border-radius: 14px;
  padding: 18px 22px;
  transition: all .3s cubic-bezier(.22,1,.36,1);
}
.itinerary-content:hover {
  border-color: #C9A961;
  box-shadow: 0 10px 30px -12px rgba(201,169,97,.4);
  transform: translateY(-2px);
}
.itinerary-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.itinerary-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: linear-gradient(135deg, #C9A961, #e0c078);
  color: #fff;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
}
.itinerary-day {
  padding: 4px 12px;
  background: #1a1f2e;
  color: #fff;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
}
.itinerary-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 5px;
  line-height: 1.4;
}
.itinerary-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.65;
}

/* ========== Includes (enhanced) ========== */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.includes-col {
  background: #fff;
  border-radius: 16px;
  padding: 26px;
  border: 1px solid #f0f2f5;
  position: relative;
  overflow: hidden;
}
.includes-yes { border-top: 4px solid #10b981; }
.includes-no  { border-top: 4px solid #ef4444; }
.includes-col h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.includes-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(16,185,129,.12);
  color: #10b981;
}
.includes-no .includes-badge { background: rgba(239,68,68,.12); color: #ef4444; }
.includes-col ul { list-style: none; }
.includes-col li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: 14.5px;
  color: #4b5563;
  border-bottom: 1px solid #f8fafc;
}
.includes-col li:last-child { border-bottom: none; }
.includes-col li::before {
  content: '';
  position: absolute;
  left: 0; top: 15px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(16,185,129,.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
[dir="rtl"] .includes-col li { padding: 10px 30px 10px 0; }
[dir="rtl"] .includes-col li::before { left: auto; right: 0; }
.includes-col li::after {
  content: '✓';
  position: absolute;
  left: 5px; top: 10px;
  color: #10b981;
  font-weight: 800;
  font-size: 12px;
}
[dir="rtl"] .includes-col li::after { left: auto; right: 5px; }
.includes-no li::before { background: rgba(239,68,68,.15); }
.includes-no li::after { content: '✕'; color: #ef4444; }

/* ========== Mosaic Gallery ========== */
.trip-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
}
.mosaic-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #f0f2f5;
}
.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.mosaic-item:hover img { transform: scale(1.08); }
.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  color: #fff;
}
.mosaic-item:hover .mosaic-overlay { opacity: 1; }
.mosaic-overlay span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(.8);
  transition: transform .3s;
}
.mosaic-item:hover .mosaic-overlay span { transform: scale(1); }

/* Mosaic layouts */
.mosaic-0 { grid-column: span 2; grid-row: span 2; }
.mosaic-1 { grid-column: span 2; }
.mosaic-2 { grid-column: span 1; }
.mosaic-3 { grid-column: span 1; }
.mosaic-4 { grid-column: span 2; }

/* ========== Booking Trust Row ========== */
.booking-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #f0f2f5;
  font-size: 12px;
  color: #6b7280;
}
.booking-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.booking-trust svg { color: #10b981; }

/* ========== Gallery Lightbox ========== */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.96);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lbFade .3s;
}
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }

.gallery-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.95);
  transition: opacity .4s, transform .4s;
  pointer-events: none;
}
.gallery-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.gallery-slide img {
  max-width: 88vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
}

.gallery-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all .2s;
}
.gallery-close:hover { background: rgba(255,255,255,.2); transform: rotate(90deg); }

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all .25s;
}
.gallery-nav:hover {
  background: #C9A961;
  border-color: #C9A961;
  transform: translateY(-50%) scale(1.1);
}
.gallery-prev { left: 24px; }
.gallery-next { right: 24px; }

.gallery-counter {
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border-radius: 30px;
  z-index: 10;
}

.gallery-thumbs {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border-radius: 40px;
  max-width: 90vw;
  overflow-x: auto;
  scrollbar-width: none;
  z-index: 10;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
  flex: 0 0 56px;
  width: 56px;
  height: 42px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: #000;
  opacity: .5;
  transition: all .25s;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb.active { opacity: 1; border-color: #C9A961; transform: scale(1.1); }
.gallery-thumb:hover { opacity: 1; }

/* ========== Responsive ========== */
@media (max-width: 900px) {
  .trip-hero-cinematic { height: 82vh; min-height: 540px; max-height: 700px; }
  .trip-hero-cinematic h1 { font-size: 30px; letter-spacing: -.5px; margin-bottom: 18px; }
  .trip-hero-eyebrow { font-size: 11px; padding: 6px 14px; margin-bottom: 14px; }
  .trip-hero-meta { gap: 8px; margin-bottom: 22px; }
  .trip-meta-item { padding: 8px 14px; font-size: 12.5px; }
  .trip-hero-actions { width: 100%; }
  .btn-hero-cta, .btn-hero-ghost { flex: 1; justify-content: center; padding: 15px 22px; font-size: 14px; }
  .trip-hero-content { padding-bottom: 140px; }
  .trip-hero-thumb { flex: 0 0 56px; width: 56px; height: 42px; }
  .hero-scroll-hint { display: none; }
  .trip-hero-thumbs { padding: 14px 0; }

  .itinerary-timeline { padding-right: 32px; }
  .itinerary-item { padding: 0 36px 22px 0; }
  .itinerary-timeline::before { right: 10px; width: 2px; }
  .itinerary-dot { right: 1px; width: 20px; height: 20px; }
  .itinerary-dot span { width: 8px; height: 8px; }
  .itinerary-content { padding: 14px 16px; }
  .itinerary-title { font-size: 15px; }

  .includes-grid { grid-template-columns: 1fr; }
  .includes-col { padding: 20px; }

  .trip-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
    gap: 8px;
  }
  .mosaic-0 { grid-column: span 2; grid-row: span 2; }
  .mosaic-1 { grid-column: span 2; }
  .mosaic-4 { grid-column: span 2; }

  .gallery-nav { width: 44px; height: 44px; }
  .gallery-prev { left: 10px; }
  .gallery-next { right: 10px; }
  .gallery-slide img { max-width: 92vw; max-height: 62vh; }
  .gallery-thumbs { bottom: 10px; padding: 8px 10px; }
  .gallery-thumb { flex: 0 0 46px; width: 46px; height: 34px; }
  .gallery-close { width: 42px; height: 42px; top: 12px; right: 12px; }
  .gallery-counter { top: 14px; font-size: 12px; padding: 6px 14px; }
}

/* Dark mode */
[data-theme="dark"] .itinerary-content {
  background: var(--surface);
  border-color: var(--border);
}
[data-theme="dark"] .itinerary-content:hover { border-color: #C9A961; }
[data-theme="dark"] .itinerary-title { color: #fff; }
[data-theme="dark"] .itinerary-desc { color: var(--muted); }
[data-theme="dark"] .includes-col { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .includes-col h4 { color: #fff; }
[data-theme="dark"] .includes-col li { color: var(--muted); border-bottom-color: rgba(255,255,255,.04); }
[data-theme="dark"] .trip-section-title { color: #fff; }
[data-theme="dark"] .trip-overview-text { color: var(--text); }
[data-theme="dark"] .mosaic-item { background: var(--surface); }
[data-theme="dark"] .booking-trust { border-top-color: var(--border); }

/* ===================================================== */
/*   CLEAN CINEMATIC TRIP SHOWCASE                        */
/* ===================================================== */

/* ========== Showcase (بدون نصوص) ========== */
.trip-showcase {
  position: relative;
  width: 100%;
  height: 68vh;
  min-height: 460px;
  max-height: 720px;
  overflow: hidden;
  background: #0d121b;
  margin-top: 0;
}
.showcase-slides {
  position: absolute;
  inset: 0;
}
.showcase-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.6s ease-in-out, transform 8s ease-out;
  will-change: opacity, transform;
}
.showcase-slide.active {
  opacity: 1;
  transform: scale(1);
}
.showcase-slide.leaving {
  opacity: 0;
}

/* ========== Dots (مؤشرات صغيرة) ========== */
.showcase-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
  padding: 8px 14px;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.15);
}
.showcase-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all .35s cubic-bezier(.22,1,.36,1);
}
.showcase-dot:hover { background: rgba(255,255,255,.85); }
.showcase-dot.active {
  background: #C9A961;
  width: 26px;
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(201,169,97,.7);
}

/* ========== Trip Header Clean ========== */
.trip-header-clean {
  background: #fff;
  padding: 30px 0 32px;
  border-bottom: 1px solid #f0f2f5;
}
.trip-header-clean .breadcrumbs { padding: 0 0 18px; }
.trip-header-grid {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.trip-header-main { flex: 1; min-width: 280px; }
.trip-header-destination {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #C9A961;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.trip-header-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.15;
  letter-spacing: -.8px;
  margin-bottom: 12px;
}
.trip-header-desc {
  font-size: 15.5px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 640px;
}
.trip-header-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.trip-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  background: #f8fafc;
  border: 1px solid #e5e9f0;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.trip-meta-chip svg { color: #6b7280; }
.trip-meta-chip-gold {
  background: linear-gradient(135deg, #C9A961, #e0c078);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 20px rgba(201,169,97,.4);
}
.trip-meta-chip-gold svg { color: #fff; }

/* ========== Responsive ========== */
@media (max-width: 900px) {
  .trip-showcase {
    height: 52vh;
    min-height: 320px;
    max-height: 480px;
  }
  .showcase-dots { bottom: 14px; padding: 6px 10px; gap: 6px; }
  .showcase-dot { width: 7px; height: 7px; }
  .showcase-dot.active { width: 20px; }

  .trip-header-clean { padding: 22px 0 24px; }
  .trip-header-grid { gap: 18px; }
  .trip-header-title { font-size: 24px; letter-spacing: -.4px; }
  .trip-header-desc { font-size: 14px; }
  .trip-meta-chip { padding: 8px 14px; font-size: 12.5px; }
}

/* Dark Mode */
[data-theme="dark"] .trip-header-clean {
  background: var(--surface);
  border-bottom-color: var(--border);
}
[data-theme="dark"] .trip-header-title { color: #fff; }
[data-theme="dark"] .trip-header-desc { color: var(--muted); }
[data-theme="dark"] .trip-meta-chip {
  background: rgba(255,255,255,.04);
  border-color: var(--border);
  color: var(--text);
}

/* ===================================================== */
/*   PREMIUM OVERVIEW SECTION                             */
/* ===================================================== */

.overview-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: flex-start;
}

/* ========== Main Text ========== */
.overview-main {
  min-width: 0;
}
.overview-lead {
  font-size: 19px;
  line-height: 1.85;
  font-weight: 500;
  color: var(--secondary);
  padding: 24px 26px;
  background: linear-gradient(135deg, #fafbfd 0%, #f5f7fa 100%);
  border-radius: 16px;
  border-right: 4px solid #C9A961;
  margin-bottom: 24px;
  position: relative;
}
[dir="ltr"] .overview-lead {
  border-right: none;
  border-left: 4px solid #C9A961;
}
.overview-lead::before {
  content: '"';
  position: absolute;
  top: -18px;
  right: 18px;
  font-size: 72px;
  font-family: serif;
  color: #C9A961;
  opacity: .18;
  line-height: 1;
}
[dir="ltr"] .overview-lead::before {
  right: auto;
  left: 18px;
}

.overview-para {
  font-size: 16.5px;
  line-height: 1.95;
  color: #4b5563;
  margin-bottom: 18px;
  padding-left: 0;
  padding-right: 0;
}
.overview-para:last-child {
  margin-bottom: 0;
}

/* تزيين أول فقرة عادية بـ drop cap */
.overview-para:first-of-type::first-letter {
  font-size: 34px;
  font-weight: 800;
  color: #C9A961;
  float: right;
  line-height: 1;
  margin: 4px 0 0 8px;
  font-family: 'Playfair Display', serif;
}
[dir="ltr"] .overview-para:first-of-type::first-letter {
  float: left;
  margin: 4px 8px 0 0;
}

/* ========== Side Facts Card ========== */
.overview-side {
  position: sticky;
  top: 160px;
}
.facts-card {
  background: #fff;
  border: 1px solid #eef1f5;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 40px -15px rgba(0,0,0,.08);
  margin-bottom: 14px;
}
.facts-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f0f2f5;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.facts-title::before {
  content: '';
  width: 4px;
  height: 18px;
  background: linear-gradient(180deg, #C9A961, #e0c078);
  border-radius: 2px;
}

.fact-item {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f8fafc;
  align-items: center;
}
.fact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.fact-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,169,97,.15), rgba(201,169,97,.05));
  color: #C9A961;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fact-label {
  font-size: 11.5px;
  color: #9ca3af;
  font-weight: 600;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.fact-value {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.4;
}
.fact-value.fact-price {
  color: #C9A961;
  font-size: 17px;
}

.facts-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 20px;
  background: linear-gradient(135deg, #C9A961, #e0c078);
  color: #fff;
  border-radius: 14px;
  font-size: 14.5px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 30px -8px rgba(201,169,97,.5);
  transition: all .3s cubic-bezier(.22,1,.36,1);
}
.facts-book-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px -8px rgba(201,169,97,.65);
}

/* ========== Responsive ========== */
@media (max-width: 1000px) {
  .overview-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .overview-side { position: static; }

  .overview-lead {
    font-size: 16px;
    padding: 18px 20px;
  }
  .overview-lead::before { font-size: 52px; top: -12px; }

  .overview-para { font-size: 15.5px; line-height: 1.85; }
  .overview-para:first-of-type::first-letter { font-size: 28px; }

  .facts-card { padding: 20px; }
  .fact-icon { width: 36px; height: 36px; }
  .fact-value { font-size: 14px; }
}

/* Dark Mode */
[data-theme="dark"] .overview-lead {
  background: linear-gradient(135deg, #1a2130, #151a24);
  color: #e5e7eb;
}
[data-theme="dark"] .overview-para { color: var(--text); }
[data-theme="dark"] .facts-card {
  background: var(--surface);
  border-color: var(--border);
  box-shadow: 0 10px 40px -15px rgba(0,0,0,.4);
}
[data-theme="dark"] .facts-title {
  color: #fff;
  border-bottom-color: var(--border);
}
[data-theme="dark"] .fact-item { border-bottom-color: rgba(255,255,255,.04); }
[data-theme="dark"] .fact-value { color: #fff; }

/* ===================================================== */
/*   TRIP PAGE — CLEAN & PROFESSIONAL                     */
/* ===================================================== */

.trip-content-full {
  max-width: 920px;
  margin: 0 auto;
  padding: 50px 0 100px;
}

/* ========== Section Label ========== */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.section-label-line {
  width: 42px;
  height: 3px;
  background: linear-gradient(90deg, #C9A961, #e0c078);
  border-radius: 3px;
  flex-shrink: 0;
}
.section-label-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -.3px;
}

/* ========== Overview Clean ========== */
.overview-clean {
  font-size: 16.5px;
  line-height: 1.9;
  color: #4b5563;
}
.overview-clean .para-lead {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 24px;
  padding-right: 18px;
  border-right: 3px solid #C9A961;
}
[dir="ltr"] .overview-clean .para-lead {
  padding-right: 0;
  padding-left: 18px;
  border-right: none;
  border-left: 3px solid #C9A961;
}
.overview-clean .para {
  margin-bottom: 18px;
}
.overview-clean .para:last-child { margin-bottom: 0; }

/* ========== Program Clean ========== */
.program-clean {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.program-item {
  display: grid;
  grid-template-columns: 90px 30px 1fr;
  gap: 0;
  align-items: stretch;
}
.program-time-col {
  padding: 22px 12px 22px 0;
  text-align: right;
}
[dir="ltr"] .program-time-col {
  padding: 22px 0 22px 12px;
  text-align: left;
}
.program-time {
  display: inline-block;
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(201,169,97,.15), rgba(201,169,97,.05));
  color: #C9A961;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .3px;
  font-variant-numeric: tabular-nums;
}
.program-time-empty {
  color: #cbd5e1;
  background: transparent;
  font-size: 22px;
  padding: 0;
}
.program-line-col {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 22px 0;
}
.program-line-col::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #e5e9f0 15%, #e5e9f0 85%, transparent);
}
.program-item:first-child .program-line-col::before { top: 30px; }
.program-item:last-child .program-line-col::before { bottom: calc(100% - 30px); }
.program-dot {
  position: relative;
  z-index: 2;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #C9A961;
  margin-top: 22px;
  box-shadow: 0 0 0 4px rgba(201,169,97,.12);
}
.program-content-col {
  padding: 22px 0 22px 20px;
  border-bottom: 1px solid #f0f2f5;
}
[dir="rtl"] .program-content-col {
  padding: 22px 20px 22px 0;
}
.program-item:last-child .program-content-col { border-bottom: none; }
.program-day {
  display: inline-block;
  padding: 3px 10px;
  background: #1a1f2e;
  color: #fff;
  border-radius: 12px;
  font-size: 10.5px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: .3px;
}
.program-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.4;
  margin-bottom: 4px;
}
.program-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.65;
}

/* ========== Includes Clean ========== */
.includes-clean {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.includes-block {
  background: #fff;
  border-radius: 18px;
  padding: 26px 24px;
  border: 1px solid #f0f2f5;
  position: relative;
}
.includes-block-yes { border-top: 3px solid #10b981; }
.includes-block-no  { border-top: 3px solid #ef4444; }
.includes-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f2f5;
}
.includes-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.includes-block-yes .includes-icon {
  background: linear-gradient(135deg, rgba(16,185,129,.15), rgba(16,185,129,.05));
  color: #10b981;
}
.includes-block-no .includes-icon {
  background: linear-gradient(135deg, rgba(239,68,68,.15), rgba(239,68,68,.05));
  color: #ef4444;
}
.includes-block h3 {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--secondary);
}
.includes-list {
  list-style: none;
}
.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.55;
}
.includes-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  margin-top: 1px;
}
.includes-block-yes .includes-check {
  background: rgba(16,185,129,.12);
  color: #10b981;
}
.includes-block-no .includes-check {
  background: rgba(239,68,68,.12);
  color: #ef4444;
}

/* ========== Gallery Clean ========== */
.gallery-clean {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 10px;
}
.gallery-clean-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #f0f2f5;
}
.gallery-clean-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.gallery-clean-item:hover img { transform: scale(1.08); }
.gallery-clean-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-clean-item:hover .gallery-clean-overlay { opacity: 1; }
.gallery-pos-0 { grid-column: span 2; grid-row: span 2; }
.gallery-pos-1 { grid-column: span 2; }
.gallery-pos-2 { grid-column: span 1; }
.gallery-pos-3 { grid-column: span 1; }
.gallery-pos-4 { grid-column: span 2; }
.gallery-pos-5 { grid-column: span 2; }

/* ========== Floating Booking Button ========== */
.book-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 995;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px 12px 20px;
  background: linear-gradient(135deg, #C9A961, #e0c078);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  box-shadow: 0 12px 40px -6px rgba(201,169,97,.7);
  transition: all .35s cubic-bezier(.22,1,.36,1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
}
[dir="rtl"] .book-float-btn { right: 24px; left: auto; }
.book-float-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.book-float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px -6px rgba(201,169,97,.85);
}
.book-float-price {
  font-size: 14px;
  padding: 6px 12px;
  background: rgba(255,255,255,.22);
  border-radius: 30px;
  font-weight: 700;
}
.book-float-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

/* ========== Booking Modal ========== */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: bmFade .3s;
}
@keyframes bmFade { from { opacity: 0; } to { opacity: 1; } }
.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,18,24,.75);
  backdrop-filter: blur(8px);
}
.booking-modal-box {
  position: relative;
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  animation: bmSlide .4s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
@keyframes bmSlide {
  from { transform: translateY(40px) scale(.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.booking-modal-close {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: none;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .2s;
}
[dir="rtl"] .booking-modal-close { left: auto; right: 14px; }
.booking-modal-close:hover { background: rgba(255,255,255,.35); }

.booking-modal-header {
  background: linear-gradient(135deg, #1a1f2e, #2d3348);
  color: #fff;
  padding: 28px 24px;
  border-radius: 24px 24px 0 0;
  text-align: center;
}
.booking-modal-title {
  font-size: 13px;
  font-weight: 700;
  color: #C9A961;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.booking-modal-subtitle {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.booking-modal-price {
  font-size: 32px;
  font-weight: 900;
  color: #C9A961;
  line-height: 1;
}
.booking-modal-price small {
  font-size: 14px;
  font-weight: 600;
  opacity: .8;
}
.booking-modal-body {
  padding: 24px 24px 28px;
}
.booking-modal-body .form-group { margin-bottom: 14px; }
.booking-modal-body label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}
.booking-modal-body input,
.booking-modal-body textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e5e9f0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14.5px;
  background: #fafbfd;
  transition: all .2s;
}
.booking-modal-body input:focus,
.booking-modal-body textarea:focus {
  outline: none;
  border-color: #C9A961;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201,169,97,.15);
}
.booking-modal-body .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.btn-submit-booking {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #C9A961, #e0c078);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  transition: all .25s;
  box-shadow: 0 10px 30px -6px rgba(201,169,97,.5);
}
.btn-submit-booking:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -6px rgba(201,169,97,.7);
}
.btn-submit-booking:disabled { opacity: .7; cursor: wait; }
.booking-trust {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #f0f2f5;
  font-size: 12px;
  color: #6b7280;
}
.booking-trust span { display: inline-flex; align-items: center; gap: 5px; }
.booking-trust svg { color: #10b981; }

/* ========== Responsive ========== */
@media (max-width: 900px) {
  .trip-content-full { padding: 30px 0 120px; }
  .section-label-text { font-size: 19px; }
  .section-label-line { width: 30px; }

  .overview-clean { font-size: 15.5px; }
  .overview-clean .para-lead { font-size: 16.5px; padding-right: 14px; }

  .program-item {
    grid-template-columns: 70px 26px 1fr;
  }
  .program-time-col { padding: 18px 8px 18px 0; }
  .program-time { font-size: 11.5px; padding: 5px 9px; }
  .program-content-col { padding: 18px 0 18px 16px; }
  [dir="rtl"] .program-content-col { padding: 18px 16px 18px 0; }
  .program-title { font-size: 15px; }
  .program-desc { font-size: 13px; }

  .includes-clean { grid-template-columns: 1fr; gap: 14px; }
  .includes-block { padding: 20px 18px; }
  .includes-list li { font-size: 13.5px; }

  .gallery-clean {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
    gap: 8px;
  }
  .gallery-pos-0 { grid-column: span 2; grid-row: span 2; }
  .gallery-pos-4 { grid-column: span 2; }
  .gallery-pos-5 { grid-column: span 2; }

  .book-float-btn {
    bottom: calc(66px + 16px + env(safe-area-inset-bottom, 0px));
    right: 16px;
    left: 16px;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 14px;
  }
  [dir="rtl"] .book-float-btn { right: 16px; left: 16px; }
  .book-float-price { font-size: 13px; }
  .book-float-cta { font-size: 14px; }

  .booking-modal { padding: 12px; align-items: flex-end; }
  .booking-modal-box {
    border-radius: 20px 20px 0 0;
    max-height: 94vh;
    animation: bmSlideUp .4s cubic-bezier(.22,1,.36,1);
  }
  @keyframes bmSlideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
  }
  .booking-modal-header { padding: 22px 20px; }
  .booking-modal-price { font-size: 26px; }
  .booking-modal-body { padding: 20px 18px 26px; }
}

/* Dark */
[data-theme="dark"] .section-label-text { color: #fff; }
[data-theme="dark"] .overview-clean { color: var(--text); }
[data-theme="dark"] .overview-clean .para-lead { color: #fff; }
[data-theme="dark"] .program-content-col { border-bottom-color: var(--border); }
[data-theme="dark"] .program-title { color: #fff; }
[data-theme="dark"] .program-desc { color: var(--muted); }
[data-theme="dark"] .program-line-col::before { background: var(--border); }
[data-theme="dark"] .program-dot { background: var(--surface); }
[data-theme="dark"] .includes-block { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .includes-block h3 { color: #fff; }
[data-theme="dark"] .includes-list li { color: var(--muted); }
[data-theme="dark"] .includes-header { border-bottom-color: var(--border); }
[data-theme="dark"] .booking-modal-box { background: var(--surface); }
[data-theme="dark"] .booking-modal-body label { color: #fff; }
[data-theme="dark"] .booking-modal-body input,
[data-theme="dark"] .booking-modal-body textarea {
  background: rgba(255,255,255,.04);
  border-color: var(--border);
  color: var(--text);
}
[data-theme="dark"] .gallery-clean-item { background: var(--surface); }
[data-theme="dark"] .booking-trust { border-top-color: var(--border); }

/* ===================================================== */
/*   INCLUDES SHOWCASE — NEW DESIGN                       */
/* ===================================================== */

.inc-showcase {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* ========== Panel ========== */
.inc-panel {
  border-radius: 20px;
  padding: 28px 26px;
  border: 1px solid #f0f2f5;
  position: relative;
  overflow: hidden;
}
.inc-panel-yes {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 60%, #ffffff 100%);
  border-color: #bbf7d0;
}
.inc-panel-no {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 60%, #ffffff 100%);
  border-color: #fecaca;
}

/* Decorative corner */
.inc-panel::after {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  opacity: .08;
  pointer-events: none;
}
.inc-panel-yes::after { background: #10b981; }
.inc-panel-no::after  { background: #ef4444; }
[dir="rtl"] .inc-panel::after { left: auto; right: -50px; }

/* ========== Panel Head ========== */
.inc-panel-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.inc-panel-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,.2);
}
.inc-panel-yes .inc-panel-badge {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 8px 20px -6px rgba(16,185,129,.5);
}
.inc-panel-no .inc-panel-badge {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 8px 20px -6px rgba(239,68,68,.5);
}
.inc-panel-titles h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 3px;
  line-height: 1.2;
}
.inc-panel-sub {
  font-size: 12.5px;
  color: #6b7280;
  font-weight: 600;
}

/* ========== Chips Grid ========== */
.inc-chips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  position: relative;
  z-index: 1;
}

.inc-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid transparent;
  transition: all .3s cubic-bezier(.22,1,.36,1);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.inc-chip-yes {
  border-color: rgba(16,185,129,.15);
  box-shadow: 0 2px 8px -3px rgba(16,185,129,.15);
}
.inc-chip-no {
  border-color: rgba(239,68,68,.15);
  box-shadow: 0 2px 8px -3px rgba(239,68,68,.15);
}
.inc-chip:hover {
  transform: translateY(-3px);
}
.inc-chip-yes:hover {
  border-color: #10b981;
  box-shadow: 0 10px 24px -8px rgba(16,185,129,.4);
}
.inc-chip-no:hover {
  border-color: #ef4444;
  box-shadow: 0 10px 24px -8px rgba(239,68,68,.4);
}

/* Icon circle */
.inc-chip-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s;
}
.inc-chip-yes .inc-chip-icon {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46;
}
.inc-chip-no .inc-chip-icon {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  color: #991b1b;
}
.inc-chip-yes:hover .inc-chip-icon {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}
.inc-chip-no:hover .inc-chip-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}

/* Text */
.inc-chip-text {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

/* Check mark */
.inc-chip-mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.inc-chip-yes .inc-chip-mark {
  background: #10b981;
  color: #fff;
}
.inc-chip-no .inc-chip-mark {
  background: #ef4444;
  color: #fff;
}

/* ========== Responsive ========== */
@media (max-width: 900px) {
  .inc-panel { padding: 22px 18px; border-radius: 16px; }
  .inc-panel-head { gap: 12px; margin-bottom: 16px; }
  .inc-panel-badge { width: 44px; height: 44px; border-radius: 13px; }
  .inc-panel-titles h3 { font-size: 16px; }
  .inc-panel-sub { font-size: 11.5px; }

  .inc-chips { grid-template-columns: 1fr; gap: 8px; }
  .inc-chip { padding: 11px 12px; border-radius: 10px; }
  .inc-chip-icon { width: 32px; height: 32px; }
  .inc-chip-text { font-size: 13.5px; }
  .inc-chip-mark { width: 22px; height: 22px; font-size: 11px; }
}

/* Dark Mode */
[data-theme="dark"] .inc-panel-yes {
  background: linear-gradient(135deg, rgba(16,185,129,.08) 0%, rgba(16,185,129,.03) 100%);
  border-color: rgba(16,185,129,.25);
}
[data-theme="dark"] .inc-panel-no {
  background: linear-gradient(135deg, rgba(239,68,68,.08) 0%, rgba(239,68,68,.03) 100%);
  border-color: rgba(239,68,68,.25);
}
[data-theme="dark"] .inc-panel-titles h3 { color: #fff; }
[data-theme="dark"] .inc-panel-sub { color: var(--muted); }
[data-theme="dark"] .inc-chip {
  background: var(--surface);
  border-color: var(--border);
}
[data-theme="dark"] .inc-chip-text { color: #fff; }
[data-theme="dark"] .inc-chip-yes:hover { border-color: #10b981; }
[data-theme="dark"] .inc-chip-no:hover { border-color: #ef4444; }
[data-theme="dark"] .inc-chip-yes .inc-chip-icon {
  background: rgba(16,185,129,.18);
  color: #6ee7b7;
}
[data-theme="dark"] .inc-chip-no .inc-chip-icon {
  background: rgba(239,68,68,.18);
  color: #fca5a5;
}

/* ===================================================== */
/*   PREMIUM HERO SLIDER                                  */
/* ===================================================== */

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  max-height: 900px;
  overflow: hidden;
  background: #0a0d14;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.15);
  transition: opacity 1.8s ease-in-out, transform 12s ease-out;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide.leaving {
  opacity: 0;
  transform: scale(1.05);
}

/* Slide effect */
.hero-slider[data-effect="slide"] .hero-slide {
  opacity: 1;
  transform: translateX(100%);
  transition: transform 1.2s cubic-bezier(.7,0,.3,1), opacity .8s;
}
.hero-slider[data-effect="slide"] .hero-slide.active {
  transform: translateX(0);
  z-index: 2;
}
.hero-slider[data-effect="slide"] .hero-slide.leaving {
  transform: translateX(-100%);
  z-index: 1;
}

/* Ken Burns */
.hero-slider[data-effect="kenburns"] .hero-slide.active {
  animation: kenBurns 10s ease-out forwards;
}
@keyframes kenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.18) translate(-2%, -2%); }
}

/* Zoom + Fade */
.hero-slider[data-effect="zoom-fade"] .hero-slide {
  transform: scale(1.2);
  transition: opacity 1.5s ease-in-out, transform 10s ease-out;
}
.hero-slider[data-effect="zoom-fade"] .hero-slide.active {
  transform: scale(1);
}

/* ========== Overlay (gradient) ========== */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%),
    linear-gradient(to bottom, rgba(10,13,20,.55) 0%, rgba(10,13,20,.15) 30%, rgba(10,13,20,.35) 70%, rgba(10,13,20,.85) 100%);
  pointer-events: none;
}

/* ========== Content ========== */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 30px 120px;
}
.hero-content-inner {
  max-width: 900px;
  color: #fff;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 40px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #C9A961;
  margin-bottom: 26px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s cubic-bezier(.22,1,.36,1) .15s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #C9A961;
  border-radius: 50%;
  box-shadow: 0 0 12px #C9A961;
}

.hero-slider h1 {
  font-size: clamp(36px, 7vw, 82px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 26px;
  color: #fff;
  text-shadow: 0 8px 40px rgba(0,0,0,.5);
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 1.1s cubic-bezier(.22,1,.36,1) .3s forwards;
}
.hero-slider h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #C9A961 0%, #e8cf8f 50%, #C9A961 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-slider .hero-subtitle {
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.65;
  color: rgba(255,255,255,.85);
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1.1s cubic-bezier(.22,1,.36,1) .5s forwards;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1.1s cubic-bezier(.22,1,.36,1) .7s forwards;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 42px;
  background: linear-gradient(135deg, #C9A961, #e0c078);
  color: #1a1a1a;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: all .35s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 12px 40px -8px rgba(201,169,97,.7);
  letter-spacing: .3px;
}
.btn-hero-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px -8px rgba(201,169,97,.85);
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 34px;
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-3px);
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ========== Controls ========== */
.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  animation: heroFadeUp 1s 1s forwards;
}

.hero-nav {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s cubic-bezier(.22,1,.36,1);
}
.hero-nav:hover {
  background: #C9A961;
  border-color: #C9A961;
  transform: scale(1.12);
}
.hero-nav svg { width: 20px; height: 20px; }

.hero-counter {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  font-variant-numeric: tabular-nums;
  min-width: 60px;
  text-align: center;
}
.hero-counter .current {
  font-size: 22px;
  color: #C9A961;
  font-weight: 800;
}
.hero-counter .total {
  opacity: .6;
}

/* Progress bar */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,.1);
  z-index: 5;
  overflow: hidden;
}
.hero-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #C9A961, #e0c078);
  box-shadow: 0 0 20px rgba(201,169,97,.6);
  transition: width .15s linear;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  animation: heroFadeUp 1s 1.3s forwards, floatSlow 3s 2s infinite;
}
.hero-scroll-hint .mouse-icon {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-hint .mouse-icon::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: #C9A961;
  border-radius: 3px;
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* ========== Responsive ========== */
@media (max-width: 900px) {
  .hero-slider {
    height: auto;
    min-height: 82vh;
    max-height: 720px;
  }
  .hero-content { padding: 80px 20px 140px; }
  .hero-slider h1 { font-size: clamp(30px, 8vw, 42px); letter-spacing: -1px; margin-bottom: 18px; }
  .hero-slider .hero-subtitle { font-size: 14.5px; margin-bottom: 28px; }
  .hero-eyebrow { font-size: 10.5px; padding: 7px 14px; margin-bottom: 18px; }
  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; padding: 15px 26px; }
  .hero-controls { bottom: calc(66px + 24px + env(safe-area-inset-bottom, 0px)); gap: 14px; }
  .hero-nav { width: 40px; height: 40px; }
  .hero-nav svg { width: 17px; height: 17px; }
  .hero-counter { min-width: 50px; font-size: 12px; }
  .hero-counter .current { font-size: 18px; }
  .hero-scroll-hint { display: none; }
  .hero-slider[data-effect="kenburns"] .hero-slide.active { animation-duration: 12s; }
}

/* ============ Admin Hero Images Card ============ */
.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.btn-clear-all {
  padding: 8px 14px;
  background: #fee2e2;
  color: #991b1b;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 12.5px;
  cursor: pointer;
  transition: background .2s;
}
.btn-clear-all:hover { background: #fecaca; }

.empty-hero {
  padding: 50px 20px;
  text-align: center;
  background: #f8fafc;
  border: 2px dashed #e2e8f0;
  border-radius: 14px;
  color: #9ca3af;
  margin-bottom: 16px;
}

.hero-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}
.hero-image-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: grab;
  border: 2px solid transparent;
  background: #0a0d14;
  transition: all .25s;
}
.hero-image-card:hover { border-color: #C9A961; transform: translateY(-3px); }
.hero-image-card.dragging { opacity: .4; transform: scale(.95); cursor: grabbing; }
.hero-image-card img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.hero-image-num {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(0,0,0,.7);
  color: #fff;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  backdrop-filter: blur(6px);
}
.hero-image-first {
  position: absolute;
  top: 8px; right: 8px;
  background: #C9A961;
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 10.5px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(201,169,97,.5);
}
.hero-image-actions {
  position: absolute;
  bottom: 8px; right: 8px; left: 8px;
  display: flex;
  justify-content: space-between;
  gap: 6px;
  opacity: 0;
  transition: opacity .25s;
}
.hero-image-card:hover .hero-image-actions { opacity: 1; }
.hero-btn-star, .hero-btn-del {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  transition: all .2s;
}
.hero-btn-star:hover { background: #C9A961; color: #fff; }
.hero-btn-del { background: rgba(254,226,226,.95); }
.hero-btn-del:hover { background: #ef4444; color: #fff; }

.hero-upload-zone {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.hero-upload-label {
  width: 100%;
  padding: 22px;
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  background: #fafbfd;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all .2s;
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
}
.hero-upload-label:hover { border-color: #C9A961; background: #fffbf2; color: #1a1f2e; }
.hero-upload-icon { font-size: 24px; }

/* ============ Logo Transparent (Mobile fix) ============ */
.site-header { background: transparent; }
.site-header.scrolled { background: #fff; }

.site-logo img,
.site-logo-transparent {
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  mix-blend-mode: normal;
}

/* Mobile: صورة شفافة بدون خلفية */
@media (max-width: 900px) {
  .site-header {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
  }
  .site-header.scrolled {
    background: rgba(255,255,255,.95) !important;
    backdrop-filter: saturate(180%) blur(20px) !important;
    -webkit-backdrop-filter: saturate(180%) blur(20px) !important;
    border-bottom: 1px solid rgba(0,0,0,.05) !important;
  }
  .site-logo { background: transparent !important; }
  .site-logo img {
    background: transparent !important;
    background-color: transparent !important;
  }
}

/* الوضع الليلي */
[data-theme="dark"] .site-header { background: transparent; }
[data-theme="dark"] .site-header.scrolled {
  background: rgba(11,15,23,.95) !important;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

/* ============ ANTI-FLICKER FIX ============ */
img {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
img[loading="lazy"] {
  opacity: 1 !important;
  transition: none !important;
}
.trip-card-img img,
.blog-card-img img,
.gallery-clean-item img {
  opacity: 1 !important;
  transition: transform .8s cubic-bezier(.22,1,.36,1) !important;
}