/* ============================================================
   FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&family=Cairo:wght@400;600;700;900&display=swap');

/* ============================================================
   HERO WRAPPER
   ============================================================ */
.cao-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  max-height: 950px;
  overflow: hidden;
  background: #06121f;
  font-family: 'Inter', sans-serif;
  user-select: none;
  -webkit-user-select: none;
}

/* RTL root */
.cao-hero.is-rtl {
  direction: rtl;
  font-family: 'Cairo', sans-serif;
}

/* ============================================================
   SLIDES TRACK
   ============================================================ */
.cao-hero__track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cao-hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.4s cubic-bezier(0.4,0,0.2,1);
}

.cao-hero__slide.is-active {
  opacity: 1;
  z-index: 2;
}

/* ============================================================
   BG IMAGE + KEN BURNS
   ============================================================ */
.cao-hero__bg {
  position: absolute;
  inset: -4%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.08);
  transition: transform 7s ease-out;
  will-change: transform;
}

.cao-hero__slide.is-active .cao-hero__bg {
  transform: scale(1.0);
}

/* ============================================================
   OVERLAY — dark gradient from left (flips in RTL)
   ============================================================ */
.cao-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(6,18,31,0.82) 0%,
    rgba(6,18,31,0.55) 38%,
    rgba(6,18,31,0.18) 68%,
    rgba(6,18,31,0.05) 100%
  );
}

.cao-hero.is-rtl .cao-hero__overlay {
  background: linear-gradient(
    270deg,
    rgba(6,18,31,0.82) 0%,
    rgba(6,18,31,0.55) 38%,
    rgba(6,18,31,0.18) 68%,
    rgba(6,18,31,0.05) 100%
  );
}

/* ============================================================
   CONTENT
   ============================================================ */
.cao-hero__content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 0 7% 90px;
}

.cao-hero.is-rtl .cao-hero__content {
  justify-content: flex-end;
}

.cao-hero__inner {
  max-width: 580px;
}

.cao-hero.is-rtl .cao-hero__inner {
  text-align: right;
}

/* ---- BADGE ---- */
.cao-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 100px;
  padding: 7px 20px;
  margin-bottom: 22px;

  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease 0.25s, transform 0.7s ease 0.25s;
}

.cao-hero__slide.is-active .cao-hero__badge { opacity:1; transform:translateY(0); }

.cao-hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #6CB4E4;
  flex-shrink: 0;
  animation: dotBlink 2.2s ease-in-out infinite;
}
@keyframes dotBlink {
  0%,100% { opacity:1; box-shadow: 0 0 0 0 rgba(108,180,228,0.5); }
  50%      { opacity:.5; box-shadow: 0 0 0 5px rgba(108,180,228,0); }
}

.cao-hero__badge-label {
  color: rgba(255,255,255,0.88);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}
.cao-hero.is-rtl .cao-hero__badge-label {
  letter-spacing: 0;
  font-size: 0.82rem;
  font-family: 'Cairo', sans-serif;
}

/* ---- TITLE ---- */
.cao-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);

  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease 0.45s, transform 0.8s ease 0.45s;
}
.cao-hero__slide.is-active .cao-hero__title { opacity:1; transform:translateY(0); }

.cao-hero__title em {
  font-style: italic;
  color: #6CB4E4;
}

.cao-hero.is-rtl .cao-hero__title {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.45;
  font-style: normal;
}

/* ---- SUBTITLE ---- */
.cao-hero__subtitle {
  font-size: clamp(0.93rem, 1.7vw, 1.12rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  font-weight: 300;
  max-width: 470px;
  margin-bottom: 38px;

  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease 0.65s, transform 0.8s ease 0.65s;
}
.cao-hero__slide.is-active .cao-hero__subtitle { opacity:1; transform:translateY(0); }

.cao-hero.is-rtl .cao-hero__subtitle {
  font-family: 'Cairo', sans-serif;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.7vw, 1.1rem);
}

/* ---- BUTTONS ---- */
.cao-hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;

  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.85s, transform 0.8s ease 0.85s;
}
.cao-hero__slide.is-active .cao-hero__btns { opacity:1; transform:translateY(0); }

