:root {
  --red: #d8232a;
  --red2: #ff4b55;
  --dark: #0b1320;
  --ink: #172033;
  --muted: #697386;
  --soft: #f5f7fb;
  --line: #e7edf5;
  --white: #fff;
  --blue: #051036;
  --shadow: 0 24px 60px rgba(19, 31, 53, 0.1);
  --shadow2: 0 12px 28px rgba(16, 24, 40, 0.1);
  --radius: 24px;
  --font: "Cairo", system-ui, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: auto;
}
body {
  margin: 0;
  font-family: var(--font);
  direction: rtl;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
select {
  font-family: inherit;
}
.container {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
}
.section {
  padding: 92px 0;
}
.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}
.section-title h2 {
  font-size: 34px;
  line-height: 1.25;
  margin: 0;
  color: #10203b;
}
.section-title p {
  margin: 8px 0 0;
  color: var(--muted);
}
.view-link {
  color: var(--red);
  font-weight: 800;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff1f1;
  color: var(--red);
  border-radius: 99px;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 800;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 14px;
  padding: 15px 24px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 28px rgba(216, 35, 42, 0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: #c81720;
}
.btn-soft {
  background: #fff1f1;
  color: var(--red);
}
.btn-white {
  background: #fff;
  color: var(--blue);
}
/* header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 86px;
  transition: 0.25s;
  background: transparent;
}
.header.is-scrolled {
  height: 74px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img {
  height: 46px;
  width: auto;
}
.header.is-scrolled .brand img {
  height: 42px;
}
.menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  list-style-type: none!important;
}
.menu > li,
.menu > li > ul > li {
  position: relative;
  list-style-type: none!important;
}
.menu > li > a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 26px 12px;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}
.menu > li.menu-item-has-children a{
  padding-left: 20px;
}
.menu > li.menu-item-has-children a::before {
  position: absolute;
  left: 0;
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23ffffff' stroke-width='2'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.header.is-scrolled .menu > li > a {
  color: #15223a;
}
.menu > li > a:hover,
.menu > li:hover > a {
  color: var(--red);
}
.chev {
  width: 12px;
  height: 12px;
}
.sub-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 220px;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 26px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: 0.25s;
  display: grid;
 /* grid-template-columns: repeat(3, 1fr);*/
  gap: 18px;
}
.menu > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sub-menu h4 {
  margin: 0 0 12px;
  color: #10203b;
}
.sub-menu a {
  display: block;
  color: #667085;
  padding: 7px 0;
  font-weight: 700;
}
.sub-menu a:hover {
  color: var(--red);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang {
  color: #fff;
  font-weight: 800;
}
.header.is-scrolled .lang {
  color: #15223a;
}
.login {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  border-radius: 99px;
  padding: 10px 16px;
  font-weight: 900;
}
.header.is-scrolled .login {
  color: #15223a;
  border-color: #dce3ee;
}
.mobile-toggle {
  display: none;
  background: #fff;
  border: 0;
  border-radius: 12px;
  padding: 10px;
  color: var(--blue);
}
/* hero */
.hero {
  position: relative;
  min-height: 820px;
  background: #071126;
  overflow: hidden;
}
.hero-swiper,
.hero-slide {
  height: 820px;
}
.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 16, 54, 0.55),
    rgba(5, 16, 54, 0.25) 42%,
    rgba(5, 16, 54, 0.82)
  );
  z-index: 1;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 36%,
    rgba(216, 35, 42, 0.32),
    transparent 36%
  );
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}
.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 60px;
  width: min(900px, 92%);
}
.hero-content .pill {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}
.hero h1 {
  font-size: 64px;
  line-height: 1.15;
  margin: 24px 0 14px;
  letter-spacing: -1.5px;
}
.hero p {
  font-size: 18px;
  line-height: 1.9;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.hero .swiper-pagination {
  bottom: 208px;
}
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
}
.swiper-pagination-bullet-active {
  background: var(--red);
  width: 28px;
  border-radius: 99px;
}
.search-shell {
  position: relative;
  z-index: 7;
  margin-top: -180px;
}
.search-card {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 30px 90px rgba(5, 16, 54, 0.18);
  padding: 18px;
  border: 1px solid #eef2f7;
}
.search-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}
.search-tab {
  border: 0;
  background: #f6f8fb;
  color: #22304a;
  padding: 13px 18px;
  border-radius: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.search-tab.active {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 22px rgba(216, 35, 42, 0.2);
}
.search-panel {
  display: none;
  grid-template-columns: 1.5fr 1fr 1fr 1.15fr auto;
  gap: 12px;
  padding-top: 18px;
}
.search-panel.active {
  display: grid;
}
.field {
  border: 1px solid #e5ebf3;
  border-radius: 16px;
  padding: 14px 16px;
  background: #fff;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.2s;
}
.field:hover {
  border-color: #cfd7e5;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}
.field svg {
  color: var(--red);
  flex: none;
}
.field span {
  display: block;
  font-size: 13px;
  color: #667085;
}
.field strong {
  display: block;
  margin-top: 3px;
  color: #101828;
  font-size: 15px;
}
.search-panel .btn {
  min-height: 76px;
  border-radius: 18px;
  padding-inline: 34px;
}
/* destinations */
.dest-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}
.dest-card {
  position: relative;
  min-height: 280px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow2);
  color: #fff;
}
.dest-card.tall {
  grid-row: span 2;
  min-height: 584px;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: 0.5s;
}
.dest-card:hover img {
  transform: scale(1.08);
}
.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.78));
}
.dest-info {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  right: 24px;
  left: 24px;
}
.dest-info h3 {
  font-size: 28px;
  margin: 0 0 6px;
}
.dest-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}
/* cards */
.tabs-line {
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.tabs-line button {
  border: 0;
  border-radius: 99px;
  background: #f3f6fb;
  color: #344054;
  padding: 10px 18px;
  font-weight: 900;
}
.tabs-line button.active {
  background: #0b1320;
  color: #fff;
}

/* ===== 2026 page experience refresh ===== */
.guide-directory-hero{padding:150px 0 80px;background:radial-gradient(circle at 15% 20%,rgba(216,35,42,.16),transparent 28%),linear-gradient(135deg,#08152f,#132957);color:#fff;overflow:hidden}.guide-directory-hero-grid{display:grid;grid-template-columns:1.02fr .98fr;gap:70px;align-items:center}.guide-hero-copy h1{font-size:clamp(42px,5vw,72px);line-height:1.15;margin:18px 0}.guide-hero-copy>p{font-size:19px;line-height:1.9;color:#d7e0ef;max-width:650px}.guide-hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin:28px 0}.guide-trust-list{display:flex;gap:18px;flex-wrap:wrap;color:#dbeafe;font-weight:800;font-size:13px}.guide-hero-visual{position:relative;min-height:510px}.guide-hero-visual>img{width:100%;height:510px;object-fit:cover;border-radius:38px 120px 38px 38px;box-shadow:0 30px 80px rgba(0,0,0,.35)}.guide-floating-card{position:absolute;background:#fff;color:#10203b;border-radius:18px;padding:15px 18px;box-shadow:0 18px 45px rgba(0,0,0,.22)}.guide-floating-rating{top:34px;right:-28px;display:grid}.guide-floating-rating strong{color:var(--red);font-size:22px}.guide-floating-rating span,.guide-floating-local small{color:#64748b;font-size:12px}.guide-floating-local{bottom:34px;left:-28px;display:flex;align-items:center;gap:12px}.guide-floating-local>span{display:grid;place-items:center;width:42px;height:42px;border-radius:12px;background:#fff0f1}.guide-floating-local div{display:grid}.guide-value-strip{background:#fff;border-bottom:1px solid var(--line);box-shadow:0 10px 30px rgba(15,23,42,.04)}.guide-value-strip .container{display:grid;grid-template-columns:repeat(4,1fr)}.guide-value-strip .container>div{padding:22px;display:flex;align-items:center;gap:12px;border-inline-start:1px solid var(--line);font-weight:900;color:#334155}.guide-value-strip strong{color:var(--red);font-size:13px}.guide-directory-section{background:#f8fafc}.guide-directory-section .guides-grid{gap:28px}.guide-directory-section .guide-card{border:0;border-radius:28px;text-align:right;box-shadow:0 15px 45px rgba(15,23,42,.08)}.guide-directory-section .guide-card-image{height:330px}.guide-directory-section .guide-card-body{padding:24px}.guide-directory-section .guide-card-body p{min-height:0}.guide-directory-section .guide-card-body .btn{width:100%;justify-content:center;margin-top:5px}.guide-experience-section{background:#fff}.guide-experience-card{display:grid;grid-template-columns:1.2fr .8fr;gap:55px;padding:55px;border-radius:36px;background:linear-gradient(135deg,#0d1e41,#183b70);color:#fff;overflow:hidden;position:relative}.guide-experience-card:after{content:"";position:absolute;width:300px;height:300px;border:70px solid rgba(255,255,255,.04);border-radius:50%;left:-100px;bottom:-170px}.guide-experience-card h2{font-size:40px;margin:16px 0}.guide-experience-card p{color:#d8e3f2;line-height:1.9}.guide-experience-points{display:grid;gap:14px;position:relative;z-index:1}.guide-experience-points>div{display:flex;gap:14px;align-items:center;padding:17px;background:rgba(255,255,255,.09);border:1px solid rgba(255,255,255,.12);border-radius:17px}.guide-experience-points b{font-size:25px}.guide-experience-points span{display:grid}.guide-experience-points small{color:#bfcee2;margin-top:3px}

.guide-work-hero{padding:170px 0 105px;background:linear-gradient(120deg,rgba(5,16,54,.93),rgba(10,39,77,.78)),url('https://images.unsplash.com/photo-1527631746610-bca00a040d60?auto=format&fit=crop&w=2200&q=88') center/cover;color:#fff;text-align:center}.guide-work-hero-inner{max-width:900px;margin:auto}.guide-work-hero h1{font-size:clamp(42px,5vw,68px);margin:20px 0}.guide-work-hero p{color:#e2e8f0;font-size:19px;line-height:1.9}.guide-work-hero-inner>div{display:flex;justify-content:center;gap:12px;margin-top:30px}.guide-process{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;counter-reset:steps}.guide-process>div{padding:28px;border:1px solid var(--line);border-radius:22px;background:#fff;position:relative;overflow:hidden}.guide-process b{display:inline-grid;place-items:center;width:50px;height:50px;border-radius:15px;background:#fff0f1;color:var(--red);font-size:14px}.guide-process span{display:block;font-size:20px;font-weight:900;color:#10203b;margin:18px 0 8px}.guide-process p{color:#667085;line-height:1.75;margin:0}.guide-role-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}.guide-role-card{padding:32px;border-radius:26px;background:#fff;border:1px solid var(--line);box-shadow:0 14px 40px rgba(15,23,42,.06)}.guide-role-card.guide{background:#102a54;color:#fff;transform:translateY(-12px)}.guide-role-card.guide h3{color:#fff}.guide-role-card.guide li{color:#dce7f5}.guide-role-icon{display:grid;place-items:center;width:58px;height:58px;border-radius:18px;background:#fff0f1;font-size:26px}.guide-role-card h3{font-size:24px}.guide-role-card ul{padding:0;list-style:none}.guide-role-card li{padding:11px 0;border-bottom:1px solid rgba(148,163,184,.22);color:#64748b}.guide-role-card li:before{content:"✓";color:var(--red);font-weight:900;margin-left:8px}.guide-before-after{display:grid;grid-template-columns:1fr 1.05fr 1fr;align-items:center;border:1px solid var(--line);border-radius:30px;overflow:hidden;background:#fff;box-shadow:0 18px 50px rgba(15,23,42,.07)}.guide-before-after>div:not(.guide-before-after-photo){padding:34px}.guide-before-after-photo img{width:100%;height:430px;object-fit:cover}.guide-before-after h3{font-size:28px}.guide-quality-section{background:#081a38;color:#fff}.guide-quality-section h2{color:#fff}.guide-quality-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.guide-quality-grid>div{padding:28px;border-radius:22px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.1)}.guide-quality-grid b{color:#ff656a}.guide-quality-grid h3{color:#fff}.guide-quality-grid p{color:#bfcde0}

.about-values-section{background:#f8fafc}.about-values-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.about-values-grid>div{background:#fff;padding:28px;border-radius:22px;border:1px solid var(--line);transition:.25s}.about-values-grid>div:hover{transform:translateY(-6px);box-shadow:var(--shadow)}.about-values-grid b{color:var(--red)}.about-values-grid h3{font-size:22px}.about-values-grid p{color:#667085;line-height:1.8}.about-ecosystem{display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:center}.about-ecosystem-copy h2{font-size:40px}.about-orbit{width:430px;height:430px;margin:auto;border:1px dashed #b7c4d6;border-radius:50%;position:relative;display:grid;place-items:center;background:radial-gradient(circle,#f1f5f9,transparent 68%)}.about-orbit:before{content:"";position:absolute;inset:70px;border:1px solid #e2e8f0;border-radius:50%}.about-orbit-core{width:145px;height:145px;border-radius:50%;display:grid;place-items:center;text-align:center;background:#102a54;color:#fff;font-weight:900;font-size:20px;box-shadow:0 20px 50px rgba(16,42,84,.25);z-index:1}.about-orbit span{position:absolute;padding:11px 16px;border-radius:999px;background:#fff;border:1px solid var(--line);box-shadow:0 8px 25px rgba(15,23,42,.09);font-weight:900}.orbit-one{top:12px}.orbit-two{right:-10px}.orbit-three{bottom:10px}.orbit-four{left:-25px}.about-service-journey{background:#0c2145;color:#fff}.about-service-journey h2{color:#fff}.about-journey-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:1px;background:rgba(255,255,255,.13);border-radius:24px;overflow:hidden}.about-journey-grid>div{padding:28px;background:#102a54}.about-journey-grid b{display:grid;place-items:center;width:44px;height:44px;border-radius:50%;background:var(--red)}.about-journey-grid h3{color:#fff}.about-journey-grid p{color:#bccbe0}.about-strategy-section .guide-quality-grid>div{background:#f8fafc;border-color:var(--line)}.about-strategy-section .guide-quality-grid h3{color:#10203b}.about-strategy-section .guide-quality-grid p{color:#667085}

.pioneer-hero{padding:155px 0 85px;background:radial-gradient(circle at 80% 30%,rgba(216,35,42,.15),transparent 28%),#07172f;color:#fff;overflow:hidden}.pioneer-hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:center}.pioneer-hero h1{font-size:clamp(42px,5vw,70px);line-height:1.15;margin:18px 0}.pioneer-hero-copy>p{color:#d7e2f1;font-size:19px;line-height:1.9}.pioneer-hero-actions{display:flex;gap:12px;margin:28px 0}.pioneer-mini-metrics{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.pioneer-mini-metrics>div{padding:14px;border-inline-start:2px solid var(--red);display:grid}.pioneer-mini-metrics span{font-size:12px;color:#aebed3}.pioneer-dashboard-mock{background:#fff;color:#10203b;border-radius:28px;padding:24px;box-shadow:0 35px 100px rgba(0,0,0,.35);transform:rotate(-2deg)}.pioneer-mock-head{display:flex;align-items:center;gap:6px;border-bottom:1px solid var(--line);padding-bottom:16px}.pioneer-mock-head span{width:9px;height:9px;border-radius:50%;background:#ffb4b7}.pioneer-mock-head b{margin-right:auto}.pioneer-mock-stats{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin:20px 0}.pioneer-mock-stats>div{padding:17px;background:#f8fafc;border-radius:16px;display:grid}.pioneer-mock-stats small{color:#64748b}.pioneer-mock-stats strong{font-size:27px}.pioneer-mock-stats em{color:#16a34a;font-style:normal}.pioneer-mock-chart{height:165px;padding:20px;display:flex;align-items:end;gap:12px;background:linear-gradient(180deg,#f8fafc,#fff);border-radius:18px}.pioneer-mock-chart i{flex:1;border-radius:8px 8px 2px 2px;background:linear-gradient(#e6333a,#b91820)}.pioneer-mock-order{display:flex;justify-content:space-between;padding:16px;margin-top:14px;background:#fff5f5;border-radius:14px}.pioneer-mock-order b{color:#15803d}.pioneer-benefit-bar{background:#fff;box-shadow:0 10px 35px rgba(15,23,42,.05)}.pioneer-benefit-bar .container{display:grid;grid-template-columns:repeat(4,1fr)}.pioneer-benefit-bar .container>div{padding:24px;display:flex;gap:11px;align-items:center;border-inline-start:1px solid var(--line);font-size:24px}.pioneer-benefit-bar span{display:grid;font-size:14px}.pioneer-benefit-bar small{color:#64748b}.pioneer-roadmap{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.pioneer-roadmap>div{padding:28px;border:1px solid var(--line);border-radius:22px;position:relative;background:#fff}.pioneer-roadmap b{color:var(--red)}.pioneer-roadmap h3{font-size:21px}.pioneer-roadmap p{color:#667085}.pioneer-profit-section{background:#f4f7fb}.pioneer-profit-grid{display:grid;grid-template-columns:1fr .82fr;gap:65px;align-items:center}.profit-example{padding:28px;border-radius:28px;background:#fff;box-shadow:0 20px 60px rgba(15,23,42,.1)}.profit-example-head{display:flex;justify-content:space-between;padding-bottom:18px;border-bottom:1px solid var(--line)}.profit-example>div:not(.profit-example-head){display:flex;justify-content:space-between;padding:15px 0;border-bottom:1px dashed #dce3ec}.profit-example .profit-total{margin-top:10px;padding:20px!important;border:0!important;border-radius:16px;background:#102a54;color:#fff}.profit-example .profit-total strong{color:#fff;font-size:24px}.profit-example p{font-size:12px;color:#94a3b8}.pioneer-tools-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.pioneer-tools-grid>div{padding:28px;background:#fff;border:1px solid var(--line);border-radius:22px}.pioneer-tools-grid i{font-style:normal;color:var(--red);font-weight:900}.pioneer-tools-grid p{color:#667085;line-height:1.8}.pioneer-who-card,.pioneer-final-card{display:grid;grid-template-columns:1.1fr .9fr;gap:50px;padding:50px;border-radius:34px;background:#0c2145;color:#fff}.pioneer-who-card h2,.pioneer-final-card h2{color:#fff;font-size:38px}.pioneer-who-card p,.pioneer-final-card p{color:#c6d4e6}.pioneer-personas{display:grid;grid-template-columns:1fr 1fr;gap:12px}.pioneer-personas span{display:grid;place-items:center;min-height:100px;border:1px solid rgba(255,255,255,.14);border-radius:18px;background:rgba(255,255,255,.07);font-weight:900}.pioneer-final-card{padding:0;overflow:hidden;align-items:center}.pioneer-final-card>div{padding:45px}.pioneer-final-card img{width:100%;height:100%;min-height:390px;object-fit:cover}.pioneer-final-card .btn{margin:6px}

@media(max-width:1000px){.guide-directory-hero-grid,.pioneer-hero-grid,.about-ecosystem,.pioneer-profit-grid{grid-template-columns:1fr}.guide-directory-hero{padding-top:125px}.guide-hero-visual{max-width:700px}.guide-value-strip .container,.pioneer-benefit-bar .container{grid-template-columns:repeat(2,1fr)}.guide-process,.pioneer-roadmap,.pioneer-tools-grid{grid-template-columns:repeat(2,1fr)}.guide-role-grid{grid-template-columns:1fr}.guide-role-card.guide{transform:none}.guide-before-after{grid-template-columns:1fr 1fr}.guide-before-after-photo{grid-row:1/3}.guide-quality-grid,.about-values-grid{grid-template-columns:repeat(2,1fr)}.about-journey-grid{grid-template-columns:repeat(3,1fr)}.pioneer-who-card,.pioneer-final-card{grid-template-columns:1fr}.pioneer-final-card img{max-height:360px}.guide-experience-card{grid-template-columns:1fr}}
@media(max-width:640px){.guide-directory-hero{padding-top:110px}.guide-hero-visual,.guide-hero-visual>img{min-height:380px;height:380px}.guide-floating-card{position:relative;inset:auto!important;margin:-35px 12px 0}.guide-value-strip .container,.pioneer-benefit-bar .container,.guide-process,.pioneer-roadmap,.pioneer-tools-grid,.guide-quality-grid,.about-values-grid,.about-journey-grid,.pioneer-mini-metrics,.pioneer-mock-stats{grid-template-columns:1fr}.guide-value-strip .container>div{padding:15px}.guide-experience-card,.pioneer-who-card{padding:28px}.guide-experience-card h2,.pioneer-who-card h2{font-size:30px}.guide-before-after{grid-template-columns:1fr}.guide-before-after-photo{grid-row:auto}.guide-role-card{padding:24px}.about-orbit{width:300px;height:300px}.about-orbit-core{width:110px;height:110px}.orbit-four{left:-5px}.pioneer-hero-actions,.guide-hero-actions,.guide-work-hero-inner>div{flex-direction:column}.pioneer-dashboard-mock{transform:none}.pioneer-personas{grid-template-columns:1fr 1fr}.pioneer-final-card>div{padding:28px}}

/* Single guide: portrait and quick facts on the side, full content opposite */
.guide-profile-section{background:#f7f9fc}.guide-profile-layout{display:grid;grid-template-columns:minmax(0,1fr) 370px;gap:34px;align-items:start}.guide-profile-content{display:grid;gap:22px}.guide-profile-panel{padding:34px;background:#fff;border:1px solid var(--line);border-radius:26px;box-shadow:0 12px 35px rgba(15,23,42,.05);text-align:right}.guide-profile-panel h2{font-size:30px;margin:16px 0}.guide-profile-panel p{color:#667085;line-height:1.95}.guide-profile-sidebar{position:sticky;top:110px}.guide-profile-photo{height:430px;border-radius:28px;overflow:hidden;position:relative;box-shadow:0 20px 50px rgba(15,23,42,.16)}.guide-profile-photo img{width:100%;height:100%;object-fit:cover}.guide-profile-photo:after{content:"";position:absolute;inset:55% 0 0;background:linear-gradient(transparent,rgba(5,16,54,.7))}.guide-profile-photo>span{position:absolute;z-index:2;top:18px;left:18px;padding:8px 13px;border-radius:999px;background:#fff;color:#10203b;font-weight:900}.guide-quick-data{padding:25px;margin-top:18px;background:#fff;border:1px solid var(--line);border-radius:24px;box-shadow:0 12px 35px rgba(15,23,42,.06)}.guide-quick-data>h3{font-size:25px;margin:0 0 4px}.guide-quick-data>p{margin:0 0 20px;color:var(--red);font-weight:800}.guide-quick-data>div{display:grid;grid-template-columns:38px 1fr;column-gap:10px;padding:13px 0;border-top:1px solid #edf1f5}.guide-quick-data>div>span{grid-row:1/3;display:grid;place-items:center;width:38px;height:38px;border-radius:12px;background:#f6f8fb}.guide-quick-data>div>small{color:#94a3b8}.guide-quick-data>div>strong{color:#334155;font-size:14px}.guide-quick-data .guide-availability>span{color:#16a34a;background:#effcf4}.guide-quick-data>.btn{width:100%;justify-content:center;margin-top:18px}.guide-service-list{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:22px}.guide-service-list>div{display:flex;gap:10px;align-items:flex-start;padding:15px;border-radius:15px;background:#f8fafc;color:#344054;font-weight:800}.guide-service-list span{display:grid;place-items:center;flex:0 0 25px;width:25px;height:25px;border-radius:50%;background:#fff0f1;color:var(--red)}
@media(max-width:900px){.guide-profile-layout{grid-template-columns:1fr}.guide-profile-sidebar{position:static;display:grid;grid-template-columns:.85fr 1.15fr;gap:20px}.guide-quick-data{margin-top:0}.guide-profile-photo{height:100%;min-height:470px}}
@media(max-width:640px){.guide-profile-sidebar{grid-template-columns:1fr}.guide-profile-photo{height:430px;min-height:0}.guide-profile-panel{padding:24px}.guide-service-list{grid-template-columns:1fr}}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hotel-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  transition: 0.25s;
}
.hotel-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.hotel-img {
  height: 210px;
  position: relative;
  overflow: hidden;
}
.hotel-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.hotel-card:hover img {
  transform: scale(1.06);
}
.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #fff;
  color: var(--red);
  border-radius: 99px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
}
.hotel-body {
  padding: 18px;
}
.rating {
  color: #f59e0b;
  font-weight: 900;
  font-size: 13px;
}
.hotel-body h3 {
  font-size: 18px;
  margin: 8px 0 8px;
  color: #10203b;
}
.hotel-body p {
  color: #667085;
  margin: 0 0 16px;
}
.price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.price strong {
  color: var(--red);
  font-size: 19px;
}
.features {
  background: #f7f9fc;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-grid-8 {
  grid-template-columns: repeat(4, 1fr);
}
.booking-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.booking-service-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 38px 30px;
  box-shadow: var(--shadow2);
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.booking-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.booking-service-icon {
  font-size: 42px;
  display: block;
  margin-bottom: 18px;
}
.booking-service-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}
.booking-service-card p {
  margin: 0 0 18px;
  color: #667085;
  line-height: 1.8;
}
.booking-service-link {
  color: var(--red);
  font-weight: 800;
}
.package-card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0;
}
.btn-sm {
  min-height: auto;
  padding: 8px 14px;
  font-size: 13px;
}
.dest-swiper .dest-slide-card {
  position: relative;
  display: block;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  color: #fff;
}
.dest-swiper .dest-slide-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dest-swiper .dest-slide-card:hover img {
  transform: scale(1.06);
}
.dest-swiper .dest-slide-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.78));
}
.dest-slide-info {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 22px;
}
.dest-slide-info h3 {
  margin: 0 0 6px;
}
.dest-slide-info p {
  margin: 0;
  opacity: 0.92;
}
.visa-section-wrap {
  background: #f7f9fc;
}
.visa-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.visa-column h3 {
  margin: 0 0 16px;
}
.visa-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  margin-bottom: 12px;
}
.visa-card-main {
  display: flex;
  gap: 12px;
  align-items: center;
}
.visa-flag {
  font-size: 28px;
}
.visa-card-main p {
  margin: 4px 0 0;
  color: #667085;
  font-size: 14px;
}
.visa-card-side {
  text-align: left;
  display: grid;
  gap: 6px;
  justify-items: end;
}
.timeline-home {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.partners-logos {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}
.partner-logo-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  min-height: 84px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #475467;
  padding: 12px;
  text-align: center;
}
.testimonial-media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.testimonial-media-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  font-weight: 800;
}
.blog-card .read-more {
  display: inline-block;
  margin-top: 10px;
  color: var(--red);
  font-weight: 800;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  text-align: center;
}
.feature-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff1f1;
  color: var(--red);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}
