
    :root {
      --gold: #b6a06a;
      --black: #111111;
      --charcoal: #1c1a1a;
      --cream: #f7f2ea;
      --white: #ffffff;
      --grey: #b9b9b9;

    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--black);
      background: var(--cream);
      line-height: 1.6;
    }

    h1, h2, h3 {
      font-family: Georgia, 'Times New Roman', serif;
      font-weight: 400;
      letter-spacing: 0.5px;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .topbar {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 10;
      padding: 26px 7%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--white);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 700;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      font-size: 14px;
    }

    .logo-mark {
      width: 74px;
      height: 34px;
      background: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--black);
      font-family: Georgia, serif;
      font-size: 22px;
      font-weight: bold;
    }





    /* ===== HERO SLIDER FIX ===== */
    .hero {
      padding: 0;
      position: relative;
    }

    .slider {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }

    .slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      display: flex;
      align-items: center;
      padding: 0 7%;
      color: var(--white);
    }

    .slide::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.55);
    }

    .slide.active {
      opacity: 1;
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 760px;
      margin-top: 70px;
    }

    /* arrows */
    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 40px;
      color: white;
      cursor: pointer;
      z-index: 5;
      padding: 10px;
    }

    .arrow.left { left: 20px; }
    .arrow.right { right: 20px; }

    /* dots */
    .dots {
      position: absolute;
      bottom: 30px;
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 10px;
      z-index: 5;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #ccc;
      cursor: pointer;
    }

    .dot.active {
      background: var(--gold);
    }





    .eyebrow {
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 3px;
      font-size: 13px;
      margin-bottom: 22px;
      font-weight: 700;
    }

    .hero h1 {
      font-size: clamp(48px, 7vw, 82px);
      line-height: 0.98;
      margin-bottom: 26px;
    }

    .hero p {
      max-width: 600px;
      font-size: 20px;
      color: #eee;
      margin-bottom: 36px;
    }

    .buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn {
      padding: 15px 28px;
      border: 1px solid var(--gold);
      text-transform: uppercase;
      font-size: 12px;
      letter-spacing: 1.5px;
      transition: 0.3s ease;
    }

    .btn.primary {
      background: var(--gold);
      color: var(--black);
    }

    .btn.secondary {
      color: var(--white);
    }

    .btn:hover {
      transform: translateY(-2px);
      background: var(--gold);
      color: var(--black);
    }

    section {
      padding: 44px 7%;
      padding-top: 10px;
    }

    .intro {
      background: var(--white);
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 70px;
      align-items: center;
    }

    .intro h2,
    .section-title h2 {
      font-size: clamp(34px, 4vw, 58px);
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .intro p {
      font-size: 18px;
      color: #444;
      margin-bottom: 20px;
    }

    .signature-line {
      height: 2px;
      width: 90px;
      background: var(--gold);
      margin: 30px 0;
    }

    .intro-card {
      background: var(--black);
      color: var(--white);
      padding: 44px;
      border-top: 5px solid var(--gold);
    }

    .intro-card h3 {
      font-size: 30px;
      margin-bottom: 18px;
    }

    .intro-card ul {
      list-style: none;
    }

    .intro-card li {
      padding: 13px 0;
      border-bottom: 1px solid rgba(255,255,255,0.14);
      color: #ddd;
    }

    .pathways {
      background: var(--charcoal);
      color: var(--white);
      text-align: center;
    }

    .pathways .section-title p,
    .destinations .section-title p,
    .experiences .section-title p {
      max-width: 650px;
      margin: 0 auto 45px;
      color: var(--grey);
      font-size: 17px;
    }

    .pathway-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 26px;
    }

    .pathway {
      min-height: 430px;
      padding: 46px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      text-align: left;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }

    .pathway::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.82));
    }

    .pathway > * {
      position: relative;
      z-index: 1;
    }

    .pathway h3 {
      font-size: 38px;
      margin-bottom: 12px;
    }

    .pathway p {
      color: #e8e8e8;
      max-width: 470px;
      margin-bottom: 22px;
    }

    .luxury {
      background-image: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=1200&q=80');
    }

    .packages {
      background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1200&q=80');
    }

    .destinations {
      background: var(--cream);
    }

    .section-title {
      text-align: center;
      margin-bottom: 30px;
    }

    .destination-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .destination {
      min-height: 360px;
      background-size: cover;
      background-position: center;
      position: relative;
      display: flex;
      align-items: flex-end;
      padding: 28px;
      color: var(--white);
      overflow: hidden;
    }

    .destination::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.78));
    }

    .destination h3, .destination span {
      position: relative;
      z-index: 1;
    }

    .destination h3 {
      font-size: 28px;
      margin-bottom: 6px;
    }

    .destination span {
      color: var(--gold);
      text-transform: uppercase;
      font-size: 12px;
      letter-spacing: 1.5px;
    }

    .d1 { background-image: url('https://images.unsplash.com/photo-1573843981267-be1999ff37cd?auto=format&fit=crop&w=900&q=80'); }
    .d2 { background-image: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80'); }
    .d3 { background-image: url('https://images.unsplash.com/photo-1505761671935-60b3a7427bad?auto=format&fit=crop&w=900&q=80'); }
    .d4 { background-image: url('https://images.unsplash.com/photo-1518684079-3c830dcef090?auto=format&fit=crop&w=900&q=80'); }

    /* section */
.services {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* wrapper */
.services-slider {
  overflow: hidden;
}

/* track */
.service-grid {
  display: flex; /* بدل grid */
  gap: 22px;
  transition: transform 0.5s ease;
}

/* card */
.service {
  flex: 0 0 calc(25% - 16.5px); /* 4 في الصف */
  padding: 34px;
  border: 1px solid #e5ddcf;
  background: #fff;
  min-height: 260px;
}

/* content */
.service .number {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 28px;
  display: block;
}

.service h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.service p {
  color: #555;
}

/* arrows */
.srv-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--black);
  color: var(--white);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.srv-arrow.left { left: 30px; }
.srv-arrow.right { right: 30px; }

/* responsive */
@media (max-width: 980px) {
  .service { flex: 0 0 50%; } /* 2 */
}

@media (max-width: 620px) {
  .service { flex: 0 0 100%; } /* 1 */
}

    .experiences {
      background: var(--black);
      color: var(--white);
    }

    .experience-row {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 22px;
    }

    .experience {
      min-height: 420px;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: flex-end;
      padding: 30px;
      position: relative;
    }

    .experience::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.8));
    }

    .experience div {
      position: relative;
      z-index: 1;
    }

    .experience h3 {
      font-size: 30px;
      margin-bottom: 8px;
    }




    .trust-logos{
    display:flex;
    flex-wrap:wrap;
    gap:25px;
    justify-content:center;
}