.cao-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  white-space: nowrap;
}
.cao-hero.is-rtl .cao-hero__btn { font-family:'Cairo',sans-serif; letter-spacing:0; }

.cao-hero__btn::after {
  content:'';
  position:absolute;
  inset:0;
  background:rgba(255,255,255,0.13);
  opacity:0;
  transition:opacity 0.3s ease;
}
.cao-hero__btn:hover::after { opacity:1; }
.cao-hero__btn:hover { transform:translateY(-3px); }

.cao-hero__btn--primary {
  background: linear-gradient(135deg,#2a6bcc,#6CB4E4);
  color:#fff;
  box-shadow: 0 8px 28px rgba(42,107,204,0.42);
}
.cao-hero__btn--primary:hover { box-shadow:0 14px 38px rgba(42,107,204,0.58); color: #fff;}

.cao-hero__btn--ghost {
  background: rgba(255,255,255,0.09);
  color:#fff;
  border:1.5px solid rgba(255,255,255,0.28);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.cao-hero__btn--ghost:hover { background:rgba(255,255,255,0.17); color: #fff;}

.cao-hero__btn-arrow {
  display:inline-block;
  font-style:normal;
  transition:transform 0.28s ease;
  font-size:1.1em;
}
.cao-hero__btn:hover .cao-hero__btn-arrow { transform:translateX(4px); }
.cao-hero.is-rtl .cao-hero__btn:hover .cao-hero__btn-arrow { transform:translateX(-4px); }

/* ============================================================
   NAV ARROWS
   ============================================================ */
.cao-hero__arrow {
  position:absolute !important;
  top:50%;
  transform:translateY(-50%);
  z-index:20;
  width:50px; height:50px;
  border-radius:50%;
  background:rgba(255,255,255,0.09);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border:1.5px solid rgba(255,255,255,0.22);
  color:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all 0.28s ease;
  outline:none;
}
.cao-hero__arrow:hover {
  background:rgba(42,107,204,0.55);
  border-color:rgba(108,180,228,0.5);
  transform:translateY(-50%) scale(1.1);
}

.cao-hero__arrow--prev { inset-inline-start: 22px !important; inset-inline-end: auto !important; }
.cao-hero__arrow--next { inset-inline-end: 22px !important; inset-inline-start: auto !important; }

/* ============================================================
   DOTS
   ============================================================ */
.cao-hero__dots {
  position:absolute;
  bottom:34px;
  left:50%;
  transform:translateX(-50%);
  z-index:20;
  display:flex;
  align-items:center;
  gap:9px;
}

.cao-hero__dot {
  width:8px; height:8px;
  border-radius:100px;
  background:rgba(255,255,255,0.30);
  cursor:pointer;
  border:none;
  outline:none;
  padding:0;
  transition:all 0.38s ease;
}
.cao-hero__dot.is-active {
  background:#6CB4E4;
  width:18px;
}

/* ============================================================
   COUNTER
   ============================================================ */
.cao-hero__counter {
  position:absolute;
  bottom:26px;
  right:6%;
  z-index:20;
  display:flex;
  align-items:baseline;
  gap:4px;
  color:rgba(255,255,255,0.45);
  font-size:0.78rem;
  font-weight:500;
  letter-spacing:0.06em;
}
.cao-hero.is-rtl .cao-hero__counter { right:auto; left:6%; letter-spacing:0; font-family:'Cairo',sans-serif; }

.cao-hero__counter-cur {
  font-size:1.15rem;
  font-weight:700;
  color:#fff;
}

/* ============================================================
   SCROLL HINT
   ============================================================ */
.cao-hero__scroll {
  position:absolute;
  bottom:22px;
  left:6%;
  z-index:20;
  display:flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
  transition:opacity 0.3s ease;
}
.cao-hero__scroll:hover { opacity:0.7; }
.cao-hero.is-rtl .cao-hero__scroll { left:auto; right:6%; }

.cao-hero__scroll-text {
  color:rgba(255,255,255,0.42);
  font-size:0.7rem;
  letter-spacing:0.18em;
  text-transform:uppercase;
}
.cao-hero.is-rtl .cao-hero__scroll-text {
  letter-spacing:0.04em;
  font-family:'Cairo',sans-serif;
  font-size:0.75rem;
}

.cao-hero__scroll-icon {
  display:flex;
  flex-direction:column;
  gap:2px;
}
.cao-hero__scroll-icon span {
  display:block;
  width:16px;
  height:2px;
  background:rgba(255,255,255,0.4);
  border-radius:2px;
  animation:scrollHint 1.8s ease-in-out infinite;
}
.cao-hero__scroll-icon span:nth-child(2) { animation-delay:0.15s; }
.cao-hero__scroll-icon span:nth-child(3) { animation-delay:0.30s; }

@keyframes scrollHint {
  0%,60%,100% { opacity:.4; transform:translateX(0); }
  30%          { opacity:1;  transform:translateX(3px); }
}

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.cao-hero__progress {
  position:absolute;
  bottom:0; left:0; right:0;
  height:3px;
  background:rgba(255,255,255,0.08);
  z-index:20;
}
.cao-hero__progress-fill {
  height:100%;
  background:linear-gradient(90deg,#2a6bcc,#6CB4E4);
  width:0%;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width:900px) {
  .cao-hero__content { padding:0 5% 90px; }
  .cao-hero__inner { max-width:100%; }

  .cao-hero.is-rtl .cao-hero__content { justify-content:flex-start; }

  .cao-hero__overlay,
  .cao-hero.is-rtl .cao-hero__overlay {
    background: linear-gradient(
      to top,
      rgba(6,18,31,0.88) 0%,
      rgba(6,18,31,0.60) 38%,
      rgba(6,18,31,0.22) 70%,
      transparent 100%
    ) !important;
  }

  .cao-hero__content { align-items: var(--mobile-content-pos, flex-end) !important; }

  .cao-hero__title { font-size:clamp(2rem,7.5vw,2.9rem); }
  .cao-hero.is-rtl .cao-hero__title { font-size:clamp(1.9rem,7vw,2.7rem); }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width:600px) {
  .cao-hero { height:100svh; min-height:520px; max-height:100vh; }

  .cao-hero__title { font-size:clamp(1.8rem,9vw,2.5rem); }
  .cao-hero.is-rtl .cao-hero__title { font-size:clamp(1.7rem,8.5vw,2.3rem); }

  .cao-hero__subtitle { font-size:0.9rem; }

  .cao-hero__btns { flex-direction:column; }
  .cao-hero__btn  { width:100%; justify-content:center; padding:13px 24px; }

  .cao-hero__arrow { width:40px; height:40px; }
  .cao-hero__arrow--prev { inset-inline-start: 10px !important; inset-inline-end: auto !important; }
  .cao-hero__arrow--next { inset-inline-end: 10px !important; inset-inline-start: auto !important; }

  .cao-hero__scroll  { display:none; }
  .cao-hero__counter { display:none; }
}

/* ============================================================
   FEATURES WIDGET
   ============================================================ */
.cao-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 15px 60px;
}

@media (max-width: 992px) {
  .cao-features-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 60px; /* larger row gap to accommodate overlapping icon */
  }
}

@media (max-width: 576px) {
  .cao-features-grid {
    grid-template-columns: 1fr;
  }
  .cao-features-grid.cao-features-grid--mobile-2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.cao-feature-card {
  position: relative;
  background-color: #ffffff;
  border: 2px solid #1c2635;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  padding: 10px; /* Space for inner border */
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.cao-feature-card__inner {
  flex-grow: 1;
  border: 2px dashed transparent;
  border-radius: 12px;
  padding: 30px 15px 50px; /* extra bottom padding for icon */
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cao-feature-card__title {
  font-family: 'Cairo', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1c2635;
  margin: 0 0 15px;
  transition: color 0.3s ease;
}

.cao-feature-card__desc {
  font-family: 'Cairo', sans-serif;
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
  transition: color 0.3s ease;
}

/* Icon Wrapper overlapping bottom border */
.cao-feature-card__icon-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 2;
}

.cao-feature-card__icon {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border: 2px solid #1c2635;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 18px;
}

.cao-feature-card__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: filter 0.3s ease;
}

/* Hover States */
.cao-feature-card:hover {
  background-color: #1c2635;
  border-color: #1c2635;
}

.cao-feature-card:hover .cao-feature-card__inner {
  border-color: rgba(255, 255, 255, 0.5);
}

.cao-feature-card:hover .cao-feature-card__title,
.cao-feature-card:hover .cao-feature-card__desc {
  color: #ffffff;
}

.cao-feature-card:hover .cao-feature-card__icon {
  background-color: #1c2635;
  border-color: #ffffff;
}

.cao-feature-card:hover .cao-feature-card__icon img {
  filter: invert(1) brightness(100);
}

/* ============================================================
   ABOUT CHEF WIDGET
   ============================================================ */
.cao-about-section {
  padding: 60px 15px;
  background-color: #f4f6f8; /* very light grey background like the image */
}

.cao-about-section__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

@media (max-width: 992px) {
  .cao-about-section__container {
    grid-template-columns: 1fr;
  }
}

.cao-about-section__content {
  display: flex;
  flex-direction: column;
}

.cao-about-section__main-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: #1c2635;
  line-height: 1.3;
  margin: 0 0 40px;
  text-align: left;
}

.is-rtl .cao-about-section__main-title,
[dir="rtl"] .cao-about-section__main-title {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  text-align: right;
}

.cao-about-section__subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: #1c2635;
  margin: 0 0 20px;
}

.is-rtl .cao-about-section__subtitle,
[dir="rtl"] .cao-about-section__subtitle {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
}

.cao-about-section__desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cao-about-section__desc p {
  margin-bottom: 15px;
}

.cao-about-section__desc ul {
  padding-inline-start: 20px;
  margin-bottom: 15px;
}

.cao-about-section__desc li {
  margin-bottom: 5px;
}

.is-rtl .cao-about-section__desc,
[dir="rtl"] .cao-about-section__desc {
  font-family: 'Cairo', sans-serif;
}

.cao-about-section__link {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #1c2635;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: 40px;
  display: inline-block;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.cao-about-section__link:hover {
  opacity: 0.7;
}

.is-rtl .cao-about-section__link,
[dir="rtl"] .cao-about-section__link {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
}

/* Stats Block */
.cao-about-section__stats {
  background-color: #1c2635;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.cao-about-section__stat-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 100px;
  position: relative;
}

/* Add dividers between items */
.cao-about-section__stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  right: -10px; /* Adjust based on gap */
  width: 1px;
  border-right: 1px dashed rgba(255, 255, 255, 0.4);
}

.is-rtl .cao-about-section__stat-item:not(:last-child)::after,
[dir="rtl"] .cao-about-section__stat-item:not(:last-child)::after {
  right: auto;
  left: -10px;
  border-right: none;
  border-left: 1px dashed rgba(255, 255, 255, 0.4);
}

@media (max-width: 600px) {
  .cao-about-section__stat-item {
    min-width: 45%;
  }
  .cao-about-section__stat-item:nth-child(2n)::after {
    display: none;
  }
}

.cao-about-section__stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 5px;
}

.is-rtl .cao-about-section__stat-num,
[dir="rtl"] .cao-about-section__stat-num {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
}

.cao-about-section__stat-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.is-rtl .cao-about-section__stat-lbl,
[dir="rtl"] .cao-about-section__stat-lbl {
  font-family: 'Cairo', sans-serif;
}

/* Image */
.cao-about-section__image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cao-about-section__image-wrapper {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background-color: #ffffff; /* Fallback if image has transparent bg */
}

.cao-about-section__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   PATH TO EXCELLENCE WIDGET
   ============================================================ */
.cao-path-section {
  padding: 60px 15px 100px;
  background-color: #f8fafc;
}

.cao-path-heading {
  text-align: left;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.is-rtl .cao-path-heading,
[dir="rtl"] .cao-path-heading {
  text-align: right;
}

.cao-path-heading__main {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #1c2635;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.cao-path-heading__sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #1c2635;
  margin: 0 0 0 50px;
  font-weight: 400;
}

.is-rtl .cao-path-heading__main,
.is-rtl .cao-path-heading__sub,
[dir="rtl"] .cao-path-heading__main,
[dir="rtl"] .cao-path-heading__sub {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  text-transform: none;
}

.is-rtl .cao-path-heading__sub,
[dir="rtl"] .cao-path-heading__sub {
  margin: 0 50px 0 0;
}

/* Grid Layout */
.cao-path-grid {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.cao-path-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
}

.cao-path-col--center {
  justify-content: center;
  align-items: center;
}

/* Center Circle */
.cao-path-center-circle {
  width: 300px;
  height: 300px;
  flex-shrink: 0;
  background-color: #1c2635;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(28, 38, 53, 0.2);
  z-index: 5;
  position: relative;
}

.cao-path-center-circle__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin: 0 0 15px;
  line-height: 1.3;
  color: #ffffff;
}

.cao-path-center-circle__sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
  color: #ffffff;
}