.feature-card h3 {
  margin: 0 0 8px;
}
.feature-card p {
  margin: 0;
  color: #667085;
  line-height: 1.8;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}
.identity-photo {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: var(--shadow);
}
.identity-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.identity-photo .float {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow2);
  width: 260px;
}
.identity-list {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}
.identity-list div {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  padding: 14px;
  border-radius: 14px;
  font-weight: 800;
}
.red-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff1f1;
  color: var(--red);
  display: grid;
  place-items: center;
  flex: none;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
}
.stat strong {
  display: block;
  color: var(--red);
  font-size: 26px;
}
.stat span {
  color: #667085;
  font-size: 14px;
}
.testimonials {
  background: #051036;
  color: #fff;
}
.testimonials .section-title h2,
.testimonials .section-title p {
  color: #fff;
}
.testimonial-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
}
.metric h3 {
  font-size: 52px;
  margin: 0;
  color: #fff;
}
.metric p {
  color: rgba(255, 255, 255, 0.7);
  margin: 4px 0 28px;
}
.quote-card {
  background: #fff;
  color: #172033;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}
.quote-card p {
  line-height: 1.9;
  color: #526070;
}
.avatar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}
.avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.blog-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}
.blog-card div {
  padding: 20px;
}
.blog-card h3 {
  margin: 8px 0;
  color: #10203b;
}
.love-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.love-item {
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}
.love-item strong {
  display: block;
}
.love-item span {
  color: #667085;
  font-size: 13px;
}
/* ========================================
   FAQ Widget Styles - مع إصلاح الفتح والإغلاق
   ======================================== */