.trust-logo{
    width:220px;
    min-height:140px;

    background:#fff;
    border-radius:16px;

    padding:20px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

    transition:.3s;
}

.trust-logo:hover{
    transform:translateY(-5px);
}

.trust-logo img{
    max-width:120px;
    max-height:70px;
    object-fit:contain;
    margin-bottom:15px;
}

.trust-logo span{
    font-weight:600;
    text-align:center;
}



    .cta {
      background:
        linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
        url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1800&q=80');
      background-size: cover;
      background-position: center;
      text-align: center;
      color: var(--white);
    }

    .cta h2 {
      font-size: clamp(36px, 5vw, 66px);
      margin-bottom: 20px;
    }

    .cta p {
      max-width: 640px;
      margin: 0 auto 34px;
      color: #e6e6e6;
      font-size: 19px;
    }

    footer {
      background: #080808;
      color: var(--white);
      padding: 60px 7% 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 42px;
    }

    footer h3 {
      color: var(--gold);
      margin-bottom: 16px;
      font-size: 22px;
    }

    footer p, footer li {
      color: #cfcfcf;
      font-size: 14px;
      margin-bottom: 10px;
      list-style: none;
    }

    .copyright {
      border-top: 1px solid rgba(255,255,255,0.12);
      padding-top: 24px;
      color: #aaa;
      font-size: 13px;
    }

    @media (max-width: 980px) {
      nav { display: none; }
      .intro, .pathway-grid, .experience-row, .footer-grid { grid-template-columns: 1fr; }
      .destination-grid, .service-grid, .trust-logos { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 620px) {
      .destination-grid, .service-grid, .trust-logos { grid-template-columns: 1fr; }
      section { padding: 70px 6%; }
      .hero p { font-size: 17px; }
      .topbar { padding: 22px 6%; }
    }




    /* Overlay */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.4);
      opacity: 0;
      visibility: hidden;
      transition: 0.3s;
      z-index: 998;
    }

    /* Side Menu */
    .side-menu {
      position: fixed;
      top: 0;
      right: -300px;
      width: 280px;
      height: 100%;
      background: #fff;
      padding: 30px 20px;
      box-shadow: -5px 0 20px rgba(0,0,0,0.1);
      transition: 0.3s ease;
      z-index: 999;

      display: flex;
      flex-direction: column;
    }

    /* روابط */
    .side-menu a {
      padding: 15px 0;
      border-bottom: 1px solid #eee;
      color: #111;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: 0.3s;
    }

    .side-menu a:hover {
      color: #b6a06a;
      padding-left: 5px;
    }

    /* زرار الإغلاق */
    .close-btn {
      font-size: 28px;
      cursor: pointer;
      margin-bottom: 20px;
      align-self: flex-end;
    }

    /* Active state */
    .side-menu.active {
      right: 0;
    }

    .overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* Mobile only */
    @media(max-width: 768px){
      .menu-toggle {
        display: block;
      }


    }

    .menu-toggle{
      font-size:26px;
      cursor:pointer;

    }

    /* grid */
    .services-grid {
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:25px;
    }

    .service-card {
      background:#fff;
      padding:30px;
      border:1px solid #eee;
    }

    .service-card h3 {
      margin-bottom:10px;
    }

    /* detail */
    .service-detail {
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:50px;
      align-items:center;
      margin-bottom:80px;
    }

    .service-detail img {
      width:100%;
      border-radius:6px;
    }

    /* MESSAGE */
    .message{
      background:var(--black);
      color:#fff;
      border-radius:10px;
      overflow:hidden;
    }

    .message .text p{
      color:#ddd;
    }

    /* GRID */
    .grid-2{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:50px;
      align-items:center;
    }

    /* TEXT */
    .text h2{
      font-size:32px;
      margin-bottom:15px;
    }

    .text p{
      color:var(--grey);
      margin-bottom:15px;
      line-height:1.7;
    }

    /* IMAGE STYLE */
    .img-box{
      overflow:hidden;
      border-radius:10px;
      box-shadow:0 10px 25px rgba(0,0,0,0.1);
    }

    .img-box img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:0.4s;
    }

    .img-box:hover img{
      transform:scale(1.05);
    }

    /* CARDS */
    .card {
      background:#fff;
      padding:35px;
      border:1px solid #eee;
      border-top:4px solid var(--gold);
    }

    /* AWARDS */
    .awards{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:20px;
      margin-top:30px;
    }

    .award{
      background:#fff;
      padding:25px;
      text-align:center;
      border-radius:8px;
      box-shadow:0 8px 20px rgba(0,0,0,0.08);
      transition:0.3s;
    }

    .award:hover{
      transform:translateY(-5px);
    }

    .main_title{
      padding: 0px;margin-left: 100px;margin-top: 30px;
    }