.is-rtl .cao-path-center-circle__title,
.is-rtl .cao-path-center-circle__sub,
[dir="rtl"] .cao-path-center-circle__title,
[dir="rtl"] .cao-path-center-circle__sub {
  font-family: 'Cairo', sans-serif;
}

/* Cards */
.cao-path-card {
  background-color: #ffffff;
  border: 2px solid #1c2635;
  border-radius: 16px;
  padding: 35px 25px 50px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cao-path-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #1c2635;
  margin: 0 0 15px;
}

.cao-path-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

.is-rtl .cao-path-card__title,
.is-rtl .cao-path-card__desc,
[dir="rtl"] .cao-path-card__title,
[dir="rtl"] .cao-path-card__desc {
  font-family: 'Cairo', sans-serif;
}

/* Number Circle */
.cao-path-card__num {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 64px;
  height: 64px;
  background-color: #ffffff;
  border: 2px solid #1c2635;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #1c2635;
  z-index: 3;
}

.is-rtl .cao-path-card__num,
[dir="rtl"] .cao-path-card__num {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
}

/* Connecting Lines (Dashed curved) */
.cao-path-card__line {
  position: absolute;
  z-index: 1;
  opacity: 0.4;
  width: calc(50% + 40px); /* Extends towards the center */
  height: 60px; /* Height of the curve */
}

