*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --teal:#991357;
  --teal-dark:#ac2d6d;
  --blue:#1a6faf;
  --blue-light:#e8f4fd;
  --orange:#f5a623;
  --text:#282828;
  --text-sub:#717171;
  --border:#e4e4e4;
  --bg:#f7f7f7;
  --white:#fff;
  --radius:8px;
  --font:'IBM Plex Sans Arabic',sans-serif;
}
body{font-family:var(--font);color:var(--text);background:var(--white);direction:rtl;font-size:14px}
a{text-decoration:none;color:inherit}
button{font-family:var(--font);cursor:pointer}
img{display:block;max-width:100%}

.util-bar{background:#fff;border-bottom:1px solid var(--border);padding:0 16px;height:36px;display:flex;align-items:center;justify-content:center;font-size:12px;color:#555}
.util-inner{width:100%;max-width:1280px;display:flex;align-items:center;justify-content:flex-start;gap:8px}
.util-item{color:#555;display:flex;align-items:center;gap:6px;white-space:nowrap}
.util-item svg{width:15px;height:15px;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.util-item:hover{color:var(--teal)}
.util-inner>.util-item{order:1}
.util-options{order:2;display:flex;align-items:center;gap:8px;margin-inline-start:auto}
.util-choice{height:26px;padding:0 10px;border:1px solid var(--border);border-radius:999px;background:#fff;color:var(--text);font-weight:600;line-height:1}
.util-choice svg{width:16px;height:16px;stroke-width:1.8}
.util-choice:hover{border-color:var(--teal);background:#fdf7fa}

header{background:#fff;border-bottom:1px solid var(--border);position:sticky;top:0;z-index:200}
.header-inner{max-width:1280px;margin:0 auto;padding:0 20px;height:60px;display:flex;align-items:center;gap:24px}
.logo img{height:32px}
.logo-fallback{display:flex;align-items:center;gap:8px;width:116px;height:46px;background:url("../etw-new-mob-logo-png-300x118.png") center/contain no-repeat;flex-shrink:0}
.logo-fallback>.logo-mark,.logo-fallback>div{display:none}
.logo-fallback.has-uploaded-logo{width:auto;min-width:200px;background:none}
.header-logo-img{height:44px;width:auto;object-fit:contain;display:block}
.logo-mark{background:var(--teal);color:#fff;font-weight:800;font-size:18px;padding:4px 10px;border-radius:6px;letter-spacing:0}
.logo-tag{font-size:11px;color:var(--text-sub);line-height:1.2}
.header-nav{display:flex;align-items:center;gap:2px;margin-right:8px}
.header-nav a{padding:8px 14px;border-radius:6px;font-size:14px;font-weight:500;color:var(--text);transition:background .15s,color .15s;white-space:nowrap;display:flex;align-items:center;gap:7px}
.header-nav a:hover,.header-nav a.active{background:#f0faf9;color:var(--teal)}
.nav-icon{width:17px;height:17px;display:inline-flex;align-items:center;justify-content:center;flex:0 0 17px}
.nav-icon svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}
.nav-dropdown{position:relative}
.nav-dropdown summary{
  list-style:none;
  padding:8px 14px;
  border-radius:6px;
  font-size:14px;
  font-weight:500;
  color:var(--text);
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:7px;
  white-space:nowrap;
  transition:background .15s,color .15s;
}
.nav-dropdown summary::-webkit-details-marker{display:none}
.nav-dropdown summary .nav-chevron{width:15px;height:15px;margin-inline-start:2px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;transition:transform .15s}
.nav-dropdown[open] summary .nav-chevron{transform:rotate(180deg)}
.nav-dropdown summary:hover,
.nav-dropdown[open] summary{background:#f0faf9;color:var(--teal)}
.nav-dropdown-menu{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  z-index:300;
  min-width:190px;
  max-height:320px;
  overflow:auto;
  background:#fff;
  border:1px solid var(--border);
  border-radius:10px;
  box-shadow:0 16px 38px rgba(16,35,55,.16);
  padding:8px;
  display:grid;
  gap:2px;
}
.nav-dropdown-menu a{display:flex;padding:9px 12px;color:var(--text);text-shadow:none}
.nav-dropdown:hover .nav-dropdown-menu{display:grid}
.header-spacer{flex:1}
.header-right{display:flex;align-items:center;gap:10px}
.mobile-menu-check{display:none}
.mobile-menu-btn{display:none;width:40px;height:40px;border:1.5px solid var(--border);border-radius:8px;background:#fff;color:var(--text);align-items:center;justify-content:center;flex-shrink:0}
.mobile-menu-btn svg{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round}
.btn-help{padding:7px 14px;border:1.5px solid var(--border);border-radius:6px;font-size:13px;color:var(--text-sub);background:#fff;transition:border-color .15s}
.btn-help:hover{border-color:var(--teal);color:var(--teal)}
.btn-login{padding:7px 16px;border:1.5px solid var(--teal);border-radius:6px;font-size:13px;font-weight:600;color:var(--teal);background:#fff;transition:all .15s}
.btn-login:hover{background:var(--teal);color:#fff}
.btn-signup{padding:7px 16px;background:var(--teal);border:1.5px solid var(--teal);border-radius:6px;font-size:13px;font-weight:600;color:#fff;transition:background .15s}
.btn-signup:hover{background:var(--teal-dark)}

.page-home .util-bar{
  position:absolute;
  top:0;
  left:0;
  right:0;
  z-index:250;
  background:transparent;
  border-bottom:1px solid rgba(255,255,255,.18);
  color:#fff;
}
.page-home .util-item{color:rgba(255,255,255,.92)}
.page-home .util-item:hover{color:#fff}
.page-home .util-choice{border-color:rgba(255,255,255,.34);background:rgba(255,255,255,.12);color:#fff;backdrop-filter:blur(10px)}
.page-home .util-choice:hover{border-color:#fff;background:rgba(255,255,255,.18)}
.page-home header{
  position:absolute;
  top:36px;
  left:0;
  right:0;
  z-index:240;
  background:transparent;
  border-bottom:none;
}
.page-home .header-nav a{color:#fff;text-shadow:0 2px 10px rgba(0,0,0,.22)}
.page-home .nav-dropdown summary{color:#fff;text-shadow:0 2px 10px rgba(0,0,0,.22)}
.page-home .header-nav a:hover,
.page-home .header-nav a.active,
.page-home .nav-dropdown summary:hover,
.page-home .nav-dropdown[open] summary{background:rgba(255,255,255,.16);color:#fff}
.page-home .nav-dropdown-menu a{color:var(--text);text-shadow:none}
.page-home .btn-help{
  color:#fff;
  border-color:rgba(255,255,255,.55);
  background:rgba(255,255,255,.08);
}
.page-home .btn-help:hover{border-color:#fff;color:#fff}
.page-home .mobile-menu-btn{
  color:#fff;
  border-color:rgba(255,255,255,.55);
  background:rgba(255,255,255,.08);
}
.page-home .hero-wrap,
.page-home .hero-image-fallback{
  height:456px;
  min-height:456px;
}
.page-home .hero-text-overlay,
.page-home .hero-lottie{
  top:96px;
}

.hero-wrap{position:relative;background:#f4f7fb;height:360px;min-height:360px;overflow:hidden}
.hero-image{display:none}
.hero-image-fallback{
  width:100%;height:360px;
  background:#021027;
  position:relative;overflow:hidden;display:block;z-index:0;
}
.hero-image-fallback::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(circle at 50% 38%,rgba(255,255,255,.06) 0 18%,transparent 54%),
    linear-gradient(180deg,rgba(2,16,39,.06) 0%,rgba(2,16,39,.58) 100%),
    linear-gradient(90deg,rgba(153,19,87,.22) 0%,rgba(26,111,175,.1) 54%,rgba(2,16,39,.28) 100%);
  z-index:2;
}
.hero-image-fallback::after{
  content:'';position:absolute;inset:0;z-index:2;pointer-events:none;
  background:linear-gradient(0deg,rgba(2,16,39,.35),transparent 42%);
}
.hero-particle-scene{position:absolute;inset:0;overflow:hidden;z-index:1;background:#021027}
.hero-particle-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.92;
  -webkit-mask-image:radial-gradient(circle at 50% 42%,#fff 0%,#fff 30%,transparent 80%,transparent 100%);
  mask-image:radial-gradient(circle at 50% 42%,#fff 0%,#fff 30%,transparent 80%,transparent 100%);
}
.hero-circle-container{
  position:absolute;
  top:0;
  left:0;
  width:var(--size);
  height:var(--size);
  transform:translate3d(var(--from-x),var(--from-y),0);
  animation:heroParticleMove var(--duration) linear var(--delay) infinite;
  will-change:transform;
}
.hero-circle{
  display:block;
  width:100%;
  height:100%;
  border-radius:50%;
  mix-blend-mode:screen;
  background-image:radial-gradient(hsl(180,100%,80%),hsl(180,100%,80%) 10%,hsla(180,100%,80%,0) 56%);
  animation:heroParticleFade 200ms ease-in-out infinite,heroParticleScale 2s ease-in-out var(--pulse-delay) infinite;
}
@keyframes heroParticleMove{
  from{transform:translate3d(var(--from-x),var(--from-y),0)}
  to{transform:translate3d(var(--to-x),var(--to-y),0)}
}
@keyframes heroParticleFade{
  0%,100%{opacity:1}
  50%{opacity:.7}
}
@keyframes heroParticleScale{
  0%,100%{transform:scale3d(.4,.4,1)}
  50%{transform:scale3d(2.2,2.2,1)}
}
@media(prefers-reduced-motion:reduce){
  .hero-circle-container,
  .hero-circle{animation:none}
}
.hero-image-fallback .hero-city-strip{display:none}
.hero-text-overlay{
  position:absolute;top:0;right:max(48px,calc((100vw - 1280px) / 2 + 48px));bottom:120px;z-index:5;
  width:min(560px,calc(50vw - 72px));max-width:none;margin:0;padding:0;
  display:flex;flex-direction:column;align-items:flex-start;justify-content:center;
  color:#fff;text-align:right;
}
.hero-text-overlay h1{font-size:42px;line-height:1.25;font-weight:800;margin-bottom:12px;max-width:680px;text-shadow:0 8px 28px rgba(0,0,0,.32)}
.hero-brand{
  display:block;
  color:#ffd166;
  font-size:clamp(46px,5.4vw,74px);
  line-height:1.08;
  font-weight:900;
  text-shadow:0 10px 30px rgba(0,0,0,.36),0 0 18px rgba(255,209,102,.22);
}
.hero-text-overlay p{font-size:17px;line-height:1.8;opacity:.96;font-weight:500;max-width:690px;text-shadow:0 3px 14px rgba(0,0,0,.28)}
.hero-desc-text{display:inline}
.hero-years{display:inline;font-size:inherit;line-height:inherit;font-weight:inherit;color:inherit;margin:0;text-shadow:inherit}
.hero-lottie{
  position:absolute;
  left:max(48px,calc((100vw - 1280px) / 2 + 48px));
  top:0;
  bottom:40px;
  width:min(620px,calc(50vw - 36px));
  height:auto;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  z-index:5;
  pointer-events:none;
}
.hero-main-img{position:relative;z-index:1;display:block;width:min(100%,520px);height:auto;max-height:100%;object-fit:contain}

.hero-benefits-wrap{max-width:1292px;margin:0 auto 28px;padding:0 48px;position:relative;z-index:45}
.hero-benefits{
  width:100%;max-width:100%;margin-inline:auto;background:#fff;border:none;border-radius:0;
  padding:10px 0 8px;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:26px;color:#071b35;box-shadow:none;
}
.hero-benefit{display:flex;flex-direction:column;align-items:center;justify-content:flex-start;gap:8px;text-align:center;min-width:0}
.benefit-img{
  width:clamp(120px,16vw,190px);
  height:auto;
  object-fit:contain;
  display:block;
}
.hero-benefit h3{
  font-size:16px;
  line-height:1.45;
  font-weight:800;
  letter-spacing:0;
  color:#071b35;
}
.hero-benefit p{display:none}
.benefit-icon{width:42px;height:42px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.benefit-icon svg{width:42px;height:42px;display:block}
.hero-benefit .benefit-icon{display:none}

.home-action-wrap{max-width:1280px;margin:0 auto 24px;padding:0 20px}
.home-action-card{
  position:relative;
  min-height:118px;
  overflow:hidden;
  border:1px solid #efc9dd;
  border-radius:8px;
  background:
    linear-gradient(90deg,rgba(248,234,242,.55),rgba(255,255,255,.96) 38%,rgba(232,244,253,.55)),
    #fff;
  display:grid;
  grid-template-columns:230px minmax(0,1fr) 230px;
  align-items:center;
  gap:22px;
  padding:18px 28px;
}
.home-action-card::before{
  content:'';
  position:absolute;
  inset:0 auto 0 0;
  width:34%;
  background:linear-gradient(90deg,rgba(153,19,87,.1),rgba(153,19,87,0));
  pointer-events:none;
}
.home-action-media{position:relative;z-index:1;justify-self:end;align-self:stretch;display:flex;align-items:flex-end;justify-content:flex-end;max-height:116px}
.home-action-media img{width:190px;max-height:118px;object-fit:contain;filter:drop-shadow(0 10px 18px rgba(34,72,126,.12))}
.home-action-copy{position:relative;z-index:1;text-align:center}
.home-action-copy h2{font-size:24px;line-height:1.35;font-weight:900;color:var(--teal);margin-bottom:8px}
.home-action-copy ul{list-style:none;display:grid;gap:5px;justify-content:center}
.home-action-copy li{position:relative;font-size:14px;line-height:1.55;color:#344054;padding-inline-start:22px;text-align:right}
.home-action-copy li::before{content:'\2713';position:absolute;inset-inline-start:0;top:0;color:var(--teal);font-weight:900}
.home-action-btn{
  position:relative;
  z-index:1;
  justify-self:start;
  min-width:180px;
  height:44px;
  border-radius:999px;
  background:var(--teal);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:14px;
  font-weight:900;
  box-shadow:0 8px 18px rgba(153,19,87,.22);
  transition:transform .15s,background .15s,box-shadow .15s;
}
.home-action-btn:hover{background:var(--teal-dark);transform:translateY(-1px);box-shadow:0 10px 22px rgba(153,19,87,.28)}
.home-action-btn svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

.search-card-wrap{max-width:1292px;margin:-92px auto 40px;padding:0 48px;position:relative;z-index:50}
.search-mascot{
  position:absolute;
  left:86px;
  top:-150px;
  z-index:3;
  width:190px;
  height:auto;
  pointer-events:none;
  filter:drop-shadow(0 18px 24px rgba(18,36,50,.18));
}
.search-card{background:transparent;border-radius:0;box-shadow:none;border:none;overflow:visible}
.stabs{display:flex;justify-content:flex-start;gap:8px;border-bottom:none;padding:0 0 12px;background:transparent}
.stab{
  flex:0 0 auto;min-width:156px;height:46px;display:flex;flex-direction:row;align-items:center;justify-content:center;
  gap:8px;padding:0 18px;border:1px solid rgba(255,255,255,.52);background:rgba(255,255,255,.2);
  font-family:var(--font);font-size:14px;font-weight:800;color:#fff;
  border-radius:14px;backdrop-filter:blur(10px);margin-bottom:0;transition:all .15s;cursor:pointer;
}
.stab svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:1.8}
.stab.active{background:#fff;color:var(--teal);font-weight:800;border-color:#fff;box-shadow:0 12px 28px rgba(18,36,50,.16)}
.stab:hover:not(.active){background:rgba(255,255,255,.32);color:#fff}
.sfields{position:relative;display:grid;grid-template-columns:1.25fr 1fr 1fr 188px;gap:0;background:#fff;border-radius:22px;padding:0;align-items:stretch;box-shadow:0 14px 34px rgba(41,68,92,.12);border:1px solid #d9e5ed;overflow:visible;isolation:isolate}
.sfield{display:flex;flex-direction:column;gap:0;position:relative;min-width:0}
.sfield + .sfield{border-right:1px solid #e0e8ee}
.sfields>.sfield:first-child .sfield-inner{border-radius:0 22px 22px 0}
.sfield-date-inner{z-index:3}
.sfield-date-inner.is-open{z-index:20}
.search-submit-cell{min-width:0}
.sfield label{display:block;position:absolute;top:15px;right:56px;z-index:2;font-size:11px;font-weight:600;color:#385069;line-height:1;white-space:nowrap}
.sfield-inner{position:relative;min-height:70px;padding:24px 56px 12px 18px;border:0;border-radius:0;cursor:pointer;display:flex;align-items:center;justify-content:flex-start;gap:12px;background:#fff;transition:background .15s,box-shadow .15s}
.sfield-placeholder{font-size:16px;color:#111827;font-weight:500;line-height:1.35;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.sfield-select{
  width:100%;
  min-width:0;
  border:0;
  outline:0;
  background:transparent;
  color:#111827;
  font-family:var(--font);
  font-size:16px;
  font-weight:600;
  line-height:1.35;
  cursor:pointer;
  appearance:none;
  -webkit-appearance:none;
  padding:0 0 0 26px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.sfield-inner::after{
  content:'';
  position:absolute;
  left:18px;
  top:50%;
  width:8px;
  height:8px;
  border-left:2px solid #7b8794;
  border-bottom:2px solid #7b8794;
  transform:translateY(-70%) rotate(-45deg);
  pointer-events:none;
}
.sfield-date-inner::after{display:none}
.sfield-select option{font-weight:500;color:#111827;background:#fff}
.sfield-date-display{direction:rtl;text-align:right}
.arabic-calendar{
  display:none;
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  z-index:90;
  width:318px;
  max-width:calc(100vw - 28px);
  background:#fff;
  border:1px solid #d9e5ed;
  border-radius:12px;
  box-shadow:0 18px 42px rgba(16,35,55,.18);
  padding:12px;
  color:#111827;
}
.sfield-date-inner.is-open .arabic-calendar{display:block}
.calendar-head{display:grid;grid-template-columns:34px 1fr 34px;align-items:center;gap:8px;margin-bottom:10px}
.calendar-title{text-align:center;font-size:14px;font-weight:800;color:#1f2937}
.calendar-nav{width:34px;height:34px;border:1px solid #e0e8ee;border-radius:8px;background:#fff;color:var(--teal);font-size:18px;font-weight:800;line-height:1}
.calendar-nav:hover{background:#f8eaf2;border-color:#efc9dd}
.calendar-weekdays,.calendar-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:4px}
.calendar-weekdays span{text-align:center;font-size:11px;font-weight:800;color:#667085;padding:5px 0}
.calendar-day{
  height:34px;
  border:0;
  border-radius:8px;
  background:#fff;
  color:#1f2937;
  font-family:var(--font);
  font-size:13px;
  font-weight:700;
}
.calendar-day:hover{background:#f8eaf2;color:var(--teal)}
.calendar-day.is-today{box-shadow:inset 0 0 0 1px #efc9dd}
.calendar-day.is-selected{background:var(--teal);color:#fff}
.calendar-day.is-disabled{color:#c2c7cf;background:#f8fafc;cursor:not-allowed}
.calendar-day.is-empty{visibility:hidden}
.sfield-inner:focus-within{background:#fbfdff;box-shadow:inset 0 0 0 2px rgba(153,19,87,.12)}
.sfield-icon{width:30px;height:30px;color:var(--teal);background:#f8eaf2;border:1px solid #efc9dd;border-radius:12px;display:flex;align-items:center;justify-content:center;position:absolute;right:18px;top:50%;transform:translateY(-50%);flex-shrink:0}
.sfield-icon svg{width:100%;height:100%;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.btn-search-main{
  width:100%;height:70px;background:linear-gradient(135deg,var(--teal) 0%,var(--teal-dark) 100%);border:none;border-radius:0;
  color:#fff;font-family:var(--font);font-size:17px;font-weight:800;
  padding:0 26px;white-space:nowrap;transition:background .15s,transform .1s,box-shadow .15s;
  box-shadow:none;display:flex;align-items:center;justify-content:center;gap:10px;
}
.search-submit-cell .btn-search-main{border-radius:22px 0 0 22px}
.btn-search-main:hover{background:linear-gradient(135deg,var(--teal-dark) 0%,var(--teal) 100%)}
.btn-search-main svg{width:20px;height:20px;fill:none;stroke:#fff;stroke-width:2}
.inline-icon{width:15px;height:15px;display:inline-block;vertical-align:-3px;flex-shrink:0}
.inline-icon svg{width:100%;height:100%;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.inline-icon.fill svg{fill:currentColor;stroke:none}
.pkg-dest,.pkg-includes span,.phone-offer,.footer-contact a{display:flex;align-items:center;gap:5px}
.pkg-dest .inline-icon{color:var(--teal)}
.pkg-includes .inline-icon{color:var(--teal)}

.page-body{max-width:1280px;margin:0 auto;padding:0px 20px}
.sec-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px}
.sec-head h2{font-size:20px;font-weight:700;color:var(--text)}
.sec-head a{font-size:13px;color:var(--teal);font-weight:500}
.sec-head a:hover{text-decoration:underline}
.slider-actions{display:flex;align-items:center;gap:8px}
.slider-nav{
  width:34px;
  height:34px;
  border:1px solid var(--border);
  border-radius:8px;
  background:#fff;
  color:var(--teal);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:background .15s,border-color .15s,color .15s;
}
.slider-nav:hover{background:#f8eaf2;border-color:#efc9dd}
.slider-nav.swiper-button-disabled{opacity:.38;cursor:not-allowed}
.slider-nav svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round}

.dest-scroll{display:block;overflow:hidden;direction:ltr;padding:4px 0 10px}
.dest-scroll-track{--dest-loop-count:6;display:flex;width:max-content;animation:destMarquee 90s linear infinite;will-change:transform}
.dest-scroll-set{display:flex;gap:14px;flex:0 0 auto;padding-inline-end:14px}
.dest-scroll:hover .dest-scroll-track{animation-play-state:paused}
.dest-card{flex:0 0 298px;border-radius:10px;overflow:hidden;position:relative;height:170px;cursor:pointer;transition:transform .25s,box-shadow .25s;box-shadow:0 2px 8px rgba(0,0,0,.1);direction:rtl}
.dest-card:hover{transform:translateY(-3px);box-shadow:0 8px 24px rgba(0,0,0,.18)}
.dest-card .dc-bg{position:absolute;inset:0;background-size:cover;background-position:center;transition:transform .4s}
.dest-card:hover .dc-bg{transform:scale(1.05)}
.dest-card .dc-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.6) 0%,rgba(0,0,0,.05) 50%,transparent)}
.dest-card .dc-info{position:absolute;bottom:0;right:0;padding:14px;color:#fff}
.dest-card .dc-info .city{font-size:18px;font-weight:700}
.dest-card .dc-info .country{font-size:12px;opacity:.85;margin-top:2px}
.dest-badge-hot{position:absolute;top:10px;right:10px;background:#e74c3c;color:#fff;font-size:10px;font-weight:700;padding:3px 8px;border-radius:20px}
.dest-badge-new{position:absolute;top:10px;right:10px;background:var(--teal);color:#fff;font-size:10px;font-weight:700;padding:3px 8px;border-radius:20px}
@keyframes destMarquee{
  from{transform:translateX(0)}
  to{transform:translateX(calc(-100% / var(--dest-loop-count)))}
}

.promo-banner{
  background:linear-gradient(135deg,#004e7c 0%,#006994 40%,#0085bd 100%);
  border-radius:12px;padding:28px 36px;display:flex;align-items:center;gap:28px;position:relative;overflow:hidden;margin:36px 0;
}
.promo-banner::before{content:'';position:absolute;left:-20px;top:-40px;width:220px;height:220px;background:rgba(255,255,255,.05);border-radius:50%}
.promo-txt{flex:1;color:#fff}
.promo-txt h3{font-size:20px;font-weight:700;margin-bottom:6px}
.promo-txt p{font-size:13px;opacity:.85;line-height:1.6}
.promo-cta{flex-shrink:0;display:flex;flex-direction:column;gap:10px;align-items:flex-end}
.btn-promo{padding:11px 26px;background:#fff;border:none;border-radius:8px;font-family:var(--font);font-size:14px;font-weight:700;color:#004e7c;cursor:pointer;transition:all .15s;white-space:nowrap}
.btn-promo:hover{background:#f0f9f8;color:var(--teal)}
.promo-app{display:flex;gap:8px}
.app-pill{display:flex;align-items:center;gap:6px;background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.3);border-radius:6px;padding:6px 12px;cursor:pointer;transition:background .15s}
.app-pill:hover{background:rgba(255,255,255,.25)}
.app-pill svg{width:18px;height:18px;fill:#fff}
.app-pill span{font-size:12px;font-weight:600;color:#fff}

.pkg-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.packages-slider,.articles-slider{overflow:hidden;padding:2px 2px 18px}
.packages-slider .pkg-grid,.articles-slider .blog-grid{display:flex;gap:0}
.packages-slider .swiper-slide,.articles-slider .swiper-slide{height:auto}
.packages-slider .pkg-card,.articles-slider .blog-card{height:100%}
.pkg-card{display:block;background:#fff;color:inherit;text-decoration:none;border-radius:10px;overflow:hidden;border:1px solid var(--border);transition:box-shadow .2s,transform .2s;cursor:pointer}
.pkg-card:hover{box-shadow:0 8px 28px rgba(0,0,0,.13);transform:translateY(-3px)}
.pkg-card:focus-visible{outline:3px solid rgba(0,105,148,.28);outline-offset:3px}
.pkg-img{height:180px;background-size:cover;background-position:center;position:relative}
.pkg-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.55) 0%,transparent 55%)}
.pkg-img-info{position:absolute;bottom:0;left:0;right:0;padding:10px 12px;display:flex;justify-content:space-between;align-items:flex-end}
.pkg-nights-badge{background:rgba(0,0,0,.6);color:#fff;font-size:11px;font-weight:700;padding:3px 9px;border-radius:20px;backdrop-filter:blur(4px)}
.pkg-discount{background:#e74c3c;color:#fff;font-size:11px;font-weight:700;padding:3px 9px;border-radius:20px}
.pkg-discount.best{background:var(--teal)}
.pkg-discount.luxury{background:#8e44ad}
.pkg-body{padding:14px}
.pkg-dest{font-size:12px;color:var(--text-sub);margin-bottom:4px;font-weight:600}
.pkg-body h3{font-size:15px;font-weight:700;margin-bottom:10px;line-height:1.3}
.pkg-includes{display:flex;flex-wrap:wrap;gap:5px;margin-bottom:12px}
.pkg-includes span{font-size:11px;background:#f5f5f5;border-radius:4px;padding:3px 7px;color:#555}
.pkg-footer{display:flex;align-items:center;justify-content:space-between;padding-top:10px;border-top:1px solid #f0f0f0}
.pkg-price{display:flex;flex-direction:column;gap:1px}
.old-price{font-size:11px;color:#aaa;text-decoration:line-through}
.new-price{font-size:17px;font-weight:800;color:var(--teal);line-height:1}
.per-person{font-size:10px;color:#aaa}
.btn-book-pkg{padding:7px 14px;background:var(--teal);border:none;border-radius:7px;color:#fff;font-family:var(--font);font-size:12px;font-weight:700;cursor:pointer;transition:background .15s;white-space:nowrap}
.btn-book-pkg:hover{background:var(--teal-dark)}
.pkg-card:hover .btn-book-pkg{background:var(--teal-dark)}

.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.blog-card{display:flex;flex-direction:column}
.blog-card{background:#fff;border-radius:10px;overflow:hidden;border:1px solid var(--border);transition:box-shadow .2s,transform .2s;cursor:pointer}
.blog-body{display:flex;flex-direction:column;flex:1}
.blog-meta{margin-top:auto}
.blog-card:hover{box-shadow:0 6px 20px rgba(0,0,0,.1);transform:translateY(-2px)}
.blog-img{height:170px;background-size:cover;background-position:center}
.blog-body{padding:16px}
.blog-tag{display:inline-block;background:#e8f8f6;color:var(--teal);font-size:11px;font-weight:700;padding:3px 9px;border-radius:20px;margin-bottom:8px}
.blog-body h4{font-size:15px;font-weight:700;margin-bottom:6px;line-height:1.4}
.blog-body p{font-size:12px;color:var(--text-sub);line-height:1.6;margin-bottom:10px}
.blog-meta{display:flex;justify-content:space-between;font-size:11px;color:#aaa;padding-top:8px;border-top:1px solid #f0f0f0}

.info-section{background:#fafafa;border-top:1px solid var(--border);padding:46px 20px 50px}
.info-inner{max-width:1280px;margin:0 auto}
.info-head{max-width:620px;margin:0 auto 26px;text-align:center}
.info-kicker{display:inline-block;margin-bottom:8px;color:var(--teal);font-size:12px;font-weight:800}
.info-head h2{font-size:24px;line-height:1.4;font-weight:800;color:var(--text);margin-bottom:8px}
.info-head p{font-size:14px;line-height:1.8;color:var(--text-sub)}
.info-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.info-item{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:12px;
  min-height:190px;
  padding:24px 18px 22px;
  border:1px solid #edf0f3;
  border-radius:12px;
  background:#fff;
  box-shadow:0 10px 24px rgba(41,68,92,.06);
  transition:transform .15s,border-color .15s,box-shadow .15s;
}
.info-item:hover{transform:translateY(-3px);border-color:#efc9dd;box-shadow:0 14px 30px rgba(41,68,92,.1)}
.info-count{
  position:absolute;
  top:12px;
  left:14px;
  color:#e8edf2;
  font-size:24px;
  line-height:1;
  font-weight:900;
}
.info-icon{width:58px;height:58px;border-radius:16px;background:#f8eaf2;color:var(--teal);display:flex;align-items:center;justify-content:center}
.info-icon svg{width:27px;height:27px;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.info-item h3{font-size:15px;line-height:1.45;font-weight:800;color:var(--text)}
.info-item p{font-size:13px;color:#777;line-height:1.7}

.home-faq-section{background:#fff;padding:46px 20px 56px}
.home-faq-inner{max-width:1040px;margin:0 auto}
.home-faq-head{max-width:620px;margin:0 auto 24px;text-align:center}
.home-faq-head span{display:inline-block;margin-bottom:8px;color:var(--teal);font-size:12px;font-weight:800}
.home-faq-head h2{font-size:24px;line-height:1.4;font-weight:800;color:var(--text);margin-bottom:8px}
.home-faq-head p{font-size:14px;line-height:1.8;color:var(--text-sub)}
.home-faq-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.home-faq-item{border:1px solid #edf0f3;border-radius:10px;background:#fff;overflow:hidden;box-shadow:0 8px 20px rgba(41,68,92,.05)}
.home-faq-item summary{
  list-style:none;
  min-height:58px;
  padding:15px 18px;
  font-size:14px;
  font-weight:800;
  color:var(--text);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.home-faq-item summary::-webkit-details-marker{display:none}
.home-faq-item summary::after{
  content:'+';
  width:24px;
  height:24px;
  border-radius:50%;
  background:#f8eaf2;
  color:var(--teal);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  font-weight:900;
}
.home-faq-item[open] summary::after{content:'-'}
.home-faq-item p{padding:0 18px 16px;color:var(--text-sub);line-height:1.8;font-size:13px}

.app-section{background:#f0faf9;border:1px solid #c8ede9;border-radius:12px;padding:32px 36px;margin:40px 0;display:flex;align-items:center;gap:40px;overflow:hidden}
.app-sec-right{flex:1;display:flex;align-items:center;gap:20px}
.app-icon-wrap{flex-shrink:0}
.app-icon-box{width:80px;height:80px;border-radius:18px;overflow:hidden;box-shadow:0 4px 16px rgba(0,176,155,.25)}
.app-sec-txt h2{font-size:18px;font-weight:700;margin-bottom:8px;color:var(--text)}
.app-sec-txt>p{font-size:13px;color:var(--text-sub);line-height:1.7;margin-bottom:16px}
.app-store-btns{display:flex;gap:10px;margin-bottom:12px}
.store-btn{display:flex;align-items:center;gap:10px;background:#1a1a2a;border-radius:8px;padding:9px 16px;color:#fff;transition:background .15s}
.store-btn:hover{background:#333}
.app-sub{font-size:12px;color:#888;margin-top:4px}
.app-sec-img{flex-shrink:0}
.phone-mockup{width:160px;background:#1a1a2a;border-radius:24px;padding:10px;box-shadow:0 12px 40px rgba(0,0,0,.25)}
.phone-screen{background:#fff;border-radius:16px;overflow:hidden;min-height:200px}

footer{background:#1a1a2a;color:rgba(255,255,255,.75);padding:48px 20px 0}
.footer-inner{max-width:1280px;margin:0 auto}
.footer-top{display:grid;grid-template-columns:2.2fr 1fr 1fr 1fr 1fr;gap:36px;padding-bottom:36px;border-bottom:1px solid rgba(255,255,255,.08)}
.footer-brand .flogo{display:flex;align-items:center;gap:10px;margin-bottom:14px}
.footer-logo-img{height:50px;width:auto;max-width:180px;object-fit:contain}
.footer-brand .logo-mark{background:var(--teal);color:#fff;font-weight:800;font-size:17px;padding:4px 10px;border-radius:6px}
.footer-brand .logo-name{color:#fff;font-size:18px;font-weight:700}
.footer-brand p{font-size:12px;line-height:1.8;color:rgba(255,255,255,.55);max-width:260px}
.footer-contact{margin-top:16px;display:flex;flex-direction:column;gap:8px}
.footer-contact a{font-size:13px;color:rgba(255,255,255,.65);display:flex;align-items:center;gap:6px}
.footer-contact a:hover{color:#fff}
.fcol h4{font-size:13px;font-weight:700;color:#fff;margin-bottom:14px}
.fcol ul{list-style:none;display:flex;flex-direction:column;gap:9px}
.fcol ul li a,.fcol ul li span{font-size:13px;color:rgba(255,255,255,.55);transition:color .15s}
.fcol ul li a:hover{color:#fff}
.footer-bottom{padding:20px 0;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px}
.footer-bottom p{font-size:11px;color:rgba(255,255,255,.35);line-height:1.6}
.pay-icons{display:flex;gap:8px;align-items:center}
.pay-icon{background:rgba(255,255,255,.1);border-radius:4px;padding:4px 10px;font-size:11px;font-weight:700;color:rgba(255,255,255,.65)}
.footer-social{display:flex;gap:8px;margin-top:18px}
.fsoc{width:34px;height:34px;border-radius:8px;background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.7);font-size:14px;font-weight:700;transition:background .15s;cursor:pointer}
.fsoc:hover{background:var(--teal)}

.section-gap{margin-bottom:40px}

.btn-view{font-size:12px;font-weight:600;color:var(--teal);padding:5px 12px;border:1.5px solid var(--teal);border-radius:6px;background:#fff;transition:all .15s;font-family:var(--font)}
.btn-view:hover{background:var(--teal);color:#fff}

.country-hero{position:relative;min-height:390px;background-size:cover;background-position:center;overflow:hidden}
.country-hero::before{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(22,28,39,.82),rgba(22,28,39,.42),rgba(153,19,87,.38))}
.country-hero-inner{position:relative;z-index:1;max-width:1280px;margin:0 auto;padding:70px 20px 46px;color:#fff}
.crumb{display:flex;gap:8px;align-items:center;font-size:13px;opacity:.88;margin-bottom:22px}
.crumb a:hover{text-decoration:underline}
.country-hero h1{font-size:44px;line-height:1.25;font-weight:800;margin-bottom:12px;text-shadow:0 8px 28px rgba(0,0,0,.26)}
.country-hero p{font-size:17px;line-height:1.8;max-width:680px;opacity:.96}
.hero-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:24px}
.btn-primary,.btn-secondary{border:none;border-radius:8px;padding:11px 22px;font-size:14px;font-weight:800;display:inline-flex;align-items:center;justify-content:center;white-space:nowrap}
.btn-primary{background:var(--teal);color:#fff}
.btn-primary:hover{background:var(--teal-dark)}
.btn-secondary{background:#fff;color:var(--teal);border:1.5px solid var(--teal)}
.quick-panel{max-width:1280px;margin:-34px auto 42px;padding:0 20px;position:relative;z-index:2}
.quick-grid{background:#fff;border:1px solid var(--border);border-radius:12px;box-shadow:0 14px 34px rgba(41,68,92,.12);display:grid;grid-template-columns:repeat(4,1fr);overflow:hidden}
.quick-item{padding:18px 20px;border-left:1px solid #f0f0f0;display:grid;grid-template-columns:42px minmax(0,1fr);align-items:center;gap:12px}
.quick-item:last-child{border-left:none}
.quick-icon{width:42px;height:42px;border-radius:11px;background:#eaf7f8;color:var(--teal);display:flex;align-items:center;justify-content:center}
.quick-icon svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.quick-label{font-size:12px;color:var(--text-sub);margin-bottom:5px}
.quick-value{font-size:16px;font-weight:800;color:var(--text)}
.country-page-body{padding-bottom:64px}

.about-layout{display:grid;grid-template-columns:1.25fr .75fr;gap:22px;align-items:stretch}
.about-text{border:1px solid var(--border);border-radius:10px;padding:24px;background:#fff}
.about-text h2{font-size:22px;margin-bottom:12px}
.about-text p{font-size:14px;color:var(--text-sub);line-height:1.9;margin-bottom:12px}
.about-list{display:grid;gap:10px;margin-top:16px}
.about-list li{list-style:none;background:#fafafa;border:1px solid #ededed;border-radius:8px;padding:10px 12px;font-size:13px;color:#555}
.side-photo{border-radius:10px;background-size:cover;background-position:center;min-height:330px;position:relative;overflow:hidden}
.side-photo span{position:absolute;bottom:14px;right:14px;background:rgba(0,0,0,.58);color:#fff;border-radius:20px;padding:6px 12px;font-size:12px;font-weight:700}

.faq-wrap{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.faq-item{border:1px solid var(--border);border-radius:10px;background:#fff;overflow:hidden}
.faq-item summary{list-style:none;padding:16px 18px;font-weight:800;cursor:pointer;display:flex;justify-content:space-between;gap:12px}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:'+';width:24px;height:24px;border-radius:50%;background:#f8eaf2;color:var(--teal);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.faq-item[open] summary::after{content:'-'}
.faq-item p{padding:0 18px 16px;color:var(--text-sub);line-height:1.8;font-size:13px}

.cta-band{background:linear-gradient(135deg,#004e7c,#006994 44%,var(--teal));border-radius:12px;padding:28px 34px;color:#fff;display:flex;align-items:center;justify-content:space-between;gap:20px;margin-top:8px}
.cta-band h2{font-size:22px;margin-bottom:6px}
.cta-band p{font-size:13px;opacity:.86;line-height:1.7}

.gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-bottom:30px}
.gallery-grid img{width:100%;height:160px;object-fit:cover;border-radius:10px}

.trip-top{max-width:1280px;margin:0 auto;padding:28px 20px 22px}
.trip-title-row{display:grid;grid-template-columns:1fr auto;gap:20px;align-items:end;margin-bottom:18px}
.trip-title h1{font-size:34px;line-height:1.25;font-weight:800;margin-bottom:8px}
.trip-title p{font-size:15px;line-height:1.8;color:var(--text-sub);max-width:760px}
.hero-meta{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}
.meta-pill{background:#f8eaf2;border:1px solid #efc9dd;color:var(--teal);border-radius:22px;padding:7px 12px;font-size:12px;font-weight:800}
.photo-grid{position:relative;display:grid;grid-template-columns:2fr 1fr 1fr;grid-template-rows:190px 190px;gap:8px;border-radius:12px;overflow:hidden;background:#eee}
.photo-tile{position:relative;background-size:cover;background-position:center;min-height:160px;overflow:hidden}
.photo-tile::after{content:'';position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.28),transparent 54%);opacity:.72}
.photo-tile.main{grid-row:span 2}
.photo-label{position:absolute;right:14px;bottom:12px;z-index:1;background:rgba(0,0,0,.58);color:#fff;border-radius:20px;padding:6px 12px;font-size:12px;font-weight:800}
.photo-count{position:absolute;left:14px;bottom:12px;z-index:2;background:#fff;color:var(--text);border:1px solid rgba(0,0,0,.08);border-radius:9px;padding:9px 13px;font-family:var(--font);font-size:12px;font-weight:800;box-shadow:0 8px 22px rgba(0,0,0,.18);display:inline-flex;align-items:center;gap:7px;cursor:pointer;transition:color .15s,transform .15s,box-shadow .15s}
.photo-count:hover{color:var(--teal);transform:translateY(-2px);box-shadow:0 10px 26px rgba(0,0,0,.24)}
.photo-count svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:1.8}
.package-gallery-modal{width:min(1050px,calc(100vw - 32px));max-height:88vh;margin:auto;padding:0;border:0;border-radius:16px;background:#fff;color:var(--text);box-shadow:0 24px 70px rgba(0,0,0,.28);overflow:hidden}
.package-gallery-modal::backdrop{background:rgba(15,23,34,.78);backdrop-filter:blur(3px)}
.package-gallery-head{position:sticky;top:0;z-index:2;display:flex;align-items:center;justify-content:space-between;gap:16px;padding:16px 20px;background:#fff;border-bottom:1px solid var(--border)}
.package-gallery-head h2{font-size:19px}
.package-gallery-head button{width:36px;height:36px;border:0;border-radius:50%;background:#f3f3f3;color:var(--text);font-size:26px;line-height:1;cursor:pointer}
.package-gallery-list{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;padding:14px;max-height:calc(88vh - 69px);overflow-y:auto}
.package-gallery-list img{width:100%;height:230px;object-fit:cover;border-radius:10px;background:#eee}
.page-shell{max-width:1280px;margin:0 auto;padding:0 20px 52px;position:relative;z-index:2}
.booking-card{background:#fff;border:1px solid var(--border);border-radius:12px;box-shadow:0 14px 34px rgba(41,68,92,.14);display:grid;grid-template-columns:1fr auto;gap:20px;align-items:center;padding:22px 24px;margin-bottom:22px}
.trust-strip{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-bottom:36px}
.trust-item{background:#fff;border:1px solid var(--border);border-radius:10px;padding:14px 16px;box-shadow:0 8px 22px rgba(41,68,92,.07)}
.trust-item span{display:block;font-size:12px;color:var(--text-sub);margin-bottom:4px}
.trust-item strong{font-size:15px;color:var(--text)}
.price-label{font-size:12px;color:var(--text-sub);margin-bottom:4px}
.price-value{font-size:30px;font-weight:800;color:var(--teal);line-height:1}
.price-sub{font-size:12px;color:#999;margin-top:5px}
.book-actions{display:flex;gap:10px;flex-wrap:wrap}
.content-grid{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:22px;align-items:start}
.main-col{display:grid;gap:22px}
.section-card{background:#fff;border:1px solid var(--border);border-radius:10px;padding:24px}
.section-head{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-bottom:18px}
.section-head h2{font-size:22px;font-weight:800}
.section-head span{font-size:12px;color:var(--text-sub)}
.accordion-card{padding:0;overflow:hidden}
.trip-accordion summary{list-style:none;display:flex;align-items:center;justify-content:space-between;gap:18px;padding:20px 24px;cursor:pointer}
.trip-accordion summary::-webkit-details-marker{display:none}
.accordion-title{display:flex;align-items:center;gap:12px}
.accordion-icon{width:42px;height:42px;border-radius:12px;background:#f8eaf2;color:var(--teal);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.accordion-icon svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}
.accordion-title h2{font-size:21px;font-weight:800;margin-bottom:3px}
.accordion-title p{font-size:12px;color:var(--text-sub);line-height:1.6}
.accordion-chevron{width:34px;height:34px;border-radius:50%;border:1px solid var(--border);display:flex;align-items:center;justify-content:center;color:var(--teal);transition:transform .18s,background .18s}
.accordion-chevron svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:2}
.trip-accordion[open] .accordion-chevron{transform:rotate(180deg);background:#f8eaf2;border-color:#efc9dd}
.accordion-content{border-top:1px solid #f0f0f0;padding:20px 24px 24px;background:linear-gradient(180deg,#fff,#fff 62%,#fcfcfc)}
.extra-section-content{overflow-x:auto;-webkit-overflow-scrolling:touch}
.extra-section-content table{width:100%!important;table-layout:fixed;border-collapse:separate;border-spacing:0;border:1px solid var(--border);border-radius:10px;overflow:hidden;background:#fff}
.extra-section-content th,.extra-section-content td{width:auto!important;padding:14px 12px;text-align:center;vertical-align:middle;border-bottom:1px solid #ededed;border-left:1px solid #ededed;line-height:1.6;overflow-wrap:anywhere}
.extra-section-content th{background:#f8eaf2;color:var(--teal);font-size:13px;font-weight:800}
.extra-section-content td{color:var(--text);font-size:14px}
.extra-section-content th:first-child,.extra-section-content td:first-child{width:22%!important}
.extra-section-content th:nth-child(2),.extra-section-content td:nth-child(2){width:38%!important}
.extra-section-content th:last-child,.extra-section-content td:last-child{width:40%!important;border-left:0}
.extra-section-content tbody tr:last-child td{border-bottom:0}
.extra-section-content tbody tr:nth-child(even) td{background:#fcfcfc}
.extra-section-content p{margin:0}
.trip-route-summary{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-bottom:20px}
.route-stop{position:relative;background:#fafafa;border:1px solid #ededed;border-radius:10px;padding:14px 14px 14px 46px;min-height:74px}
.route-stop::before{content:'';position:absolute;left:16px;top:18px;width:18px;height:18px;border-radius:50%;background:var(--teal);box-shadow:0 0 0 6px #f8eaf2}
.route-stop span{display:block;font-size:11px;color:var(--text-sub);margin-bottom:4px}
.route-stop strong{font-size:14px;color:var(--text)}
.trip-timeline{position:relative;display:grid;gap:14px;padding-right:12px}
.trip-timeline::before{content:'';position:absolute;top:20px;bottom:20px;right:30px;width:2px;background:#f1d6e4}
.timeline-item{position:relative;display:grid;grid-template-columns:60px 1fr;gap:14px;align-items:stretch}
.timeline-day{width:60px;height:60px;border-radius:16px;background:#f8eaf2;color:var(--teal);border:1px solid #efc9dd;display:flex;flex-direction:column;align-items:center;justify-content:center;font-weight:800;z-index:1;box-shadow:0 8px 18px rgba(153,19,87,.08)}
.timeline-day span{font-size:11px;line-height:1}
.timeline-day strong{font-size:18px;line-height:1.1;margin-top:3px}
.timeline-body{background:#fff;border:1px solid #ededed;border-radius:10px;padding:14px 16px;transition:border-color .18s,box-shadow .18s}
.timeline-item:hover .timeline-body{border-color:#efc9dd;box-shadow:0 10px 22px rgba(153,19,87,.07)}
.timeline-body h3{font-size:15px;font-weight:800;margin-bottom:5px}
.timeline-body p{font-size:13px;color:var(--text-sub);line-height:1.75}
.stars{color:#f5a623;font-weight:800}
.include-box ul{list-style:none;display:grid;gap:0}
.include-box li{display:flex;align-items:flex-start;gap:9px;padding:13px 0;border-bottom:1px solid #f2f2f2;font-size:14px;color:#555;line-height:1.7}
.include-box li:last-child{border-bottom:none}
.include-box li::before{content:'\2713';width:20px;height:20px;border-radius:50%;background:#e8f8f0;color:#1c8b4b;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:12px;font-weight:800;margin-top:1px}
.include-box.no li::before{content:'\00D7';background:#fff0f0;color:#d33}
.prices-section{margin-top:22px}
.prices-table{width:100%;border-collapse:separate;border-spacing:0;border:1px solid var(--border);border-radius:10px;overflow:hidden;background:#fff}
.prices-table th,.prices-table td{padding:15px 16px;text-align:right;border-bottom:1px solid #ededed}
.prices-table th{background:#fafafa;color:#555;font-size:12px;font-weight:800}
.prices-table td{font-size:14px;color:var(--text)}
.prices-table tr:last-child td{border-bottom:none}
.price-whatsapp-btn{white-space:nowrap}
.quick-offers-section{margin-top:22px}
.quick-offers-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.quick-offer-card{position:relative;isolation:isolate;min-height:155px;border-radius:11px;overflow:hidden;color:#fff;display:flex;align-items:flex-end;box-shadow:0 4px 16px rgba(17,40,59,.12);transition:transform .2s,box-shadow .2s}
.quick-offer-card:hover{transform:translateY(-3px);box-shadow:0 10px 26px rgba(17,40,59,.2)}
.quick-offer-image,.quick-offer-overlay{position:absolute;inset:0}
.quick-offer-image{z-index:-2;background-size:cover;background-position:center;transition:transform .35s}
.quick-offer-card:hover .quick-offer-image{transform:scale(1.05)}
.quick-offer-overlay{z-index:-1;background:linear-gradient(to top,rgba(10,24,35,.84),rgba(10,24,35,.06) 75%)}
.quick-offer-name{padding:18px;display:flex;flex-direction:column;gap:2px}
.quick-offer-name small{font-size:11px;color:rgba(255,255,255,.76)}
.quick-offer-name strong{font-size:18px}
.quick-offer-arrow{position:absolute;left:16px;bottom:17px;width:31px;height:31px;border-radius:50%;background:rgba(255,255,255,.18);display:grid;place-items:center;font-size:17px}
.package-name{font-weight:800}
.price-cell{font-size:20px!important;font-weight:800;color:var(--teal)!important;white-space:nowrap}
.summary-list{display:grid;gap:12px}
.summary-row{display:flex;align-items:center;justify-content:space-between;gap:14px;border-bottom:1px solid #f0f0f0;padding-bottom:12px}
.summary-row:last-child{border-bottom:none;padding-bottom:0}
.summary-row span:first-child{color:var(--text-sub);font-size:13px}
.summary-row strong{font-size:14px}
.booking-form{display:grid;gap:12px}
.form-field{display:grid;gap:6px}
.form-field label{font-size:12px;font-weight:800;color:#555}
.form-field input,.form-field textarea,.form-field select{width:100%;border:1px solid var(--border);border-radius:8px;background:#fff;padding:11px 12px;font-family:var(--font);font-size:13px;color:var(--text);outline:none;transition:border-color .15s,box-shadow .15s}
.form-field select{appearance:none;-webkit-appearance:none;background-image:linear-gradient(45deg,transparent 50%,#7b8794 50%),linear-gradient(135deg,#7b8794 50%,transparent 50%);background-position:left 16px center,left 11px center;background-size:6px 6px,6px 6px;background-repeat:no-repeat;padding-left:32px}
.form-field textarea{min-height:88px;resize:vertical}
.form-field input:focus,.form-field textarea:focus,.form-field select:focus{border-color:var(--teal);box-shadow:0 0 0 3px rgba(153,19,87,.09)}
.form-submit{width:100%;border:none;border-radius:8px;background:var(--teal);color:#fff;font-family:var(--font);font-size:14px;font-weight:800;padding:12px 18px}
.form-note{font-size:11px;color:#999;line-height:1.6;text-align:center}

.pagination{display:flex;justify-content:center;gap:8px;margin-top:30px}
.pagination a,.pagination span{display:inline-flex;align-items:center;justify-content:center;min-width:38px;height:38px;border-radius:8px;border:1px solid var(--border);font-size:14px;font-weight:600;color:var(--text)}
.pagination a:hover{background:#f0faf9;border-color:var(--teal);color:var(--teal)}
.pagination .current{background:var(--teal);color:#fff;border-color:var(--teal)}

.contact-page{max-width:1280px;margin:0 auto;padding:34px 20px 64px}
.contact-hero{border-radius:18px;background:linear-gradient(135deg,#071b35 0%,#104163 52%,var(--teal) 100%);color:#fff;padding:28px;overflow:hidden;position:relative}
.contact-hero::after{content:'';position:absolute;inset:auto -80px -120px auto;width:300px;height:300px;border-radius:50%;background:rgba(255,255,255,.09);pointer-events:none}
.contact-crumb{position:relative;z-index:1;margin-bottom:38px;display:flex;gap:8px;align-items:center;font-size:13px;color:rgba(255,255,255,.72)}
.contact-crumb a{color:#fff}
.contact-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:28px;align-items:end}
.contact-kicker{display:inline-flex;align-items:center;width:max-content;margin-bottom:10px;border:1px solid rgba(255,255,255,.28);border-radius:999px;padding:6px 12px;font-size:12px;font-weight:800;background:rgba(255,255,255,.1)}
.contact-hero-copy h1{font-size:38px;line-height:1.35;font-weight:900;margin-bottom:10px;letter-spacing:0}
.contact-hero-copy p{font-size:16px;line-height:1.9;max-width:660px;color:rgba(255,255,255,.86)}
.contact-summary{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);border-radius:14px;padding:18px;backdrop-filter:blur(10px)}
.contact-summary-icon{width:48px;height:48px;border-radius:14px;background:#fff;color:var(--teal);display:flex;align-items:center;justify-content:center;margin-bottom:14px}
.contact-summary-icon svg,.contact-info-icon svg,.contact-submit svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}
.contact-summary strong{display:block;font-size:18px;font-weight:900;margin-bottom:5px}
.contact-summary span{display:block;font-size:13px;line-height:1.7;color:rgba(255,255,255,.78)}
.contact-layout{display:grid;grid-template-columns:420px minmax(0,1fr);gap:22px;margin-top:22px;align-items:start}
.contact-info-panel,.contact-form-panel{background:#fff;border:1px solid var(--border);border-radius:14px;box-shadow:0 14px 34px rgba(41,68,92,.08);padding:24px}
.contact-info-panel h2,.contact-form-panel h2{font-size:22px;font-weight:900;margin-bottom:16px}
.contact-form-panel p{font-size:13px;color:var(--text-sub);line-height:1.8;margin-bottom:18px}
.contact-info-list{display:grid;gap:12px}
.contact-info-item{display:grid;grid-template-columns:46px 1fr;gap:12px;align-items:center;border:1px solid #edf0f3;border-radius:12px;background:#fbfcfd;padding:14px;color:var(--text);transition:transform .15s,border-color .15s,box-shadow .15s}
.contact-info-item:hover{transform:translateY(-2px);border-color:#efc9dd;box-shadow:0 10px 24px rgba(153,19,87,.08)}
.contact-info-icon{width:46px;height:46px;border-radius:13px;background:#f8eaf2;color:var(--teal);display:flex;align-items:center;justify-content:center}
.contact-info-item small{display:block;font-size:11px;font-weight:800;color:var(--text-sub);margin-bottom:4px}
.contact-info-item span:last-child{min-width:0;font-size:14px;font-weight:800;line-height:1.65}
.contact-form{display:grid;gap:14px}
.contact-form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.contact-form .form-field input,.contact-form .form-field textarea{font-size:14px;padding:12px 13px}
.contact-form .form-field textarea{min-height:142px}
.contact-submit{display:flex;align-items:center;justify-content:center;gap:8px;min-height:46px}
.contact-submit svg{width:18px;height:18px}

.static-page{max-width:860px;margin:0 auto;padding:40px 20px 60px}
.static-page h1{font-size:30px;font-weight:800;margin-bottom:20px}
.static-page h2{font-size:22px;font-weight:700;margin:24px 0 12px}
.static-page p{font-size:15px;line-height:1.9;color:var(--text-sub);margin-bottom:14px}
.static-page ul{margin:0 0 14px 20px}
.static-page li{font-size:15px;line-height:1.9;color:var(--text-sub);margin-bottom:6px}

.not-found{text-align:center;padding:80px 20px}
.not-found h1{font-size:72px;font-weight:800;color:var(--teal);margin-bottom:10px}
.not-found h2{font-size:24px;font-weight:700;margin-bottom:14px}
.not-found p{font-size:15px;color:var(--text-sub);margin-bottom:24px}

.whatsapp-float{position:fixed;bottom:24px;left:24px;z-index:9999;width:56px;height:56px;border-radius:50%;background:#25d366;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 16px rgba(37,211,102,.4);transition:transform .2s}
.whatsapp-float:hover{transform:scale(1.1)}
.whatsapp-float svg{width:30px;height:30px;fill:#fff}

.article-page{max-width:860px;margin:0 auto;padding:30px 20px 60px}
.article-page .article-img{width:100%;height:380px;object-fit:cover;border-radius:12px;margin-bottom:24px}
.article-page h1{font-size:30px;font-weight:800;margin-bottom:12px}
.article-page .article-date{font-size:13px;color:var(--text-sub);margin-bottom:20px}
.article-page .article-content{font-size:15px;line-height:1.9;color:var(--text-sub)}
.article-page .article-content p{margin-bottom:14px}
.article-page .article-content h2{font-size:20px;font-weight:700;color:var(--text);margin:24px 0 10px}
.article-page .article-content h3{font-size:18px;font-weight:700;color:var(--text);margin:20px 0 9px}
.article-page .article-content img{max-width:100%;height:auto}
.article-page .article-content ul,.article-page .article-content ol{margin:0 1.4rem 18px 0}
.article-page .article-content a{color:var(--primary);text-decoration:underline}
.article-page .article-content table{display:block;max-width:100%;overflow-x:auto}

.articles-page{max-width:1280px;margin:0 auto;padding:40px 20px 60px}
.articles-page h1{font-size:28px;font-weight:800;margin-bottom:30px;text-align:center}

@media(max-width:1024px){
  .contact-hero-grid{grid-template-columns:1fr}
  .contact-layout{grid-template-columns:1fr}
  .home-action-card{grid-template-columns:170px minmax(0,1fr) 180px;gap:16px;padding:16px 20px}
  .home-action-media img{width:150px}
  .home-action-copy h2{font-size:21px}
  .home-action-btn{min-width:160px}
  .pkg-grid{grid-template-columns:repeat(2,1fr)}
  .blog-grid{grid-template-columns:repeat(2,1fr)}
  .app-section{flex-direction:column}
  .app-sec-img{display:none}
  .info-grid{grid-template-columns:repeat(2,1fr)}
  .info-section{padding:42px 20px 46px}
  .info-item{min-height:176px}
  .footer-top{grid-template-columns:1fr 1fr;gap:24px}
  .hero-text-overlay{right:24px;bottom:125px;width:calc(58vw - 36px);padding:0}
  .hero-text-overlay h1{font-size:34px}
  .hero-brand{font-size:clamp(36px,5vw,56px)}
  .hero-lottie{left:18px;top:0;bottom:120px;width:calc(46vw - 18px);height:auto}
  .hero-main-img{width:min(100%,390px);max-height:100%}
  .search-card-wrap{padding:0 24px}
  .search-mascot{left:34px;top:-126px;width:158px}
  .sfields{grid-template-columns:1fr 1fr;gap:8px}
  .sfields>div:last-child{grid-column:span 2}
  .btn-search-main{justify-self:stretch;margin:0;width:100%;border-radius:0 0 18px 18px}
  .quick-grid{grid-template-columns:repeat(2,1fr)}
  .about-layout{grid-template-columns:1fr}
  .faq-wrap{grid-template-columns:1fr}
  .content-grid{grid-template-columns:1fr}
  .trip-title-row{grid-template-columns:1fr}
  .hero-meta{justify-content:flex-start}
  .photo-grid{grid-template-columns:1fr 1fr;grid-template-rows:220px 150px 150px}
  .photo-tile.main{grid-column:span 2;grid-row:auto}
  .booking-card{grid-template-columns:1fr}
  .trust-strip{grid-template-columns:repeat(2,1fr)}
  .trip-route-summary{grid-template-columns:repeat(2,1fr)}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  .package-gallery-list{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:640px){
  .contact-page{padding:22px 12px 44px}
  .contact-hero{border-radius:14px;padding:20px}
  .contact-crumb{margin-bottom:26px;font-size:12px}
  .contact-hero-copy h1{font-size:27px;line-height:1.45}
  .contact-hero-copy p{font-size:14px}
  .contact-summary{padding:15px}
  .contact-layout{gap:14px;margin-top:14px}
  .contact-info-panel,.contact-form-panel{padding:18px;border-radius:12px}
  .contact-info-panel h2,.contact-form-panel h2{font-size:19px}
  .contact-info-item{grid-template-columns:40px 1fr;padding:12px;gap:10px}
  .contact-info-icon{width:40px;height:40px;border-radius:11px}
  .contact-info-item span:last-child{font-size:13px;overflow-wrap:anywhere}
  .contact-form-row{grid-template-columns:1fr}
  .home-action-wrap{padding:0 12px;margin:0 auto 18px}
  .home-action-card{
    min-height:82px;
    display:grid;
    grid-template-columns:82px minmax(0,1fr) 62px;
    grid-template-areas:"btn copy media";
    align-items:center;
    gap:8px;
    direction:ltr;
    text-align:right;
    padding:10px;
  }
  .home-action-card::before{width:100%;background:linear-gradient(180deg,rgba(153,19,87,.1),rgba(153,19,87,0))}
  .home-action-media{grid-area:media;justify-self:end;max-height:62px;align-self:center}
  .home-action-media img{width:62px;max-height:62px}
  .home-action-copy{
    grid-area:copy;
    min-width:0;
    direction:rtl;
    text-align:center;
  }
  .home-action-copy h2{font-size:13px;line-height:1.45;margin-bottom:0;white-space:normal;overflow:visible;color:var(--teal)}
  .home-action-copy ul{display:none}
  .home-action-btn{grid-area:btn;justify-self:start;align-self:center;min-width:0;width:82px;height:34px;font-size:11px;padding:0 8px}
  .home-action-btn svg{display:none}
  .featured-dest-section{width:100vw;margin-inline:calc(50% - 50vw)}
  .featured-dest-section .sec-head{padding:0 12px}
  .dest-scroll{display:block;overflow:hidden;padding:4px 0 10px;margin:0}
  .dest-scroll::-webkit-scrollbar{height:0}
  .dest-scroll-track{animation-duration:90s}
  .dest-card{flex:0 0 min(78vw,300px);max-width:none;scroll-snap-align:none}
  .info-section{padding:34px 12px 38px}
  .info-head{margin-bottom:18px}
  .info-head h2{font-size:21px}
  .info-head p{font-size:12px;line-height:1.7}
  .info-grid{grid-template-columns:repeat(2,1fr);gap:10px}
  .info-item{min-height:0;padding:18px 16px;border-radius:10px;gap:9px}
  .info-count{top:12px;left:12px;font-size:22px}
  .info-icon{width:48px;height:48px;border-radius:13px}
  .info-icon svg{width:23px;height:23px}
  .info-item h3{font-size:14px}
  .info-item p{font-size:12px;line-height:1.65}
  .home-faq-section{padding:34px 12px 42px}
  .home-faq-head{margin-bottom:18px}
  .home-faq-head h2{font-size:21px}
  .home-faq-head p{font-size:12px;line-height:1.7}
  .home-faq-grid{grid-template-columns:1fr;gap:10px}
  .home-faq-item summary{min-height:52px;padding:13px 14px;font-size:13px}
  .home-faq-item p{padding:0 14px 14px;font-size:12px;line-height:1.7}
  .util-bar{height:auto;min-height:36px;padding:8px 12px}
  .util-inner{justify-content:center;gap:8px;flex-wrap:wrap}
  .util-item{font-size:11px;white-space:normal;justify-content:center}
  .util-options{order:2;width:auto;justify-content:center;margin-inline-start:auto}
  .util-choice{height:28px;padding:0 12px;white-space:nowrap}
  .page-home header{top:54px}
  .header-inner{height:auto;min-height:60px;padding:10px 14px;gap:10px;flex-wrap:wrap}
  .logo-fallback{flex:0 0 112px;min-width:112px}
  .logo-tag{display:none}
  .mobile-menu-btn{display:flex;margin-right:auto}
  .header-spacer{display:none}
  .header-nav,.header-right{display:none}
  .mobile-menu-check:checked~.header-nav,.mobile-menu-check:checked~.header-right{display:flex;width:100%;order:5}
  .mobile-menu-check:checked~.header-nav{
    flex-direction:column;
    align-items:stretch;
    margin:6px 0 0;
    gap:4px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:10px;
    padding:8px;
    box-shadow:0 14px 34px rgba(16,35,55,.14);
  }
  .mobile-menu-check:checked~.header-nav a{padding:10px 12px}
  .page-home .mobile-menu-check:checked~.header-nav a,
  .page-home .mobile-menu-check:checked~.header-nav .nav-dropdown summary{color:var(--text);text-shadow:none}
  .page-home .mobile-menu-check:checked~.header-nav a:hover,
  .page-home .mobile-menu-check:checked~.header-nav a.active,
  .page-home .mobile-menu-check:checked~.header-nav .nav-dropdown summary:hover,
  .page-home .mobile-menu-check:checked~.header-nav .nav-dropdown[open] summary{background:#f0faf9;color:var(--teal)}
  .nav-dropdown{width:100%}
  .nav-dropdown summary{padding:10px 12px}
  .nav-dropdown summary .nav-chevron{margin-inline-start:auto}
  .nav-dropdown-menu{
    position:static;
    min-width:0;
    width:100%;
    max-height:240px;
    margin:4px 0 0;
    border-radius:8px;
    box-shadow:none;
    background:#fafafa;
  }
  .nav-dropdown-menu a{padding:9px 12px;color:var(--text)!important;text-shadow:none!important}
  .mobile-menu-check:checked~.header-right{gap:8px;flex-wrap:wrap}
  .mobile-menu-check:checked~.header-right button{flex:1;min-width:130px}
  .page-home .hero-wrap,.page-home .hero-image-fallback{min-height:430px;height:430px}
  .hero-text-overlay{left:auto;right:8px;bottom:auto;width:44%;height:176px;min-height:0;padding:18px 6px 0 0;align-items:flex-start;text-align:right}
  .page-home .hero-text-overlay{top:118px}
  .hero-text-overlay h1{font-size:20px;line-height:1.35;margin-bottom:7px}
  .hero-brand{font-size:28px;line-height:1.12}
  .hero-text-overlay p{font-size:11px;line-height:1.55;max-width:160px}
  .hero-lottie{display:flex;  display: none; left:30px;right:auto;bottom:auto;width:52%;height:176px;justify-content:flex-end;align-items:center;padding:8px 0 0 4px}
  .page-home .hero-lottie{top:118px}
  .hero-main-img{width:100%;max-width:220px;max-height:190px}
  .search-card-wrap{margin:-128px auto 5px;padding:0 12px}
  .search-mascot{left:18px;top:-74px;width:98px}
  .hero-benefits-wrap{margin:0 auto 20px;padding:0 8px}
  .hero-benefits{padding:8px 0 6px;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px}
  .hero-benefit{gap:5px}
  .benefit-img{width:min(27vw,98px)}
  .hero-benefit h3{font-size:10px;line-height:1.35}
  .stabs{overflow:visible;padding:0 12px;margin-bottom:-1px;gap:8px;justify-content:flex-start;position:relative;z-index:2}
  .stab{flex:0 0 auto;min-width:118px;height:42px;font-size:12px;padding:0 10px;border-radius:12px 12px 0 0}
  .stab svg{width:17px;height:17px}
  .sfields{grid-template-columns:1fr 1fr;padding:0;gap:0;border-radius:18px;box-shadow:0 14px 34px rgba(41,68,92,.14)}
  .sfields>.sfield:first-child,
  .sfields>div:last-child{grid-column:span 2}
  .sfields>.sfield:first-child .sfield-inner{border-radius:18px 18px 0 0}
  .sfield + .sfield{border-right:none;border-top:1px solid #e0e8ee;padding-top:0}
  .sfields>.sfield:nth-child(2){border-left:1px solid #e0e8ee}
  .sfields>.sfield:nth-child(3){border-top:1px solid #e0e8ee}
  .sfield label{top:12px;right:52px}
  .sfield-inner{min-height:64px;padding:22px 52px 10px 14px;border-radius:0}
  .sfield-placeholder{font-size:14px}
  .sfield-icon{width:28px;height:28px;right:15px}
  .sfield-icon svg{width:16px;height:16px}
  .btn-search-main{grid-column:auto;height:60px;border-radius:0;font-size:16px}
  .search-submit-cell .btn-search-main{border-radius:0 0 18px 18px}
  .arabic-calendar{right:50%;width:min(318px,calc(100vw - 32px));transform:translateX(50%)}
  .promo-banner{flex-direction:column}
  .pkg-grid,.blog-grid{grid-template-columns:1fr}
  .country-hero-inner{padding:48px 18px 42px;text-align:center}
  .country-hero h1{font-size:30px}
  .country-hero p{font-size:14px}
  .hero-actions{justify-content:center}
  .quick-grid{grid-template-columns:1fr}
  .quick-item{border-left:none;border-bottom:1px solid #f0f0f0}
  .sec-head{display:block}
  .sec-head h2{margin-bottom:8px}
  .slider-actions{justify-content:flex-start;flex-wrap:wrap}
  .cta-band{flex-direction:column;text-align:center;align-items:stretch}
  .gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
  .gallery-grid img{height:clamp(130px,30vw,180px)}
  .country-page-body{padding-bottom:44px}
  .trip-top{padding:22px 14px 18px}
  .trip-title h1{font-size:28px}
  .trip-title p{font-size:14px}
  .hero-meta,.book-actions{justify-content:center}
  .photo-grid{grid-template-columns:1fr 1fr;grid-template-rows:230px 98px 98px;gap:6px}
  .photo-tile{min-height:98px;border-radius:0}
  .photo-tile.main{grid-column:span 2;grid-row:auto;min-height:230px;border-radius:0}
  .photo-count{left:10px;bottom:9px;padding:8px 10px}
  .package-gallery-modal{width:calc(100vw - 20px);max-height:92vh;border-radius:13px}
  .package-gallery-head{padding:13px 14px}
  .package-gallery-head h2{font-size:16px}
  .package-gallery-list{grid-template-columns:repeat(2,minmax(0,1fr));gap:7px;padding:8px;max-height:calc(92vh - 63px)}
  .package-gallery-list img{height:150px;border-radius:8px}
  .page-shell{padding:0 14px 42px}
  .booking-card,.section-card{padding:18px}
  .accordion-card{padding:0}
  .trip-accordion summary{padding:17px 18px}
  .accordion-content{padding:18px}
  .extra-section-content th,.extra-section-content td{padding:10px 6px;font-size:12px;line-height:1.5}
  .extra-section-content th{font-size:11px}
  .accordion-title h2{font-size:18px}
  .price-value{font-size:26px}
  .trust-strip,.trip-route-summary{grid-template-columns:1fr}
  .trip-timeline{padding-right:0}
  .trip-timeline::before{right:24px}
  .timeline-item{grid-template-columns:48px 1fr;gap:10px}
  .timeline-day{width:48px;height:54px;border-radius:14px}
  .timeline-day strong{font-size:16px}
  .prices-table{display:block;border:none;border-radius:0;background:transparent}
  .prices-table thead{display:none}
  .prices-table tbody,.prices-table tr,.prices-table td{display:block;width:100%}
  .prices-table tr{border:1px solid var(--border);border-radius:10px;background:#fff;padding:12px;margin-bottom:10px}
  .prices-table td{border-bottom:none;padding:6px 0;font-size:13px}
  .prices-table td::before{content:attr(data-label);display:block;font-size:11px;color:var(--text-sub);margin-bottom:2px}
  .price-whatsapp-btn{width:100%;margin-top:4px}
  .quick-offers-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
  .quick-offer-card{min-height:125px}
  .quick-offer-name{padding:13px}
  .quick-offer-name strong{font-size:15px}
  .quick-offer-arrow{left:11px;bottom:12px;width:27px;height:27px;font-size:15px}
  footer{padding:28px 14px 0}
  .footer-top{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px 14px;
    padding-bottom:22px;
  }
  .footer-brand{grid-column:1 / -1}
  .footer-brand .flogo{justify-content:center;margin-bottom:10px}
  .footer-logo-img{height:42px;max-width:150px}
  .footer-brand p{
    max-width:100%;
    text-align:center;
    font-size:11px;
    line-height:1.65;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }
  .footer-contact{
    margin-top:12px;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
  }
  .footer-contact a{
    min-width:0;
    justify-content:center;
    border:1px solid rgba(255,255,255,.08);
    border-radius:8px;
    background:rgba(255,255,255,.04);
    padding:8px 7px;
    font-size:11px;
    line-height:1.4;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }
  .fcol{
    min-width:0;
    padding-top:14px;
    border-top:1px solid rgba(255,255,255,.08);
  }
  .fcol h4{font-size:12px;margin-bottom:9px}
  .fcol ul{gap:6px}
  .fcol ul li a,.fcol ul li span{
    display:block;
    font-size:12px;
    line-height:1.45;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }
  .footer-bottom{
    padding:14px 0 16px;
    justify-content:center;
    text-align:center;
    gap:10px;
  }
  .footer-bottom p{width:100%;font-size:10px}
  .pay-icons{
    width:100%;
    justify-content:center;
    flex-wrap:wrap;
    gap:6px;
  }
  .pay-icon{padding:4px 8px;font-size:10px}
}
.home-slider-wrap{max-width:1280px;margin:0 auto;padding:20px 20px 0}
.home-slider{border-radius:14px;overflow:hidden}
.home-slider .swiper-slide{border-radius:14px;overflow:hidden;height:230px}
.home-slider .swiper-slide img{width:100%;height:230px;object-fit:contain;background:#fff;display:block;border-radius:14px}
.home-slider .swiper-pagination-bullet{background:#fff;opacity:.6;width:8px;height:8px}
.home-slider .swiper-pagination-bullet-active{background:var(--teal);opacity:1}
.slide-link{display:block;height:230px}
.slide-overlay{display:none}
.slide-overlay span{display:block}

@media(max-width:640px){
  .home-slider-wrap{padding:14px 12px 0}
  .home-slider .swiper-slide,
  .slide-link{height:180px}
  .home-slider .swiper-slide img{height:180px}
}

@media(max-width:380px){
  .page-home .hero-wrap,.page-home .hero-image-fallback{min-height:420px;height:420px}
  .hero-text-overlay{right:8px;width:45%;height:168px;padding:16px 4px 0 0}
  .page-home .hero-text-overlay{top:118px}
  .hero-text-overlay h1{font-size:17px}
  .hero-brand{font-size:24px}
  .hero-lottie{left:6px;right:auto;width:51%;height:168px;justify-content:flex-end}
  .page-home .hero-lottie{top:118px}
  .hero-main-img{max-width:190px;max-height:142px}
  .search-card-wrap{margin:-128px auto 5px;padding:0 10px}
  .search-mascot{left:14px;top:-68px;width:88px}
  .hero-benefits-wrap{padding:0 6px}
  .hero-benefits{gap:6px}
  .hero-benefit h3{font-size:9px}
  .stab{min-width:104px;font-size:11px;gap:5px}
  .sfields{padding:0}
  .sfield-placeholder{font-size:13px}
}

/* Legacy WordPress /all-packages/ page */
.all-packages-page{max-width:1240px;margin:0 auto;padding:34px 24px 80px}
.all-packages-hero{padding:36px 42px 42px;border-radius:24px;background:linear-gradient(135deg,#062f32 0%,#0b6b68 100%);color:#fff;margin-bottom:30px;overflow:hidden;position:relative}
.all-packages-hero:after{content:"";position:absolute;width:280px;height:280px;border-radius:50%;background:rgba(255,255,255,.07);left:-70px;top:-110px}
.all-packages-hero .crumb{color:rgba(255,255,255,.75);display:flex;gap:8px;align-items:center;font-size:13px;margin-bottom:28px;position:relative;z-index:1}
.all-packages-hero .crumb a{color:#fff}
.all-packages-kicker{display:inline-block;color:#9ee7dd;font-size:14px;font-weight:700;margin-bottom:8px;position:relative;z-index:1}
.all-packages-hero h1{font-size:clamp(28px,4vw,48px);line-height:1.25;margin:0 0 10px;position:relative;z-index:1}
.all-packages-hero p{margin:0;max-width:670px;color:rgba(255,255,255,.82);font-size:16px;position:relative;z-index:1}
.legacy-country-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;margin-bottom:48px}
.legacy-country-card{min-height:310px;border-radius:20px;overflow:hidden;position:relative;display:flex;align-items:flex-end;color:#fff;box-shadow:0 12px 35px rgba(4,42,45,.12);isolation:isolate;transition:transform .25s ease,box-shadow .25s ease}
.legacy-country-card:hover{transform:translateY(-5px);box-shadow:0 18px 42px rgba(4,42,45,.2)}
.legacy-country-image,.legacy-country-overlay{position:absolute;inset:0}
.legacy-country-image{background-size:cover;background-position:center;z-index:-2;transition:transform .4s ease}
.legacy-country-card:hover .legacy-country-image{transform:scale(1.05)}
.legacy-country-overlay{z-index:-1;background:linear-gradient(180deg,rgba(0,0,0,.04) 20%,rgba(3,30,32,.9) 100%)}
.legacy-country-copy{display:flex;flex-direction:column;gap:5px;padding:26px 28px 28px;max-width:88%}
.legacy-country-copy small{color:#a6eee5;font-weight:700}
.legacy-country-copy strong{font-size:24px;line-height:1.35}
.legacy-country-copy span{font-size:13px;line-height:1.7;color:rgba(255,255,255,.78)}
.legacy-country-arrow{position:absolute;left:22px;bottom:24px;width:36px;height:36px;border-radius:50%;display:grid;place-items:center;background:rgba(255,255,255,.16);font-size:20px}
.legacy-all-packages-content{max-width:940px;margin:0 auto;background:#fff;border:1px solid #e5eceb;border-radius:22px;padding:clamp(24px,4vw,48px);box-shadow:0 12px 35px rgba(4,42,45,.06);line-height:2;color:var(--text-main)}
.legacy-all-packages-content h2{font-size:26px;margin:34px 0 12px;color:#073f42}
.legacy-all-packages-content h2:first-child{margin-top:0}
.legacy-all-packages-content h3{font-size:20px;margin:24px 0 8px;color:#0b6664}
.legacy-all-packages-content p{margin:0 0 16px}
.legacy-all-packages-content ul{padding-right:22px;margin:0 0 20px}
.legacy-all-packages-content li{margin-bottom:8px}
@media(max-width:900px){.legacy-country-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.legacy-country-card{min-height:280px}}
@media(max-width:600px){.all-packages-page{padding:20px 14px 55px}.all-packages-hero{padding:28px 22px 32px;border-radius:18px}.legacy-country-grid{grid-template-columns:1fr;gap:15px}.legacy-country-card{min-height:250px}.legacy-all-packages-content{border-radius:16px;padding:22px 18px}.legacy-all-packages-content h2{font-size:22px}}