.elementor-widget-ti_faq .faq-wrap,
.faq-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto;
}

.elementor-widget-ti_faq .faq-item,
.faq-item {
  background: #fff;
  border: 1px solid #e7edf5;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.elementor-widget-ti_faq .faq-item:hover,
.faq-item:hover {
  border-color: #d8232a;
}

.elementor-widget-ti_faq .faq-item.open,
.faq-item.open {
  border-color: #d8232a;
  box-shadow: 0 8px 30px rgba(216, 35, 42, 0.08);
}

/* زر السؤال */
.elementor-widget-ti_faq .faq-q,
.faq-q {
  align-items: center;
  background: transparent;
  border: 0;
  color: #10203b;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  gap: 16px;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: right;
  width: 100%;
  transition: all 0.25s ease;
}

.faq-question-text {
  flex: 1;
  text-align: right;
}

.elementor-widget-ti_faq .faq-q:hover,
.faq-q:hover {
  background: #f7f9fc;
}

.elementor-widget-ti_faq .faq-item.open .faq-q,
.faq-item.open .faq-q {
  color: #d8232a;
}

/* أيقونة السؤال */
.elementor-widget-ti_faq .faq-icon,
.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  height: 24px;
  position: relative;
  width: 24px;
  transition: all 0.3s ease;
}