/* Card 1 Line (Top Left) */
.cao-path-card--1 .cao-path-card__line {
  top: calc(100% - 20px); 
  left: calc(50% + 36px); 
  border-bottom: 1.5px dashed #1c2635;
  border-left: 1.5px dashed #1c2635;
  border-bottom-left-radius: 40px;
}
.is-rtl .cao-path-card--1 .cao-path-card__line,
[dir="rtl"] .cao-path-card--1 .cao-path-card__line {
  left: auto; right: calc(50% + 36px);
  border-left: none; border-right: 1.5px dashed #1c2635;
  border-bottom-left-radius: 0; border-bottom-right-radius: 40px;
}

/* Card 2 Line (Top Right) */
.cao-path-card--2 .cao-path-card__line {
  top: calc(100% - 20px);
  right: calc(50% + 36px);
  border-bottom: 1.5px dashed #1c2635;
  border-right: 1.5px dashed #1c2635;
  border-bottom-right-radius: 40px;
}
.is-rtl .cao-path-card--2 .cao-path-card__line,
[dir="rtl"] .cao-path-card--2 .cao-path-card__line {
  right: auto; left: calc(50% + 36px);
  border-right: none; border-left: 1.5px dashed #1c2635;
  border-bottom-right-radius: 0; border-bottom-left-radius: 40px;
}

/* Card 3 Line (Bottom Left) */
.cao-path-card--3 .cao-path-card__line {
  bottom: calc(100% - 20px);
  left: calc(50% + 36px);
  border-top: 1.5px dashed #1c2635;
  border-left: 1.5px dashed #1c2635;
  border-top-left-radius: 40px;
}
.is-rtl .cao-path-card--3 .cao-path-card__line,
[dir="rtl"] .cao-path-card--3 .cao-path-card__line {
  left: auto; right: calc(50% + 36px);
  border-left: none; border-right: 1.5px dashed #1c2635;
  border-top-left-radius: 0; border-top-right-radius: 40px;
}

/* Card 4 Line (Bottom Right) */
.cao-path-card--4 .cao-path-card__line {
  bottom: calc(100% - 20px);
  right: calc(50% + 36px);
  border-top: 1.5px dashed #1c2635;
  border-right: 1.5px dashed #1c2635;
  border-top-right-radius: 40px;
}
.is-rtl .cao-path-card--4 .cao-path-card__line,
[dir="rtl"] .cao-path-card--4 .cao-path-card__line {
  right: auto; left: calc(50% + 36px);
  border-right: none; border-left: 1.5px dashed #1c2635;
  border-top-right-radius: 0; border-top-left-radius: 40px;
}