.elementor-widget-ti_faq .faq-icon svg,
.faq-icon svg {
  display: block;
  transition: all 0.3s ease;
  width: 20px;
  height: 20px;
}

.elementor-widget-ti_faq .faq-icon .plus,
.faq-icon .plus {
  opacity: 1;
  transform: rotate(0deg);
}

.elementor-widget-ti_faq .faq-icon .minus,
.faq-icon .minus {
  opacity: 0;
  position: absolute;
  transform: rotate(90deg);
}

.elementor-widget-ti_faq .faq-item.open .faq-icon .plus,
.faq-item.open .faq-icon .plus {
  opacity: 0;
  transform: rotate(90deg);
}

.elementor-widget-ti_faq .faq-item.open .faq-icon .minus,
.faq-item.open .faq-icon .minus {
  opacity: 1;
  transform: rotate(0deg);
}

/* محتوى الإجابة */
.elementor-widget-ti_faq .faq-a,
.faq-a {
  color: #667085;
  font-size: 15px;
  line-height: 1.8;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
}

.elementor-widget-ti_faq .faq-item.open .faq-a,
.faq-item.open .faq-a {
  max-height: 500px;
  opacity: 1;
  padding: 0 24px 24px;
  visibility: visible;
}

/* تأثير الـ Accordion عند التبديل */
.elementor-widget-ti_faq .faq-a,
.faq-a {
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease, visibility 0.3s ease;
}