/* Responsive Tablet */
@media (max-width: 992px) {
  .cao-path-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px 30px;
  }
  .cao-path-col--center {
    grid-column: 1 / -1;
    grid-row: 1; /* Center circle on top */
    max-width: 300px;
    margin: 0 auto;
  }
  .cao-path-col {
    gap: 60px;
  }
  .cao-path-card__line {
    display: none; /* Hide dashed lines on smaller screens where layout stacks */
  }
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .cao-path-grid, .cao-path-grid--mobile-1 {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .cao-path-grid.cao-path-grid--mobile-2 {
    display: flex !important;
    flex-wrap: wrap;
    gap: 20px;
  }
  .cao-path-grid.cao-path-grid--mobile-2 .cao-path-col {
    display: contents;
  }
  .cao-path-grid.cao-path-grid--mobile-2 .cao-path-col--center {
    display: flex;
    width: 100%;
    order: -1;
    margin-bottom: 20px;
  }
  .cao-path-grid.cao-path-grid--mobile-2 .cao-path-card {
    width: calc(50% - 10px) !important;
    flex-grow: 1 !important; 
    padding: 20px 15px 30px; /* slightly smaller padding for 2 cols */
  }

  .cao-path-heading__sub {
    margin: 0;
  }
  .cao-path-grid:not(.cao-path-grid--mobile-2) .cao-path-card {
    padding: 30px 20px 45px;
  }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.cao-faq-section {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
}
.cao-faq-header {
  margin-bottom: 40px;
}
.cao-faq-header__subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  text-transform: uppercase;
  color: #1a2a3a;
  margin: 0 0 10px 0;
  font-weight: 500;
}
.cao-faq-header__title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #1a2a3a;
  margin: 0 0 0 40px;
  font-weight: 500;
}
.is-rtl .cao-faq-header__title {
  margin: 0 40px 0 0;
}
.cao-faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cao-faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.cao-faq-item.is-active {
  background: #e4f2fa;
  border-color: #cce4f2;
}
.cao-faq-item__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #1a2a3a;
  outline: none;
}
.is-rtl .cao-faq-item__header {
  flex-direction: row-reverse;
}
.cao-faq-item__title {
  flex: 1;
  text-align: left;
  padding-right: 15px;
}
.is-rtl .cao-faq-item__title {
  text-align: right;
  padding-right: 0;
  padding-left: 15px;
}
.cao-faq-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a2a3a;
}
.cao-faq-item__content {
  padding: 0 30px 24px 30px;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}
.cao-faq-item__inner {
  font-family: 'Inter', sans-serif;
}

/* ============================================================
   SECTION HEADING WIDGET
   ============================================================ */
.cao-section-heading {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.cao-section-heading__line1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  text-transform: uppercase;
  color: #1a2a3a;
  margin-bottom: -15px; /* Default overlap */
  font-weight: 500;
  z-index: 1;
}
.cao-section-heading__line2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #1a2a3a;
  margin-left: 60px; /* Default indent */
  font-weight: 500;
  z-index: 2;
}
.is-rtl .cao-section-heading__line2 {
  margin-left: 0;
  margin-right: 60px;
}
@media (max-width: 768px) {
  .cao-section-heading__line1 { font-size: 32px; }
  .cao-section-heading__line2 { font-size: 24px; margin-left: 30px; }
  .is-rtl .cao-section-heading__line2 { margin-left: 0; margin-right: 30px; }
}

/* ============================================================
   JOURNEY WIDGET (GLASSMORPHISM CARDS)
   ============================================================ */