.elementor-widget-ti_faq .faq-item,
.faq-item {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* ========================================
   Responsive FAQ
   ======================================== */

@media (max-width: 767px) {
  .elementor-widget-ti_faq .faq-q,
.faq-q {
    font-size: 15px;
    padding: 16px 18px;
  }
  
  .elementor-widget-ti_faq .faq-a,
.faq-a {
    font-size: 14px;
  }
  
  .elementor-widget-ti_faq .faq-item.open .faq-a,
.faq-item.open .faq-a {
    padding: 0 18px 18px;
  }
}
.cta {
  background: linear-gradient(135deg, #d8232a, #8f1118);
  color: #fff;
  border-radius: 34px;
  padding: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  position: relative;
}
.cta:before {
  content: "";
  position: absolute;
  inset: auto -120px -160px auto;
  width: 340px;
  height: 340px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}
.cta h2 {
  font-size: 38px;
  margin: 0 0 10px;
}
.cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}
.footer {
  background: #f7f9fc;
  padding: 60px 0 26px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 34px;
}
.footer img {
  height: 52px;
  width: auto;
}
.footer h4 {
  margin: 0 0 14px;
}
.footer a {
  display: block;
  color: #667085;
  margin: 8px 0;
}
.copyright {
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding-top: 22px;
  color: #667085;
  display: flex;
  justify-content: space-between;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: 0.55s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.mobile-drawer {
  display: none;
}
/* listing */
.inner-hero {
  padding: 150px 0 70px;
  background: linear-gradient(180deg, #fff1f1, #fff);
  text-align: center;
}
.inner-hero h1 {
  font-size: 46px;
  margin: 0 0 12px;
}
.listing-layout {
  display: grid;
  grid-template-columns: 3fr;
  gap: 28px;
}
.filter-box {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  align-self: start;
  position: sticky;
  top: 96px;
}
.filter-box h3 {
  margin: 0 0 18px;
}
.filter-box label {
  display: block;
  margin: 14px 0;
  color: #667085;
}
.list-results {
  display: grid;
  gap: 18px;
}
.result-card {
  display: grid;
  grid-template-columns: 270px 1fr auto;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 14px;
  background: #fff;
}
.result-card img {
  width: 270px;
  height: 190px;
  border-radius: 18px;
  object-fit: cover;
}
.result-card h3 {
  margin: 0 0 8px;
}
.dash {
  background: #f7f9fc;
}
.dashboard {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  min-height: 720px;
  padding-top: 100px;
}
.side {
  background: #fff;
  border-left: 1px solid var(--line);
  padding: 26px;
  border-radius: 24px;
  height: max-content;
  box-shadow: var(--shadow2);
}
.side a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: #667085;
  font-weight: 800;
}
.side a.active,
.side a:hover {
  background: #fff1f1;
  color: var(--red);
}
.dash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.dash-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
}
.dash-card strong {
  font-size: 30px;
  color: var(--red);
}
@media (max-width: 1000px) {
  .menu,
  .nav-actions {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero h1 {
    font-size: 42px;
  }
  .search-panel {
    grid-template-columns: 1fr;
  }
  .dest-grid,
  .recommend-grid,
  .feature-grid,
  .feature-grid-8,
  .booking-services-grid,
  .visa-columns,
  .timeline-home,
  .partners-logos,
  .testimonial-media,
  .split,
  .testimonial-layout,
  .blog-grid,
  .footer-grid,
  .listing-layout,
  .dashboard {
    grid-template-columns: 1fr;
  }
  .dest-card.tall {
    min-height: 360px;
  }
  .love-grid,
  .stats-row,
  .dash-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .result-card {
    grid-template-columns: 1fr;
  }
  .ti-service-archive-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .result-card img {
    width: 100%;
  }
  .section {
    padding: 62px 0;
  }
  .hero,
  .hero-swiper,
  .hero-slide {
    height: 760px;
  }
  .search-shell {
    margin-top: -150px;
  }
  .mobile-drawer {
    display: block;
    position: fixed;
    inset: 0 0 0 auto;
    width: 300px;
    background: #fff;
    z-index: 100;
    transform: translateX(110%);
    transition: 0.25s;
    padding: 24px;
    box-shadow: var(--shadow);
  }
  .mobile-drawer.open {
    transform: none;
  }
  .mobile-drawer a {
    display: block;
    padding: 13px;
    color: #10203b;
    font-weight: 800;
  }
  .drawer-close {
    border: 0;
    background: #fff1f1;
    color: var(--red);
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 15px;
  }
}
@media (max-width: 620px) {
  .hero h1 {
    font-size: 34px;
  }
  .hero p {
    font-size: 15px;
  }
  .hero-buttons,
  .section-title,
  .cta,
  .copyright {
    flex-direction: column;
    align-items: flex-start;
  }
  .love-grid,
  .stats-row,
  .dash-grid {
    grid-template-columns: 1fr;
  }
  .search-card {
    padding: 12px;
  }
  .search-tabs {
    overflow: auto;
    flex-wrap: nowrap;
  }
  .section-title h2 {
    font-size: 28px;
  }
  .cta {
    padding: 34px;
  }
  .hero .swiper-pagination {
    bottom: 236px;
  }
}

/* interactive fixes */
.search-tab,
.tabs-line button,
.rec-prev,
.rec-next,
.filter-box button {
  cursor: pointer;
  user-select: none;
}
.search-tab:focus,
.tabs-line button:focus,
.rec-prev:focus,
.rec-next:focus {
  outline: 3px solid rgba(216, 35, 42, 0.18);
  outline-offset: 2px;
}
.tabs-line button.active {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 25px rgba(216, 35, 42, 0.18);
}
.recommended-swiper {
  overflow: hidden;
  padding: 4px 3px 38px;
}
.recommended-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
  transition: transform 0.35s ease;
}
.recommended-swiper .swiper-slide {
  height: auto;
  flex-shrink: 0;
}
.recommended-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.recommended-pagination .swiper-pagination-bullet {
  background: #d0d5dd;
  opacity: 1;
}
.recommended-pagination .swiper-pagination-bullet-active {
  background: var(--red);
}
.search-panel {
  animation: tabPanelIn 0.28s ease both;
}
@keyframes tabPanelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.result-card {
  transition: 0.25s ease;
}
.ti-service-archive-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.ti-service-archive-grid .result-card {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
}
.ti-service-archive-grid .result-card .ti-result-thumb {
  height: 220px;
  overflow: hidden;
}
.ti-service-archive-grid .result-card img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}
.ti-service-archive-grid .result-card > div:not(.result-side) {
  padding: 18px 18px 10px;
}
.ti-service-archive-grid .result-card h3 {
  margin: 8px 0;
}
.ti-service-archive-grid .result-side {
  border-top: 1px solid var(--line);
  padding: 16px 18px 18px;
  min-width: 0;
  align-content: start;
  justify-items: stretch;
}
.ti-service-archive-grid .result-side .btn {
  width: 100%;
  justify-content: center;
}
.ti-service-archive-grid .result-side .view-link {
  text-align: center;
}
.ti-service-archive-grid .content-panel,
.recommend-grid .content-panel,
.partners-grid .content-panel {
  grid-column: 1 / -1;
}
.result-card .ti-result-thumb {
  display: block;
}
.result-card h3 a {
  color: #10203b;
}
.result-card p {
  color: #667085;
  line-height: 1.75;
  margin: 0;
}
.result-side {
  min-width: 150px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 8px;
}
.result-side span,
.result-side small {
  color: #667085;
  font-weight: 800;
}
.result-side strong {
  color: var(--red);
  font-size: 22px;
}
.result-side .btn {
  margin-top: 8px;
}
.result-side .view-link {
  color: #10203b;
  font-weight: 900;
}
.ti-archive-pagination {
  margin-top: 28px;
}
.ti-archive-pagination .nav-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.ti-archive-pagination a,
.ti-archive-pagination span {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 9px 13px;
  background: #fff;
  color: #10203b;
  font-weight: 900;
}
.ti-archive-pagination .current {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.result-card[style*="display: none"],
.hotel-card[style*="display: none"] {
  opacity: 0;
  transform: scale(0.98);
}
@supports not selector(:has(*)) {
}
body:not(.swiper-initialized) .hero-swiper .swiper-slide {
  display: none;
}
body:not(.swiper-initialized) .hero-swiper .swiper-slide.swiper-slide-active {
  display: flex;
}

/* Tourist Identity Wego-style booking filter */
.ti-search-shell {
  margin-top: -190px;
  z-index: 8;
  position: relative;
  padding-bottom: 18px;
}
.ti-booking-wrap {
  max-width: 1240px;
  margin: 0 auto;
}
.ti-main-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.ti-nav-card {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 11px 25px;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: 0.28s ease;
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.12);
}
.ti-nav-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.28);
}
.ti-nav-card.active {
  background: #fff;
  color: #172033;
  border-color: #fff;
  box-shadow: 0 18px 45px rgba(16, 24, 40, 0.18);
}
.ti-nav-card.active span {
  filter: drop-shadow(0 4px 10px rgba(216, 35, 42, 0.2));
}
.ti-app-card {
  background: #fff;
  border-radius: 24px;
  padding: 25px;
  box-shadow: 0 28px 80px rgba(16, 24, 40, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.7);
  position: relative;
}
.ti-inner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  min-height: 42px;
}
.ti-trip-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ti-tab-btn {
  background: #f3f5f8;
  border: none;
  padding: 9px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  color: #435066;
  transition: 0.22s;
}
.ti-tab-btn.active,
.ti-tab-btn:hover {
  background: #fff0f1;
  color: var(--red);
  box-shadow: inset 0 0 0 1px rgba(216, 35, 42, 0.16);
}
.ti-inputs-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ti-input-row {
  display: grid;
  border: 1px solid #dde3ec;
  border-radius: 14px;
  position: relative;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.04);
}
.ti-grid-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.ti-grid-3 {
  grid-template-columns: 1.2fr 1.2fr 1fr;
}
.ti-grid-hotel {
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
}
.ti-grid-car {
  grid-template-columns: 1.5fr 1fr 1fr;
}
.ti-input-group {
  padding: 14px 18px;
  border-left: 1px solid #dde3ec;
  position: relative;
  cursor: pointer;
  min-height: 77px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ti-input-group:last-child {
  border-left: none;
}
.ti-input-group label {
  display: block;
  font-size: 11px;
  color: #667085;
  margin-bottom: 4px;
  text-align: right;
  font-weight: 800;
}
.ti-input-group .ti-val {
  font-weight: 900;
  font-size: 15px;
  color: #172033;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ti-input-group .ti-placeholder {
  color: #aeb7c5;
  font-weight: 700;
}
.ti-popover {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 100%;
  min-width: 450px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 18px 55px rgba(16, 24, 40, 0.22);
  z-index: 100;
  padding: 20px;
  display: none;
  border: 1px solid #edf0f5;
}
.ti-popover.active {
  display: block;
  animation: tiSlideIn 0.2s ease;
}
.ti-search-box-input {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--red);
  border-radius: 12px;
  margin-bottom: 15px;
  outline: none;
  font-family: inherit;
}
.ti-popular-title {
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 15px;
  text-align: right;
  color: #172033;
}
.ti-city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.ti-city-item {
  padding: 10px;
  border-radius: 9px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
  color: #344054;
}
.ti-city-item:hover {
  background: #fff0f1;
  color: var(--red);
}
.ti-calendar-header {
  display: flex;
  justify-content: space-between;
  font-weight: 900;
  padding: 10px 0;
  color: #172033;
}
.ti-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
}
.ti-day {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;
  font-size: 14px;
  position: relative;
  color: #344054;
}
.ti-day:hover {
  background: #fff0f1;
  color: var(--red);
}
.ti-day.selected {
  background: var(--red) !important;
  color: #fff;
}
.ti-day.header {
  font-weight: 900;
  color: #667085;
  font-size: 11px;
  cursor: default;
  background: transparent;
}
.ti-day.holiday:after {
  content: "*";
  position: absolute;
  top: 2px;
  right: 5px;
  color: #d32f2f;
  font-size: 14px;
}
.ti-empty-day {
  height: 40px;
}
.ti-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  gap: 20px;
}
.ti-filter-area {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.ti-filter-item {
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 7px;
  position: relative;
  color: #25324a;
}
.ti-search-btn {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 13px 64px;
  border-radius: 999px;
  font-size: 19px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(216, 35, 42, 0.26);
  font-family: inherit;
  transition: 0.2s;
}
.ti-search-btn:hover {
  transform: translateY(-2px);
  background: var(--red2);
}
.ti-pay-desc {
  font-size: 12px;
  color: #667085;
  margin-bottom: 12px;
  line-height: 1.7;
}
.ti-pay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.ti-pay-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
  padding: 4px 0;
  color: #344054;
}
.ti-pay-opt input,
.ti-filter-item input {
  accent-color: var(--red);
}
.ti-counter-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid #f0f2f5;
  color: #172033;
  font-weight: 800;
}
.ti-c-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: #eef1f5;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 900;
}
.ti-c-btn.active {
  background: var(--red);
  color: #fff;
}
.ti-swap-btn {
  position: absolute;
  right: 25%;
  top: 50%;
  transform: translate(50%, -50%);
  background: #fff;
  border: 1px solid #dde3ec;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  color: #667085;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08);
}
.ti-grid-3 .ti-swap-btn {
  right: calc((100% / 3) + 23px);
}
.ti-add-row-btn {
  border: 1.5px solid var(--red);
  color: var(--red);
  background: #fff;
  padding: 10px 25px;
  border-radius: 10px;
  font-weight: 900;
  cursor: pointer;
  margin-top: 15px;
  display: none;
  font-family: inherit;
}
.ti-car-time-split {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 10px;
}
.ti-time-box {
  border-right: 1px solid #eef1f5;
  padding-right: 10px;
}
.ti-scroll-list {
  max-height: 250px;
  overflow-y: auto;
}
.ti-remove-row {
  position: absolute;
  left: -9px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
  font-weight: 900;
  z-index: 3;
}
.ti-search-note {
  font-weight: 900;
  color: #172033;
}
.ti-filter-item .ti-popover {
  right: auto;
  left: 0;
}
.ti-city-item.full {
  text-align: right;
  width: 100%;
}
@keyframes tiSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1000px) {
  .ti-search-shell {
    margin-top: -150px;
  }
  .ti-grid-4,
  .ti-grid-3,
  .ti-grid-hotel,
  .ti-grid-car {
    grid-template-columns: 1fr;
  }
  .ti-input-group {
    border-left: 0;
    border-bottom: 1px solid #dde3ec;
  }
  .ti-input-group:last-child {
    border-bottom: 0;
  }
  .ti-swap-btn {
    display: none;
  }
  .ti-popover {
    min-width: min(92vw, 450px);
  }
  .ti-footer {
    align-items: stretch;
    flex-direction: column-reverse;
  }
  .ti-search-btn {
    width: 100%;
  }
  .ti-filter-area {
    justify-content: center;
  }
  .ti-app-card {
    padding: 18px;
  }
  .ti-main-nav {
    margin-top: 8px;
  }
  .ti-nav-card {
    color: #172033;
    background: #fff;
  }
}
@media (max-width: 620px) {
  .ti-main-nav {
    gap: 8px;
  }
  .ti-nav-card {
    padding: 10px 15px;
    font-size: 13px;
  }
  .ti-city-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ti-pay-grid {
    grid-template-columns: 1fr;
  }
  .ti-inner-header {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 12px;
  }
  .ti-trip-tabs {
    width: 100%;
    overflow: auto;
    flex-wrap: nowrap;
  }
  .ti-tab-btn {
    white-space: nowrap;
  }
  .ti-popover {
    right: 0;
    left: auto;
    min-width: calc(100vw - 52px);
  }
  .ti-filter-item .ti-popover {
    left: auto;
    right: 0;
  }
}

/* complete content pages */
.rich-hero {
  padding: 170px 0 95px;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.rich-hero h1 {
  font-size: 54px;
  line-height: 1.2;
  margin: 22px 0 12px;
}
.rich-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.9;
  margin: 0 auto;
}
.lead {
  font-size: 18px;
  line-height: 2;
  color: #667085;
  text-align: right;
}
.content-cards .hotel-body p {
  min-height: 54px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.timeline > div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
}
.timeline b {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #fff0f1;
  color: var(--red);
  align-items: center;
  justify-content: center;
}
.timeline h3 {
  margin: 14px 0 8px;
}
.timeline p {
  color: #667085;
  line-height: 1.8;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 40px rgba(16, 24, 40, 0.06);
}
.price-plan.featured {
  border-color: rgba(216, 35, 42, 0.3);
  box-shadow: 0 28px 70px rgba(216, 35, 42, 0.13);
  transform: translateY(-10px);
}
.price-plan h3 {
  font-size: 28px;
  margin: 0 0 10px;
}
.price-plan strong {
  display: block;
  color: var(--red);
  font-size: 22px;
  margin-bottom: 10px;
}
.price-plan p {
  color: #667085;
  line-height: 1.8;
}
.results-list {
  display: grid;
  gap: 18px;
}
.result-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.result-meta span {
  background: #f3f6fb;
  border-radius: 99px;
  padding: 7px 12px;
  color: #667085;
  font-weight: 800;
  font-size: 12px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 14px;
  margin-bottom: 30px;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
}
.gallery-grid img:first-child {
  grid-row: span 2;
  height: 534px;
}
.package-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}
.content-panel,
.booking-side,
.login-card,
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 40px rgba(16, 24, 40, 0.06);
  margin-bottom: 22px;
}
.booking-side {
  position: sticky;
  top: 100px;
}
.booking-side h3 {
  font-size: 30px;
  margin: 10px 0;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.two-col li {
  margin-bottom: 10px;
  color: #667085;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
}
.team-card img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
}
.contact-layout,
.account-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.page-template-partner-login .account-layout{
  display: block;
}
.contact-form label,
.login-card label {
  display: block;
  margin-bottom: 14px;
  font-weight: 800;
  color: #344054;
}
.contact-form input,
.contact-form select,
.contact-form textarea,
.login-card input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  margin-top: 8px;
  outline: none;
}
.contact-form textarea {
  height: 140px;
  resize: vertical;
}
.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.table-like {
  display: grid;
  gap: 12px;
}
.table-like > div {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 14px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  align-items: center;
}
.table-like span {
  color: #667085;
}
.dash-sidebar a.active {
  background: #fff0f1;
  color: var(--red);
}
@media (max-width: 1000px) {
  .timeline,
  .pricing-grid,
  .package-layout,
  .team-grid,
  .contact-layout,
  .account-layout {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid img,
  .gallery-grid img:first-child {
    height: 300px;
  }
  .rich-hero h1 {
    font-size: 38px;
  }
  .booking-side {
    position: static;
  }
  .table-like > div {
    grid-template-columns: 1fr;
  }
  .price-plan.featured {
    transform: none;
  }
}

/* partners and premium contact updates */
.partner-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.partner-filter-bar button {
  border: 0;
  border-radius: 999px;
  background: #f3f6fb;
  color: #344054;
  padding: 11px 18px;
  font-weight: 900;
  cursor: pointer;
}
.partner-filter-bar button.active,
.partner-filter-bar button:hover {
  background: var(--red);
  color: #fff;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.partner-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 14px 42px rgba(16, 24, 40, 0.07);
  padding: 0 22px 24px;
  text-align: center;
  transition: 0.25s;
}
.partner-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.partner-cover {
  height: 130px;
  margin: 0 -22px 0;
  background-size: cover;
  background-position: center;
  position: relative;
}
.partner-cover:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 16, 54, 0.05),
    rgba(5, 16, 54, 0.35)
  );
}
.partner-avatar {
  width: 94px;
  height: 94px;
  margin: -48px auto 12px;
  border: 5px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.18);
}
.partner-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.partner-badge {
  display: inline-flex;
  background: #fff0f1;
  color: var(--red);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 10px;
}
.partner-card h3 {
  font-size: 22px;
  margin: 4px 0 8px;
  color: #10203b;
}
.partner-card p {
  color: #667085;
  line-height: 1.8;
  min-height: 58px;
}
.partner-stats {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0;
}
.partner-stats span {
  background: #f6f8fb;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
  color: #344054;
}