.cao-journey-section {
  width: 100%;
}
.cao-journey-content {
  margin-bottom: 50px;
}
.cao-journey-content__title {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 500;
}
.cao-journey-content__desc {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: #ffffff;
  max-width: 800px;
  line-height: 1.6;
}
.cao-journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.cao-journey-card {
  background: rgba(18, 38, 58, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}
.cao-journey-card:hover {
  background: rgba(18, 38, 58, 0.65);
  transform: translateY(-5px);
}
.cao-journey-card__icon {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cao-journey-card__icon img {
  max-width: 70px;
  height: auto;
}
.cao-journey-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 500;
}
.cao-journey-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .cao-journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .cao-journey-grid {
    grid-template-columns: 1fr;
  }
  .cao-journey-content__title {
    font-size: 34px;
  }
  .cao-journey-content__desc {
    font-size: 17px;
  }
}


/* ============================================================
   DESTINATIONS WIDGET
   ============================================================ */
.cao-destinations-section {
  width: 100%;
  padding: 40px 0;
  text-align: center;
}
.cao-destinations-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #1a2a3a;
  margin-bottom: 50px;
  font-weight: 500;
  line-height: 1.2;
}
.cao-destinations-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
}
.cao-destination-item {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cao-destination-item__link {
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease;
}
.cao-destination-item__link:hover {
  transform: translateY(-5px);
}
.cao-destination-item__img {
  margin-bottom: 20px;
  width: 100%;
}
.cao-destination-item__img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.cao-destination-item__title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #1a2a3a;
  margin: 0;
  font-weight: 500;
}
.cao-destination-divider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}
.cao-destination-divider {
  height: 100%;
  min-height: 150px;
  border-left: 2px dashed #a0b0c0;
}

@media (max-width: 992px) {
  .cao-destinations-grid {
    flex-direction: column;
    align-items: center;
  }
  .cao-destination-item {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .cao-destination-divider-wrapper {
    display: none;
  }
}


/* ============================================================
   RECOMMENDED PRODUCTS
   ============================================================ */
.cao-recommended-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  padding: 40px 15px;
}
.cao-rec-header {
  margin-bottom: 30px;
}
.cao-rec-header__main {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  text-transform: uppercase;
  color: #1a2a3a;
  margin: 0 0 5px 0;
  font-weight: 500;
}
.cao-rec-header__sub {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #1a2a3a;
  margin: 0 0 0 50px;
  font-weight: 500;
}
.is-rtl .cao-rec-header__sub,
[dir="rtl"] .cao-rec-header__sub {
  margin: 0 50px 0 0;
}

.cao-rec-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.cao-rec-sidebar {
  width: 250px;
  flex-shrink: 0;
}
.cao-rec-sidebar__heading {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  text-transform: uppercase;
  color: #1a2a3a;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 10px;
}
.cao-rec-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cao-rec-sidebar__item {
  margin-bottom: 12px;
}
.cao-rec-sidebar__item a {
  text-decoration: none;
  color: #6b7280;
  font-size: 16px;
  transition: color 0.3s ease;
}
.cao-rec-sidebar__item a:hover,
.cao-rec-sidebar__item.is-active a {
  color: #1a2a3a;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cao-rec-products {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cao-rec-product {
  background: transparent;
  display: flex;
  flex-direction: column;
}
.cao-rec-product__image-wrap {
  position: relative;
  overflow: hidden;
  background: #f9f9f9;
}
.cao-rec-product__image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}
.cao-rec-product__cart-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1c2635;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 15px;
  font-size: 12px;
  text-transform: capitalize;
  transition: all 0.3s ease;
}
.cao-rec-product__cart-btn:hover {
  background: #2a3a50;
  color: #fff;
}

.cao-rec-product__info {
  padding: 15px 0;
}
.cao-rec-product__name {
  font-size: 14px;
  color: #1a2a3a;
  margin: 0 0 8px 0;
  font-weight: 500;
}
.cao-rec-product__prices {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.cao-rec-product__price-sale {
  color: #e63946;
  font-weight: 600;
  font-size: 14px;
}
.cao-rec-product__price-regular {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 13px;
}
.cao-rec-product__rating-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cao-rec-product__reviews {
  font-size: 11px;
  color: #6b7280;
}
.cao-rec-product__stars {
  display: flex;
  gap: 2px;
}

/* Responsive */
@media (max-width: 992px) {
  .cao-rec-container {
    flex-direction: column;
  }
  .cao-rec-sidebar {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .cao-rec-products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .cao-rec-products {
    grid-template-columns: 1fr;
  }
}