/* Tour guides */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.guides-grid > .content-panel { grid-column: 1 / -1; }
.guide-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 14px 42px rgba(16, 24, 40, 0.07);
  transition: transform .25s, box-shadow .25s;
}
.guide-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.guide-card-image { display: block; height: 280px; position: relative; overflow: hidden; }
.guide-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.guide-card:hover .guide-card-image img { transform: scale(1.04); }
.guide-rating {
  position: absolute;
  inset-block-start: 16px;
  inset-inline-end: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #10203b;
  background: rgba(255,255,255,.94);
  font-weight: 900;
}
.guide-card-body { padding: 22px; }
.guide-card-body h3 { margin: 14px 0 8px; font-size: 22px; }
.guide-card-body h3 a { color: #10203b; }
.guide-card-body p { min-height: 56px; color: #667085; line-height: 1.75; }
.guide-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 20px; }
.guide-meta span, .guide-profile-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f6f8fb;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}
.guide-jobs-grid, .guide-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.guide-jobs-grid .content-panel h3 { margin-top: 0; }
.guide-profile-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 24px; }
.guide-details-grid .content-panel p { line-height: 1.9; }

@media (max-width: 900px) {
  .guides-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .guides-grid, .guide-jobs-grid, .guide-details-grid { grid-template-columns: 1fr; }
  .guide-card-image { height: 250px; }
}
.contact-hero-pro {
  padding: 165px 0 90px;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(216, 35, 42, 0.28),
      transparent 32%
    ),
    linear-gradient(135deg, #051036 0%, #111b32 55%, #d8232a 145%);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.contact-hero-pro:after {
  content: "";
  position: absolute;
  inset: auto -120px -160px auto;
  width: 520px;
  height: 520px;
  background: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1200&q=85")
    center/cover;
  border-radius: 50%;
  opacity: 0.18;
  filter: grayscale(0.2);
}
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.55fr;
  gap: 34px;
  align-items: center;
  position: relative;
  z-index: 2;
  text-align: right;
}
.contact-hero-pro h1 {
  font-size: 58px;
  line-height: 1.15;
  margin: 22px 0 12px;
}
.contact-hero-pro p {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
}
.contact-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.contact-mini-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}
.contact-mini-card strong {
  display: block;
  font-size: 18px;
}
.contact-mini-card span {
  display: block;
  color: #fff;
  background: rgba(216, 35, 42, 0.75);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  width: max-content;
  margin: 14px 0;
}
.contact-pro-section {
  padding-bottom: 20px;
  background: #f7f9fc;
}
.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -70px;
  position: relative;
  z-index: 4;
}
.contact-channel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 50px rgba(16, 24, 40, 0.1);
}
.contact-channel span {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #fff0f1;
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 14px;
}
.contact-channel h3 {
  margin: 0 0 8px;
}
.contact-channel p {
  color: #667085;
  line-height: 1.7;
  min-height: 52px;
}
.contact-channel b {
  color: var(--red);
}
.contact-pro-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: start;
}
.contact-info-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 16px 50px rgba(16, 24, 40, 0.07);
}
.contact-info-panel h2 {
  font-size: 34px;
  line-height: 1.3;
  margin: 18px 0 10px;
}
.contact-steps {
  display: grid;
  gap: 14px;
  margin: 26px 0;
}
.contact-steps div {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 14px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px;
}
.contact-steps b {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #fff0f1;
  color: var(--red);
  display: grid;
  place-items: center;
}
.contact-steps span {
  font-weight: 900;
  color: #172033;
}
.contact-steps p {
  margin: 3px 0 0;
  color: #667085;
  line-height: 1.6;
}
.contact-map-card {
  min-height: 210px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(
      135deg,
      rgba(5, 16, 54, 0.2),
      rgba(216, 35, 42, 0.45)
    ),
    url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1200&q=85")
      center/cover;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: #fff;
}
.contact-map-card > div {
  background: rgba(5, 16, 54, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 16px;
}
.contact-map-card p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.82);
}
.contact-form-pro {
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 26px 80px rgba(216, 35, 42, 0.1),
    0 16px 50px rgba(16, 24, 40, 0.08);
}
.form-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}
.form-head span {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 25px;
}
.form-head h3 {
  margin: 0;
  font-size: 26px;
}
.form-head p {
  margin: 3px 0 0;
  color: #667085;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-note {
  color: #667085;
  font-size: 13px;
  margin: 14px 0 0;
}
.contact-bottom-cta {
  padding-top: 10px;
}
.about-faq-section .faq-wrap {
  max-width: 900px;
  margin: auto;
}
@media (max-width: 1000px) {
  .partners-grid,
  .contact-channel-grid,
  .contact-hero-grid,
  .contact-pro-layout {
    grid-template-columns: 1fr;
  }
  .contact-channel-grid {
    margin-top: 0;
  }
  .contact-hero-pro h1 {
    font-size: 40px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1000px) {
  .ti-service-archive-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ti-service-archive-grid {
    grid-template-columns: 1fr;
  }
}

/* destinations hierarchy page */
.destinations-page {
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}
.dest-search-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 18px 55px rgba(16, 24, 40, 0.07);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}
.dest-search-panel h2 {
  font-size: 34px;
  margin: 10px 0;
}
.dest-search-panel p {
  color: #667085;
  line-height: 1.9;
  margin: 0;
}
.dest-mini-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.dest-mini-stats span {
  min-width: 110px;
  text-align: center;
  background: #fff0f1;
  border: 1px solid rgba(216, 35, 42, 0.12);
  border-radius: 20px;
  padding: 14px;
  color: #667085;
  font-weight: 800;
}
.dest-mini-stats b {
  display: block;
  color: var(--red);
  font-size: 24px;
}
.country-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  position: sticky;
  top: 82px;
  z-index: 20;
  background: rgba(247, 249, 252, 0.86);
  backdrop-filter: blur(14px);
  padding: 13px;
  border-radius: 22px;
  border: 1px solid var(--line);
}
.country-tabs button {
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #344054;
  padding: 12px 20px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.05);
}
.country-tabs button.active,
.country-tabs button:hover {
  background: var(--red);
  color: #fff;
}
.countries-wrap {
  display: grid;
  gap: 30px;
}
.country-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 30px;
  box-shadow: 0 14px 45px rgba(16, 24, 40, 0.06);
}
.country-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
}
.country-head h2 {
  font-size: 38px;
  margin: 8px 0 4px;
}
.country-head p {
  color: #667085;
  line-height: 1.8;
  margin: 0;
  max-width: 760px;
}
.country-head .flag {
  font-size: 38px;
  display: inline-flex;
  margin-left: 10px;
  vertical-align: middle;
}
.city-grid-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.city-package-block {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.04);
}
.city-cover {
  height: 190px;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.city-cover:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 16, 54, 0.05),
    rgba(5, 16, 54, 0.75)
  );
}
.city-cover span,
.city-cover b {
  position: relative;
  z-index: 2;
}
.city-cover span {
  font-size: 28px;
  font-weight: 900;
}
.city-cover b {
  display: inline-flex;
  margin-top: 8px;
  width: max-content;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 7px 12px;
}
.city-packages {
  display: grid;
  gap: 10px;
  padding: 16px;
}
.city-packages a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  text-decoration: none;
  transition: 0.22s;
}
.city-packages a:hover {
  border-color: rgba(216, 35, 42, 0.28);
  box-shadow: 0 12px 30px rgba(216, 35, 42, 0.09);
  transform: translateY(-3px);
}
.city-packages strong {
  color: #172033;
  font-size: 15px;
}
.city-packages span {
  color: #667085;
  font-size: 12px;
  font-weight: 800;
}
.city-packages b {
  grid-row: 1/3;
  grid-column: 2;
  color: var(--red);
  align-self: center;
  white-space: nowrap;
  font-size: 13px;
}
.country-section[style*="display: none"] {
  display: none !important;
}
@media (max-width: 1100px) {
  .city-grid-packages {
    grid-template-columns: 1fr 1fr;
  }
  .dest-search-panel {
    grid-template-columns: 1fr;
  }
  .country-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .country-tabs {
    top: 74px;
  }
}
@media (max-width: 700px) {
  .city-grid-packages {
    grid-template-columns: 1fr;
  }
  .country-section {
    padding: 18px;
    border-radius: 24px;
  }
  .dest-search-panel h2,
  .country-head h2 {
    font-size: 28px;
  }
  .city-cover {
    height: 170px;
  }
  .country-tabs {
    position: static;
    overflow: auto;
    flex-wrap: nowrap;
  }
  .country-tabs button {
    white-space: nowrap;
  }
  .city-packages a {
    grid-template-columns: 1fr;
  }
  .city-packages b {
    grid-column: auto;
    grid-row: auto;
  }
  .dest-mini-stats {
    width: 100%;
  }
  .dest-mini-stats span {
    flex: 1;
  }
}

/* WordPress integration */
.ti-form-feedback {
  margin-top: 14px;
  border: 1px solid rgba(16, 185, 129, 0.24);
  background: #ecfdf5;
  color: #047857;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 800;
}
.ti-form-feedback.error {
  border-color: rgba(216, 35, 42, 0.22);
  background: #fff1f1;
  color: var(--red);
}
.btn:disabled,
.ti-search-btn:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none !important;
}
/* --- Partner Dashboard Enhancements --- */
.dash-card {
  transition: 0.3s ease;
}
.dash-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.12);
}
.content-panel table a {
  text-decoration: none;
}
.content-panel table a:hover {
  text-decoration: underline;
}
.dash-grid {
  gap: 24px;
}
@media (max-width: 768px) {
  .dash-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 500px) {
  .dash-grid {
    grid-template-columns: 1fr !important;
  }
}


/* --- Frontend Forms for Partner --- */
.content-panel label {
    font-weight: 800;
    color: #10203b;
}
.content-panel input,
.content-panel textarea {
    font-family: inherit;
    font-size: 15px;
    transition: .2s;
}
.content-panel input:focus,
.content-panel textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(216,35,42,.1);
}


/* ========================================
   تحويل كروت الخدمات إلى شبكة بعمودين
   ======================================== */

/* شبكة كروت الخدمات - عمودين */
.ti-service-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* شبكة كروت البرامج - عمودين */
.recommend-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* شبكة كروت الشركاء - عمودين */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* تنسيق البطاقات داخل الشبكة */
.ti-service-archive-grid .result-card,
.recommend-grid .hotel-card,
.partners-grid .partner-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ti-service-archive-grid .result-card .ti-result-thumb {
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.ti-service-archive-grid .result-card img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
}

.ti-service-archive-grid .result-card > div:not(.result-side) {
    padding: 18px 18px 10px;
    flex: 1;
}

.ti-service-archive-grid .result-card h3 {
    margin: 8px 0;
    font-size: 18px;
}

.ti-service-archive-grid .result-card p {
    color: #667085;
    line-height: 1.75;
    margin: 0 0 12px;
}

.ti-service-archive-grid .result-side {
    border-top: 1px solid var(--line);
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ti-service-archive-grid .result-side .btn {
    width: 100%;
    justify-content: center;
}

.ti-service-archive-grid .result-side .view-link {
    text-align: center;
    color: #10203b;
    font-weight: 900;
}

/* تنسيق كروت الفنادق */
.recommend-grid .hotel-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    transition: 0.25s;
}

.recommend-grid .hotel-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.recommend-grid .hotel-img {
    height: 210px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.recommend-grid .hotel-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.recommend-grid .hotel-card:hover img {
    transform: scale(1.06);
}

.recommend-grid .hotel-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.recommend-grid .hotel-body .price {
    margin-top: auto;
    border-top: 1px solid var(--line);
    padding-top: 14px;
}

/* تنسيق كروت الشركاء */
.partners-grid .partner-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 14px 42px rgba(16, 24, 40, 0.07);
    padding: 0 22px 24px;
    text-align: center;
    transition: 0.25s;
}

.partners-grid .partner-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.partners-grid .partner-cover {
    height: 130px;
    margin: 0 -22px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
}

.partners-grid .partner-cover:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5, 16, 54, 0.05),
        rgba(5, 16, 54, 0.35)
    );
}

.partners-grid .partner-avatar {
    width: 94px;
    height: 94px;
    margin: -48px auto 12px;
    border: 5px solid #fff;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 30px rgba(16, 24, 40, 0.18);
}

.partners-grid .partner-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partners-grid .partner-badge {
    display: inline-flex;
    background: #fff0f1;
    color: var(--red);
    border-radius: 999px;
    padding: 6px 12px;
    font-weight: 900;
    font-size: 12px;
    margin-bottom: 10px;
}

.partners-grid .partner-card h3 {
    font-size: 22px;
    margin: 4px 0 8px;
    color: #10203b;
}

.partners-grid .partner-card p {
    color: #667085;
    line-height: 1.8;
    flex: 1;
}

.partners-grid .partner-stats {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 18px 0 0;
}

.partners-grid .partner-stats span {
    background: #f6f8fb;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 900;
    color: #344054;
}

/* ========================================
   تصميم متجاوب للشبكات
   ======================================== */

@media (max-width: 1000px) {
    .ti-service-archive-grid,
    .recommend-grid,
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .ti-service-archive-grid,
    .recommend-grid,
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ========================================
   إصلاحات إضافية للغة العربية
   ======================================== */

/* ترجمة النصوص الثابتة إلى العربية */
.price strong::before {
    content: "من ";
    font-weight: 400;
    color: #667085;
}

/* تحسين عرض النصوص العربية */
* {
    font-family: var(--font);
}

/* تنسيق روابط عرض التفاصيل */
.view-link {
    color: var(--red);
    font-weight: 800;
    text-decoration: none;
}

.view-link:hover {
    text-decoration: underline;
}

/* تحسين تنسيق البطاقات الفارغة */
.content-panel {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    background: #f8fafc;
    border-radius: 24px;
    color: #667085;
    font-size: 18px;
}

/* تحسين تنسيق أزرار التصفية */
.tabs-line {
    display: flex;
    gap: 10px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}

.tabs-line button {
    border: 0;
    border-radius: 99px;
    background: #f3f6fb;
    color: #344054;
    padding: 10px 18px;
    font-weight: 900;
    cursor: pointer;
}

.tabs-line button.active {
    background: var(--red);
    color: #fff;
    box-shadow: 0 10px 25px rgba(216, 35, 42, 0.18);
}
