/* ============================================================
   SAUDI PREMIER TRAVEL & TOURISM — MASTER STYLESHEET v3
   Luxury English: Playfair Display + Raleway
   Arabic: Changa
   ============================================================ */

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

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --gold:        #C9A84C;
  --gold-lt:     #E2C26A;
  --gold-dk:     #96771E;
  --black:       #080704;
  --dark:        #0E0B06;
  --dark2:       #171109;
  --dark3:       #211A0D;
  --cream:       #F4ECD6;
  --cream-lt:    #FBF7EE;
  --txt:         rgba(244,236,214,.82);
  --txt-muted:   rgba(244,236,214,.46);
  --f-head:      'Playfair Display', Georgia, serif;
  --f-body:      'Raleway', sans-serif;
  --f-ar:        'Changa', sans-serif;
  --ease:        cubic-bezier(.4,0,.2,1);
  --nav-h:       72px;
}

/* ============================================================
   RESET
   ============================================================ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;font-size:16px}
body{background:var(--black);color:var(--cream);font-family:var(--f-body);font-weight:300;line-height:1.75;overflow-x:hidden}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}
button{cursor:pointer}

/* Arabic mode */
body.rtl{direction:rtl;text-align:right;font-family:var(--f-ar)}
body.rtl h1,body.rtl h2,body.rtl h3,body.rtl h4,
body.rtl .section-title,body.rtl .hero-title,body.rtl .curator-title,
body.rtl .service-body h3,body.rtl .step-title,body.rtl .testi-text,
body.rtl .ceo-message,body.rtl blockquote,
body.rtl .page-hero h1,body.rtl .brand-label{
  font-family:var(--f-ar);letter-spacing:0
}
body.rtl .section-eyebrow,body.rtl .nav-link,body.rtl label,
body.rtl .service-link,body.rtl .stat-l,body.rtl .badge-text,
body.rtl .ceo-title-label,body.rtl .btn-gold,body.rtl .btn-outline,
body.rtl .btn-gold-lg,body.rtl .btn-outline-lg,body.rtl .btn-gold-sm,
body.rtl .btn-gold-form{
  font-family:var(--f-ar);letter-spacing:0
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.section-eyebrow{
  display:block;font-family:var(--f-body);
  font-size:.68rem;font-weight:600;letter-spacing:.32em;
  text-transform:uppercase;color:var(--gold);margin-bottom:.9rem
}
.section-title{
  font-family:var(--f-head);font-size:clamp(1.9rem,3.5vw,3.1rem);
  font-weight:500;line-height:1.2;color:var(--cream);letter-spacing:-.01em
}
.section-header.centered{text-align:center;max-width:680px;margin:0 auto 4.5rem}
.gold-rule{width:56px;height:1px;background:linear-gradient(90deg,transparent,var(--gold),transparent);margin:1.4rem 0}
body.rtl .gold-rule{margin:1.4rem 0}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  padding:.85rem 0;
  transition:background .4s var(--ease),padding .35s var(--ease),box-shadow .4s,transform .35s var(--ease)
}
.navbar.scrolled{
  background:rgba(8,7,4,.96);
  backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(201,168,76,.1);
  padding:.55rem 0;
  box-shadow:0 4px 30px rgba(0,0,0,.5)
}
.nav-container{
  max-width:1380px;margin:0 auto;padding:0 2.5rem;
  display:flex;align-items:center;justify-content:space-between;gap:2rem
}
.logo-img{height:46px;width:auto;object-fit:contain;transition:height .35s var(--ease)}
.navbar.scrolled .logo-img{height:38px}

.nav-links{display:flex;align-items:center;gap:.05rem;flex-wrap:nowrap}
.nav-link{
  font-family:var(--f-body);font-size:.64rem;font-weight:600;
  letter-spacing:.14em;text-transform:uppercase;color:var(--txt);
  padding:.45rem .7rem;border-radius:3px;
  transition:color .3s var(--ease);position:relative;white-space:nowrap
}
.nav-link::after{
  content:'';position:absolute;bottom:2px;left:50%;
  width:0;height:1px;background:var(--gold);
  transition:width .3s var(--ease),left .3s var(--ease);
}
.nav-link:hover,.nav-link.active{color:var(--gold-lt)}
.nav-link:hover::after,.nav-link.active::after{width:70%;left:15%}

.nav-dropdown{position:relative}
.dropdown-menu{
  position:absolute;top:130%;left:0;
  background:rgba(14,11,6,.98);
  border:1px solid rgba(201,168,76,.18);border-radius:6px;
  min-width:215px;padding:.65rem 0;
  opacity:0;visibility:hidden;transform:translateY(6px);
  transition:opacity .3s var(--ease),transform .3s var(--ease),visibility .3s;
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  box-shadow:0 12px 40px rgba(0,0,0,.55);z-index:200
}
body.rtl .dropdown-menu{left:auto;right:0}
.nav-dropdown:hover .dropdown-menu{opacity:1;visibility:visible;transform:translateY(0)}
.dropdown-menu li a{
  display:block;padding:.65rem 1.3rem;
  font-family:var(--f-body);font-size:.63rem;letter-spacing:.12em;text-transform:uppercase;
  color:var(--txt);transition:color .25s,padding .25s
}
.dropdown-menu li a:hover{color:var(--gold);padding-left:1.7rem}
body.rtl .dropdown-menu li a:hover{padding-left:1.3rem;padding-right:1.7rem}
.chevron{font-size:.58rem;margin-left:3px;display:inline-block;transition:transform .3s}
body.rtl .chevron{margin-left:0;margin-right:3px}

.lang-btn{
  background:none;border:1px solid rgba(201,168,76,.35);color:var(--gold);
  font-family:var(--f-ar);font-size:.75rem;font-weight:600;
  padding:.38rem 1rem;border-radius:50px;white-space:nowrap;
  transition:background .3s,color .3s,border-color .3s
}
.lang-btn:hover{background:var(--gold);color:var(--black);border-color:var(--gold)}

.hamburger{
  display:none;flex-direction:column;gap:5px;
  background:none;border:none;padding:5px;z-index:1001;position:relative
}
.hamburger span{
  display:block;width:22px;height:1.5px;background:var(--gold);
  transition:transform .35s var(--ease),opacity .3s
}
.hamburger.open span:nth-child(1){transform:rotate(45deg) translate(4.5px,4.5px)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:rotate(-45deg) translate(4.5px,-4.5px)}

.nav-overlay{
  display:none;position:fixed;inset:0;z-index:997;
  background:rgba(0,0,0,.6);backdrop-filter:blur(4px)
}
.nav-overlay.open{display:block}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative;height:100svh;min-height:600px;
  display:flex;align-items:center;justify-content:center;
  /* No overflow:hidden on hero — it clips scroll hint on some browsers.
     Instead we clip only the video/bg layers via their own overflow */
  overflow:clip
}
.hero-video-wrap{position:absolute;inset:0;z-index:0;overflow:hidden}
.hero-video{width:100%;height:100%;object-fit:cover;object-position:center}
.hero-video-wrap.mobile-video{display:none}

.hero-fallback{
  position:absolute;inset:0;z-index:0;
  background:rgb(0 0 0 / 21%);
}
.hero-fallback::before{
  content:'';position:absolute;inset:0;
  background:rgb(0 0 0 / 21%);
}
.hero-overlay{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(
    to bottom,
    rgba(8,7,4,.28) 0%,
    rgba(8,7,4,.14) 38%,
    rgba(8,7,4,.55) 72%,
    rgba(8,7,4,.94) 100%
  )
}
.hero-content{
  position:relative;z-index:2;
  text-align:center;padding:0 2rem;
  max-width:900px;width:100%;
  /* Slight upward offset to visually balance with scroll hint below */
  margin-bottom:0rem;
  animation:fadeUp 1.3s ease both
}
@keyframes fadeUp{from{opacity:0;transform:translateY(28px)}to{opacity:1;transform:translateY(0)}}

.hero-tagline{
  font-family:var(--f-body);font-size:clamp(.58rem,1.4vw,.68rem);
  font-weight:600;letter-spacing:.32em;text-transform:uppercase;
  color:var(--gold);margin-bottom:1.1rem;
  animation:fadeUp 1.3s .2s ease both
}
.hero-title{
  font-family:var(--f-head);font-size:clamp(2.7rem,8vw,6.8rem);
  font-weight:500;line-height:1.06;color:var(--cream);letter-spacing:-.02em;
  animation:fadeUp 1.3s .38s ease both
}
.hero-divider{
  width:72px;height:1px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  margin:1.7rem auto;
  animation:fadeUp 1.3s .52s ease both
}
.hero-sub{
  font-family:var(--f-body);font-size:clamp(.62rem,1.6vw,.78rem);
  letter-spacing:.22em;text-transform:uppercase;color:var(--txt-muted);
  margin-bottom:2.4rem;
  animation:fadeUp 1.3s .62s ease both
}
.hero-ctas{
  display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;
  animation:fadeUp 1.3s .78s ease both
}

/* Scroll hint — pinned to bottom-centre of hero */
.hero-scroll-hint{
  position:absolute;
  bottom:0rem;
  left:0;
  right:0;
  z-index:10;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.4rem;
  /* Delay matches hero content fade-in finish */
  animation:fadeUp 1.2s 1.4s ease both;
  pointer-events:none
}
.hero-scroll-hint .scroll-line{
  display:block;
  width:1px;
  height:36px;
  background:linear-gradient(to bottom,var(--gold),transparent);
  animation:linePulse 2.2s ease infinite
}
@keyframes linePulse{0%,100%{opacity:.9}50%{opacity:.25}}
.hero-scroll-hint span.scroll-text{
  display:block;
  font-family:var(--f-body);
  font-size:.54rem;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--gold);
  opacity:.55;
  white-space:nowrap
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold{
  display:inline-flex;align-items:center;justify-content:center;
  padding:.88rem 2.3rem;background:var(--gold);color:var(--black);
  font-family:var(--f-body);font-size:.68rem;font-weight:700;
  letter-spacing:.18em;text-transform:uppercase;border-radius:1px;
  transition:background .3s var(--ease),transform .2s,box-shadow .3s;
  position:relative;overflow:hidden;border:none
}
.btn-gold:hover{background:var(--gold-lt);transform:translateY(-1px);box-shadow:0 6px 20px rgba(201,168,76,.3)}

.btn-outline{
  display:inline-flex;align-items:center;justify-content:center;
  padding:.88rem 2.3rem;border:1px solid rgba(201,168,76,.45);color:var(--gold-lt);
  font-family:var(--f-body);font-size:.68rem;font-weight:700;
  letter-spacing:.18em;text-transform:uppercase;border-radius:1px;
  transition:background .3s,border-color .3s,transform .2s
}
.btn-outline:hover{background:rgba(201,168,76,.08);border-color:var(--gold);transform:translateY(-1px)}

.btn-gold-sm{
  display:inline-flex;align-items:center;
  padding:.72rem 1.8rem;background:var(--gold);color:var(--black);
  font-family:var(--f-body);font-size:.65rem;font-weight:700;
  letter-spacing:.14em;text-transform:uppercase;border-radius:1px;
  transition:background .3s;border:none
}
.btn-gold-sm:hover{background:var(--gold-lt)}

.btn-gold-lg{
  display:inline-flex;align-items:center;justify-content:center;
  padding:1.05rem 3rem;background:var(--gold);color:var(--black);
  font-family:var(--f-body);font-size:.68rem;font-weight:700;
  letter-spacing:.18em;text-transform:uppercase;border-radius:1px;
  transition:background .3s,transform .25s,box-shadow .3s;border:none
}
.btn-gold-lg:hover{background:var(--gold-lt);transform:translateY(-2px);box-shadow:0 8px 28px rgba(201,168,76,.3)}

.btn-outline-lg{
  display:inline-flex;align-items:center;justify-content:center;
  padding:1.05rem 3rem;border:1px solid rgba(201,168,76,.4);color:var(--gold-lt);
  font-family:var(--f-body);font-size:.68rem;font-weight:700;
  letter-spacing:.18em;text-transform:uppercase;border-radius:1px;
  transition:background .3s,border-color .3s,transform .25s
}
.btn-outline-lg:hover{background:rgba(201,168,76,.07);border-color:var(--gold);transform:translateY(-2px)}

.btn-gold-form{
  width:100%;padding:1rem;background:var(--gold);color:var(--black);
  font-family:var(--f-body);font-size:.68rem;font-weight:700;
  letter-spacing:.18em;text-transform:uppercase;border-radius:1px;
  margin-top:1.4rem;transition:background .3s;border:none;
  touch-action:manipulation
}
.btn-gold-form:hover{background:var(--gold-lt)}
.btn-gold-form:disabled{opacity:.6;cursor:not-allowed}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section{padding:7rem 0;background:var(--dark);position:relative;overflow:hidden}
.about-section::before{
  content:'';position:absolute;top:-150px;right:-150px;
  width:500px;height:500px;
  background:radial-gradient(ellipse,rgba(201,168,76,.05) 0%,transparent 70%);
  pointer-events:none
}
.about-grid{
  max-width:1280px;margin:0 auto;padding:0 2.5rem;
  display:grid;grid-template-columns:1fr 1.12fr;gap:5rem;align-items:center
}
.about-img-frame{position:relative;display:inline-block;width:100%}
.about-main-img{width:100%;height:540px;object-fit:cover;border-radius:2px;filter:brightness(.93) saturate(.92)}

.about-badge{
  position:absolute;bottom:-1.6rem;right:-1.6rem;
  width:100px;height:100px;background:var(--gold);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 6px 28px rgba(201,168,76,.38)
}
body.rtl .about-badge{right:auto;left:-1.6rem}
.badge-inner{text-align:center;color:var(--black)}
.badge-num{display:block;font-family:var(--f-head);font-size:2.1rem;font-weight:700;line-height:1}
.badge-text{display:block;font-family:var(--f-body);font-size:.47rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;line-height:1.4;margin-top:1px}

.about-stat-row{display:flex;gap:1rem;margin-top:3.2rem}
.about-stat{
  flex:1;background:var(--dark3);border:1px solid rgba(201,168,76,.1);
  border-radius:3px;padding:.9rem 1rem;text-align:center;transition:border-color .3s
}
.about-stat:hover{border-color:rgba(201,168,76,.38)}
.stat-n{display:block;font-family:var(--f-head);font-size:1.55rem;color:var(--gold);font-weight:500;line-height:1.2}
.stat-l{display:block;font-family:var(--f-body);font-size:.57rem;letter-spacing:.14em;text-transform:uppercase;color:var(--txt-muted);margin-top:4px}

.about-text{font-size:.88rem;color:var(--txt);margin-bottom:1.15rem;line-height:1.88}
.about-features{margin:1.8rem 0;display:flex;flex-direction:column;gap:1rem}
.feat-item{display:flex;align-items:flex-start;gap:.9rem}
body.rtl .feat-item{flex-direction:row}
.feat-icon{color:var(--gold);font-size:.85rem;padding-top:4px;flex-shrink:0}
.feat-item h4{font-family:var(--f-head);font-size:.95rem;font-weight:500;color:var(--cream);margin-bottom:.15rem}
.feat-item p{font-size:.77rem;color:var(--txt-muted);line-height:1.6}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section{padding:7rem 0;background:var(--black)}
.services-grid{
  max-width:1280px;margin:0 auto;padding:0 2.5rem;
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.5px
}
.service-card{
  background:var(--dark2);border:1px solid rgba(201,168,76,.07);
  overflow:hidden;display:flex;flex-direction:column;
  opacity:0;transform:translateY(18px);
  transition:opacity .6s var(--ease),transform .6s var(--ease),border-color .3s
}
.service-card.visible{opacity:1;transform:translateY(0)}
.service-card:nth-child(2){transition-delay:.1s}
.service-card:nth-child(3){transition-delay:.2s}
.service-card:nth-child(4){transition-delay:.3s}
.service-card:nth-child(5){transition-delay:.4s}
.service-card:hover{border-color:rgba(201,168,76,.25)}
.service-img-wrap{position:relative;height:205px;overflow:hidden;display:flex;align-items:center;justify-content:center}
.service-img-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .7s var(--ease)}
.service-card:hover .service-img-wrap img{transform:scale(1.06)}
.service-icon-wrap{font-size:2.8rem;color:var(--gold);opacity:.35}
.service-num{
  position:absolute;top:.6rem;right:.7rem;
  font-family:var(--f-head);font-size:3.2rem;font-weight:700;
  color:rgba(201,168,76,.14);line-height:1;pointer-events:none
}
body.rtl .service-num{right:auto;left:.7rem}
.service-body{padding:1.7rem;flex:1;display:flex;flex-direction:column}
.service-body h3{font-family:var(--f-head);font-size:1.2rem;font-weight:500;color:var(--cream);margin-bottom:.7rem;line-height:1.3}
.service-body p{font-size:.79rem;color:var(--txt-muted);margin-bottom:1.1rem;line-height:1.72}
.service-list{margin-bottom:1.4rem;flex:1}
.service-list li{font-size:.73rem;color:var(--txt);padding:.35rem 0 .35rem 1rem;border-bottom:1px solid rgba(201,168,76,.06);position:relative}
.service-list li::before{content:'—';position:absolute;left:0;top:.48rem;color:var(--gold);font-size:.58rem}
body.rtl .service-list li{padding-left:0;padding-right:1rem}
body.rtl .service-list li::before{left:auto;right:0}
.service-link{font-family:var(--f-body);font-size:.64rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--gold);transition:color .25s,letter-spacing .25s}
.service-link:hover{color:var(--gold-lt);letter-spacing:.18em}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section{padding:7rem 0;background:var(--dark);position:relative;overflow:hidden}
.process-bg-text{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  font-family:var(--f-head);font-size:clamp(5rem,18vw,16rem);font-weight:700;
  color:rgba(201,168,76,.024);white-space:nowrap;pointer-events:none;user-select:none;letter-spacing:.18em
}
.process-timeline{
  max-width:1060px;margin:0 auto;padding:0 2.5rem;
  display:grid;grid-template-columns:1fr 1fr;position:relative
}
.process-timeline::before{
  content:'';position:absolute;left:50%;top:0;bottom:0;width:1px;
  background:linear-gradient(to bottom,transparent,rgba(201,168,76,.2) 12%,rgba(201,168,76,.2) 88%,transparent);
  transform:translateX(-50%)
}
.process-step{padding:1.8rem 2.4rem;display:flex;gap:1.3rem;align-items:flex-start;opacity:0;transition:opacity .55s var(--ease),transform .55s var(--ease)}
.process-step:nth-child(odd){transform:translateX(-18px);text-align:right;flex-direction:row-reverse;padding-right:3.2rem}
.process-step:nth-child(even){transform:translateX(18px);padding-left:3.2rem}
.process-step.visible{opacity:1;transform:translateX(0)}
.step-num-wrap{flex-shrink:0;width:50px;height:50px;border:1px solid rgba(201,168,76,.28);border-radius:50%;display:flex;align-items:center;justify-content:center;background:var(--dark3);z-index:1}
.step-num{font-family:var(--f-head);font-size:.85rem;font-weight:600;color:var(--gold)}
.step-title{font-family:var(--f-head);font-size:1.18rem;font-weight:500;color:var(--cream);margin-bottom:.42rem}
.step-content p{font-size:.79rem;color:var(--txt-muted);line-height:1.78}

/* ============================================================
   CURATOR CTA
   ============================================================ */
.curator-cta{
  padding:6.5rem 2.5rem;
  background:linear-gradient(145deg,#0d0904,#1c1507 52%,#0d0904);
  position:relative;overflow:hidden;text-align:center
}
.curator-cta::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 70% 90% at 20% 50%,rgba(201,168,76,.055),transparent),
             radial-gradient(ellipse 70% 90% at 80% 50%,rgba(201,168,76,.055),transparent)
}
.curator-inner{position:relative;max-width:660px;margin:0 auto}
.curator-ornament{font-size:.65rem;letter-spacing:.55em;color:var(--gold);opacity:.42;margin-bottom:1.3rem}
.curator-cta .section-eyebrow.light{color:var(--txt-muted);margin-bottom:1.3rem}
.curator-title{font-family:var(--f-head);font-size:clamp(2.1rem,5.5vw,4.6rem);font-weight:500;color:var(--cream);letter-spacing:-.01em;margin-bottom:1.1rem}
.curator-sub{font-size:.84rem;color:var(--txt-muted);margin-bottom:2.3rem;line-height:1.8}
.curator-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}

/* ============================================================
   FORM
   ============================================================ */
.journey-form-section{padding:7rem 0;background:var(--black)}
.form-layout{
  max-width:1280px;margin:0 auto;padding:0 2.5rem;
  display:grid;grid-template-columns:.78fr 1.3fr;gap:5rem;align-items:start
}
.form-left .section-title{margin-bottom:.6rem}
.form-left > p{font-size:.86rem;color:var(--txt-muted);margin-bottom:2.2rem;line-height:1.88}
.form-contact-info{display:flex;flex-direction:column;gap:1.1rem}
.fci-item{display:flex;align-items:flex-start;gap:.9rem}
body.rtl .fci-item{flex-direction:row}
.fci-icon{font-size:.95rem;margin-top:3px;flex-shrink:0}
.fci-item strong{display:block;font-size:.81rem;color:var(--cream);font-weight:500}
.fci-item small{font-size:.67rem;color:var(--txt-muted);letter-spacing:.08em}

.journey-form{background:var(--dark2);border:1px solid rgba(201,168,76,.1);border-radius:3px;padding:2.4rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1.2rem;margin-bottom:1.2rem}
.form-group{display:flex;flex-direction:column;gap:.45rem}
.form-group.full{grid-column:1/-1}
.form-group label{font-family:var(--f-body);font-size:.6rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:var(--gold)}
.form-group input,.form-group textarea{
  background:rgba(255,255,255,.03);border:1px solid rgba(201,168,76,.14);
  border-radius:2px;color:var(--cream);font-family:var(--f-body);font-size:.83rem;
  padding:.78rem 1rem;transition:border-color .3s,background .3s;outline:none;resize:vertical;width:100%;
  -webkit-appearance:none
}
body.rtl .form-group input,body.rtl .form-group textarea{font-family:var(--f-ar);text-align:right}
.form-group input:focus,.form-group textarea:focus{border-color:rgba(201,168,76,.48);background:rgba(201,168,76,.025)}
.form-group input::placeholder,.form-group textarea::placeholder{color:var(--txt-muted);font-size:.76rem}
.form-disclaimer{font-size:.67rem;color:var(--txt-muted);text-align:center;margin-top:.9rem;font-style:italic}
.form-success,.form-error{
  display:none;padding:.85rem 1rem;border-radius:3px;
  text-align:center;font-size:.78rem;margin-top:1rem;font-weight:500
}
.form-success{background:rgba(74,124,89,.18);border:1px solid rgba(74,124,89,.4);color:#7ec99a}
.form-error{background:rgba(180,60,60,.14);border:1px solid rgba(180,60,60,.35);color:#e5908a}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section{padding:7rem 0;background:var(--dark);overflow:hidden}
.testimonials-wrapper{max-width:1180px;margin:0 auto;padding:0 2.5rem}
.testimonials-track{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.testimonial-card{
  background:var(--dark3);border:1px solid rgba(201,168,76,.1);border-radius:3px;padding:2.1rem;
  position:relative;transition:border-color .3s,box-shadow .3s
}
.testimonial-card:hover,.testimonial-card.featured{border-color:rgba(201,168,76,.28);box-shadow:0 4px 28px rgba(201,168,76,.12)}
.testi-quote{font-family:var(--f-head);font-size:4.2rem;line-height:.8;color:var(--gold);opacity:.28;margin-bottom:.4rem;font-weight:700}
.testi-text{font-family:var(--f-head);font-size:1.02rem;font-style:italic;color:var(--cream);line-height:1.65;margin-bottom:1.4rem}
body.rtl .testi-text{font-family:var(--f-ar);font-style:normal}
.testi-footer{display:flex;flex-direction:column;gap:.55rem}
.testi-stars{color:var(--gold);font-size:.76rem;letter-spacing:.18em}
.testi-author strong{display:block;font-family:var(--f-body);font-size:.7rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--gold-lt)}
.testi-author span{font-size:.66rem;color:var(--txt-muted)}
.testi-dots{display:none;justify-content:center;gap:.45rem;margin-top:1.8rem}
.dot{width:7px;height:7px;border-radius:50%;background:rgba(201,168,76,.2);cursor:pointer;transition:background .3s}
.dot.active{background:var(--gold)}

/* ============================================================
   CEO
   ============================================================ */
.ceo-section{
  padding:7rem 0;
  background:linear-gradient(145deg,var(--black) 0%,var(--dark2) 52%,var(--black) 100%);
  position:relative;overflow:hidden
}
.ceo-section::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,rgba(201,168,76,.18),transparent)}
.ceo-grid{max-width:1160px;margin:0 auto;padding:0 2.5rem;display:grid;grid-template-columns:.78fr 1.22fr;gap:5rem;align-items:center}
.ceo-img-frame{position:relative}
.ceo-img-frame img{width:100%;aspect-ratio:3/4;object-fit:cover;object-position:top center;border-radius:2px;filter:brightness(.88)}
.ceo-name-plate{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(to top,rgba(8,7,4,.96),transparent);padding:2.4rem 1.4rem 1.4rem;text-align:center}
.ceo-title-label{display:block;font-family:var(--f-body);font-size:.58rem;letter-spacing:.4em;color:var(--gold);margin-bottom:.35rem}
.ceo-name-plate strong{font-family:var(--f-head);font-size:1rem;color:var(--cream);font-weight:500}
.ceo-quote-mark{font-family:var(--f-head);font-size:6.5rem;line-height:.6;color:var(--gold);opacity:.18;margin-bottom:.9rem}
.ceo-message{font-family:var(--f-head);font-size:1.08rem;font-style:italic;color:var(--txt);line-height:1.95;border:none;padding:0;margin-bottom:2.3rem}
body.rtl .ceo-message{font-family:var(--f-ar);font-style:normal}
.ceo-sig{display:flex;align-items:center;gap:1.4rem}
body.rtl .ceo-sig{flex-direction:row}
.sig-line{width:44px;height:1px;background:var(--gold);flex-shrink:0}
.sig-info strong{display:block;font-size:.82rem;color:var(--gold-lt);font-weight:600}
.sig-info span{font-size:.68rem;color:var(--txt-muted)}

/* ============================================================
   AWARDS — jQuery Slick Slider
   ============================================================ */
.awards-section{padding:5rem 0 5rem;background:var(--dark);overflow:hidden}
.awards-section .section-header.centered{margin-bottom:2.8rem}
.awards-section h3{font-family:var(--f-head);font-size:1.65rem;font-weight:500;color:var(--cream)}

/* Override Slick defaults for dark luxury look */
.awards-slider-wrap{max-width:1180px;margin:0 auto;padding:0 3rem;position:relative;direction:ltr;}
.slick-slide{padding:0 1.4rem;outline:none}
.slick-slide img{
  height:140px;width:auto!important;max-width:220px;
  object-fit:contain;margin:0 auto;
  filter:brightness(.85) grayscale(.1);
  transition:filter .3s var(--ease),transform .3s var(--ease)
}
.slick-slide img:hover{transform:scale(1.04)}
.slick-slide img:hover{filter:brightness(1) grayscale(0);transform:scale(1.04)}
.slick-track{display:flex!important;align-items:center;min-height:160px}
.slick-list{overflow:hidden}

/* Arrow buttons */
.slick-prev,.slick-next{
  position:absolute;top:50%;transform:translateY(-50%);z-index:10;
  width:36px;height:36px;background:rgba(201,168,76,.12);
  border:1px solid rgba(201,168,76,.25);border-radius:50%;
  display:flex!important;align-items:center;justify-content:center;
  transition:background .3s,border-color .3s;cursor:pointer
}
.slick-prev{left:0}
.slick-next{right:0}
.slick-prev:hover,.slick-next:hover{background:rgba(201,168,76,.22);border-color:var(--gold)}
.slick-prev::before,.slick-next::before{content:'';display:block;width:8px;height:8px;border-top:1.5px solid var(--gold);border-right:1.5px solid var(--gold)}
.slick-prev::before{transform:rotate(-135deg) translate(-1px,1px)}
.slick-next::before{transform:rotate(45deg) translate(-1px,1px)}
.slick-dots{text-align:center;margin-top:1.4rem}
.slick-dots li{display:inline-block;margin:0 4px}
.slick-dots li button{width:7px;height:7px;border-radius:50%;background:rgba(201,168,76,.22);border:none;font-size:0;transition:background .3s;cursor:pointer}
.slick-dots li.slick-active button{background:var(--gold)}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{background:#050403;border-top:1px solid rgba(201,168,76,.09)}
.footer-top{
  max-width:1280px;margin:0 auto;
  padding:4.5rem 2.5rem 3rem;
  display:grid;grid-template-columns:1.9fr 1fr 1.4fr 1.4fr;gap:3rem
}
.footer-logo{height:46px;width:auto;object-fit:contain;margin-bottom:1.3rem}
.footer-brand p{font-size:.77rem;color:var(--txt-muted);line-height:1.82;max-width:265px}
.footer-links-col h4,.footer-contact-col h4,.footer-subscribe-col h4{
  font-family:var(--f-body);font-size:.6rem;font-weight:700;letter-spacing:.28em;
  text-transform:uppercase;color:var(--gold);margin-bottom:1.1rem
}
.footer-links-col ul{display:flex;flex-direction:column;gap:.65rem}
.footer-links-col a{font-size:.77rem;color:var(--txt-muted);transition:color .25s,padding .25s}
.footer-links-col a:hover{color:var(--gold);padding-left:5px}
body.rtl .footer-links-col a:hover{padding-left:0;padding-right:5px}
.footer-contact-col p{font-size:.77rem;color:var(--txt-muted);margin-bottom:.5rem;line-height:1.5}
.footer-contact-col a:hover{color:var(--gold)}
.footer-address{font-size:.72rem!important;line-height:1.65!important;margin-top:.7rem!important}
.footer-subscribe-col > p{font-size:.76rem;color:var(--txt-muted);margin-bottom:1rem;line-height:1.75}
.subscribe-form{display:flex;border:1px solid rgba(201,168,76,.18);border-radius:2px;overflow:hidden}
.subscribe-form input{flex:1;min-width:0;background:transparent;border:none;color:var(--cream);font-family:var(--f-body);font-size:.75rem;padding:.72rem .9rem;outline:none}
.subscribe-form input::placeholder{color:var(--txt-muted)}
.subscribe-form button{background:var(--gold);border:none;color:var(--black);font-family:var(--f-body);font-size:.64rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:0 1.1rem;transition:background .3s;white-space:nowrap}
.subscribe-form button:hover{background:var(--gold-lt)}
.footer-bottom{border-top:1px solid rgba(201,168,76,.06);padding:1.2rem 2.5rem;max-width:1280px;margin:0 auto;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:.6rem}
.footer-bottom p{font-size:.68rem;color:var(--txt-muted)}
.footer-legal{display:flex;gap:1rem;align-items:center;font-size:.68rem;color:var(--txt-muted)}
.footer-legal a:hover{color:var(--gold)}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal{opacity:0;transform:translateY(22px);transition:opacity .65s var(--ease),transform .65s var(--ease)}
.reveal.visible{opacity:1;transform:translateY(0)}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero{
  height:50vh;min-height:360px;padding-top:var(--nav-h);
  background:linear-gradient(145deg,#080704,#1c1408 45%,#0a0a08 100%);
  display:flex;align-items:center;justify-content:center;text-align:center;
  position:relative;overflow:hidden
}
.page-hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at center,rgba(201,168,76,.08),transparent 68%)}
.page-hero-content{position:relative;z-index:1;padding:0 2rem}
.page-hero h1{font-family:var(--f-head);font-size:clamp(2.6rem,7vw,5.5rem);font-weight:500;color:var(--cream);letter-spacing:-.01em;margin-bottom:.9rem}
.breadcrumb{font-size:.66rem;color:rgba(244,236,214,.38);letter-spacing:.1em}
.breadcrumb a{color:var(--gold)}


/* ============================================================
   ALIGNMENT UTILITIES
   ============================================================ */
.section-header.centered .section-eyebrow{margin-bottom:.75rem}
.section-header.centered .section-title{margin-bottom:0}
/* Ensure about-content-col flex items don't overflow */
.about-content-col{min-width:0}
.about-image-col{min-width:0}
/* Service cards equal height in grid */
.services-grid{align-items:stretch}
/* Process steps consistent height */
.process-step{min-height:140px}
/* CEO grid on single col */
.ceo-content-col{min-width:0}
/* Prevent text overflow in cards */
.service-body h3,.step-title,.news-body h3,.testi-text{word-break:break-word;overflow-wrap:break-word}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* 1280 */
@media(max-width:1280px){
  .about-grid,.services-grid,.process-timeline,.form-layout,
  .ceo-grid,.testimonials-wrapper,.awards-slider-wrap{padding-left:2rem;padding-right:2rem}
  .footer-top{padding-left:2rem;padding-right:2rem;grid-template-columns:1.6fr 1fr 1.3fr 1.3fr;gap:2.2rem}
}

/* 1100 */
@media(max-width:1100px){
  .about-grid{grid-template-columns:1fr;gap:3.5rem;padding:0 2rem}
  .about-badge{right:.8rem}
  body.rtl .about-badge{right:auto;left:.8rem}
  .about-main-img{height:400px}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .footer-top{grid-template-columns:1fr 1fr;gap:2.5rem}
  .footer-brand{grid-column:1/-1}
  .form-layout{grid-template-columns:1fr;gap:3rem}
  .ceo-grid{grid-template-columns:1fr;gap:3rem}
  .ceo-img-frame img{}
}

/* 960 */
@media(max-width:960px){
  .process-timeline{grid-template-columns:1fr;max-width:580px;padding:0 2rem}
  .process-timeline::before{display:none}
  .process-step:nth-child(odd){flex-direction:row;text-align:left;padding:1.4rem 1.4rem;transform:translateX(-18px)}
  body.rtl .process-step:nth-child(odd){flex-direction:row-reverse;text-align:right}
  .process-step:nth-child(even){padding:1.4rem 1.4rem}
  .testimonials-track{grid-template-columns:1fr}
  .testi-dots{display:flex}
}

/* 768 */
@media(max-width:768px){
  :root{--nav-h:60px}
  .hamburger{display:flex}
  .nav-links{
    position:fixed;top:0;right:0;bottom:0;width:min(290px,82vw);
    background:rgba(8,7,4,.98);flex-direction:column;
    justify-content:flex-start;align-items:flex-start;
    padding:4.2rem 0 2rem;gap:0;
    transform:translateX(105%);transition:transform .38s var(--ease);
    backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);
    border-left:1px solid rgba(201,168,76,.1);overflow-y:auto;z-index:999
  }
  
  .nav-links.open{transform:translateX(0)}
  .nav-links li{width:100%}
  .nav-link{font-size:.8rem;padding:.9rem 1.4rem;border-radius:0;display:block;border-bottom:1px solid rgba(201,168,76,.06)}
  .nav-link::after{display:none}
  .nav-dropdown .dropdown-menu{position:static;opacity:1;visibility:visible;transform:none;background:rgba(201,168,76,.04);border:none;border-radius:0;padding:0;box-shadow:none;display:none;border-top:1px solid rgba(201,168,76,.06)}
  .nav-dropdown.dropdown-open .dropdown-menu{display:block}
  .dropdown-menu li a{padding:.8rem 2.4rem;font-size:.74rem;border-bottom:1px solid rgba(201,168,76,.04)}
  .dropdown-menu li a:hover{padding-left:2.4rem}
  .lang-toggle{padding:1rem 1.4rem}

  /* Hero */
  .hero-video-wrap.desktop-video{display:none}
  .hero-video-wrap.mobile-video{display:block}
  .hero-title{font-size:clamp(2.3rem,10vw,3.7rem)}
  .hero-ctas{flex-direction:column;align-items:center;gap:.75rem}
  .btn-gold,.btn-outline{width:100%;max-width:280px}
  /* Reduce hero-content margin-bottom on mobile so content centres properly */
  .hero-content{margin-bottom:3rem;padding:0 1.4rem}
  /* Scroll hint sits at bottom:2rem — always visible */

  /* Sections */
  .about-section,.services-section,.process-section,.testimonials-section,
  .journey-form-section,.ceo-section,.awards-section,.curator-cta{padding:5rem 0}
  .services-grid,.about-grid,.form-layout,.ceo-grid{padding:0 1.4rem}
  .process-timeline,.testimonials-wrapper{padding:0 1.4rem}
  .services-grid{grid-template-columns:1fr;gap:1px}
  .form-row{grid-template-columns:1fr;gap:1rem}
  .journey-form{padding:1.8rem 1.4rem}
  .about-main-img{height:300px}
  .about-stat-row{gap:.75rem}
  .about-badge{width:82px;height:82px;right:.4rem;bottom:-.8rem}
  .badge-num{font-size:1.7rem}
  body.rtl .about-badge{left:.4rem}
  .curator-btns{flex-direction:column;align-items:center;gap:.75rem}
  .btn-gold-lg,.btn-outline-lg{width:100%;max-width:300px}
  .footer-top{grid-template-columns:1fr;gap:2rem;padding:3rem 1.4rem 2rem}
  .footer-bottom{flex-direction:column;gap:.7rem;text-align:center;padding:1rem 1.4rem}
  /* Testi slider */
  .testimonials-track{display:flex;overflow:hidden;transition:transform .4s var(--ease)}
  .testimonial-card{min-width:100%;flex-shrink:0}
  /* Awards */
  .awards-slider-wrap{padding:0 2.5rem}
  .slick-slide img{height:110px;max-width:180px}
}

/* 580 */
@media(max-width:580px){
  .nav-container,.footer-bottom,.footer-top{padding-left:1.2rem;padding-right:1.2rem}
  .section-header.centered{margin-bottom:3rem;padding:0 1.2rem}
  .about-stat-row{flex-direction:column}
  .about-stat{display:flex;align-items:center;gap:1rem;text-align:left;padding:.85rem 1rem}
  body.rtl .about-stat{text-align:right}
  .stat-n{font-size:1.4rem}
  .hero-content{padding:0 1.2rem}
  .curator-cta{padding:4rem 1.2rem}
  .awards-slider-wrap{padding:0 2rem}
  .slick-slide img{height:88px;max-width:150px}
}

/* 400 */
@media(max-width:400px){
  .hero-title{font-size:2rem}
  .logo-img{height:34px}
  .journey-form{padding:1.4rem 1rem}
  .btn-gold-form{font-size:.62rem}
}

@media(hover:none){
  .service-card:hover .service-img-wrap img{transform:none}
}
body{overscroll-behavior-y:contain}

/* ===== MAP SECTION (homepage, above footer) ===== */
.map-section{padding:5rem 0 0;background:var(--dark)}
.map-wrap{}
.map-embed{width:100%;height:400px;border-radius:3px;overflow:hidden;border:1px solid rgba(201,168,76,.12)}
.map-embed iframe{width:100%;height:100%;border:none;filter:grayscale(20%) invert(90%) hue-rotate(180deg)}
@media(max-width:768px){.map-section{padding:4rem 0 0}.map-wrap{padding:0 1.4rem}.map-embed{height:280px}}

/* ============================================================
   KEY PROJECTS GRID
   ============================================================ */
.kp-grid{max-width:1100px;margin:0 auto;padding:0 2.5rem;display:grid;grid-template-columns:repeat(3,1fr);gap:1.6rem}
.kp-card{background:var(--dark2);border:1px solid rgba(201,168,76,.1);border-radius:3px;padding:2rem 1.8rem;display:flex;gap:1.1rem;align-items:flex-start;transition:border-color .3s,transform .3s}
.kp-card:hover{border-color:rgba(201,168,76,.3);transform:translateY(-3px)}
.kp-num{font-family:var(--f-head);font-size:1.8rem;color:var(--gold);opacity:.35;line-height:1;flex-shrink:0;min-width:2.2rem}
.kp-text{font-size:.84rem;color:var(--txt);line-height:1.7}
@media(max-width:900px){.kp-grid{grid-template-columns:1fr 1fr}}
@media(max-width:580px){.kp-grid{grid-template-columns:1fr;padding:0 1.4rem}}

/* ============================================================
   RTL — COMPREHENSIVE ALIGNMENT FIXES
   ============================================================ */

/* --- Hero section --- */
body.rtl .hero-content{text-align:center}
body.rtl .hero-scroll-hint{text-align:right}

/* --- About section --- */
body.rtl .about-content-col{text-align:right}
body.rtl .about-stat-row{direction:rtl}
body.rtl .about-stat{text-align:right}
body.rtl .about-text{text-align:right}
body.rtl .about-features{text-align:right}
body.rtl .feat-item h4,
body.rtl .feat-item p{text-align:right}

/* --- Section headers (centered sections keep centered) --- */
body.rtl .section-header.centered{text-align:center}
body.rtl .section-header.centered .section-eyebrow,
body.rtl .section-header.centered .section-title{text-align:center}

/* --- Services --- */
body.rtl .service-body{text-align:right}
body.rtl .service-body p{text-align:right}
body.rtl .service-list{text-align:right}

/* --- Process --- */
body.rtl .process-section{text-align:right}
body.rtl .step-content{text-align:right}
/* Flip the LTR odd/even transforms for RTL */
body.rtl .process-step:nth-child(odd){
  flex-direction:row;
  text-align:right;
  transform:translateX(18px);
  padding-right:2.4rem;
  padding-left:3.2rem
}
body.rtl .process-step:nth-child(even){
  transform:translateX(-18px);
  flex-direction:row-reverse;
  text-align:right;
  padding-left:2.4rem;
  padding-right:3.2rem
}
body.rtl .process-step.visible{transform:translateX(0)}

/* --- Curator CTA --- */
body.rtl .curator-inner{text-align:right}
body.rtl .curator-cta .section-eyebrow.light{text-align:center}
body.rtl .curator-title{text-align:center}
body.rtl .curator-sub{text-align:center}

/* --- Journey form --- */
body.rtl .form-left{text-align:right}
body.rtl .form-left .section-title,
body.rtl .form-left > p{text-align:right}
body.rtl .form-contact-info{text-align:right}
body.rtl .fci-item strong,
body.rtl .fci-item small{text-align:right}
body.rtl .form-group label{text-align:right}
body.rtl .form-disclaimer{text-align:right}
body.rtl .btn-gold-form{font-family:var(--f-ar);letter-spacing:0}

/* --- Key projects / testimonials section --- */
body.rtl .kp-card{flex-direction:row-reverse;text-align:right}
body.rtl .kp-text{text-align:right}
body.rtl .kp-num{text-align:left}

/* --- CEO section --- */
body.rtl .ceo-content-col{text-align:right}
body.rtl .ceo-quote-mark{text-align:right}
body.rtl .ceo-message{text-align:right}

/* --- Page hero (inner pages) --- */
body.rtl .page-hero-content{text-align:right}
body.rtl .breadcrumb{text-align:center}

/* --- Footer --- */
body.rtl .footer-brand{text-align:right}
body.rtl .footer-brand p{text-align:right}
body.rtl .footer-links-col{text-align:right}
body.rtl .footer-links-col ul{align-items:flex-start}
body.rtl .footer-contact-col{text-align:right}
body.rtl .footer-subscribe-col{text-align:right}
body.rtl .subscribe-form{direction:rtl}
body.rtl .subscribe-form input{text-align:right}
body.rtl .footer-bottom{direction:rtl}
body.rtl .footer-legal{direction:rtl}

/* --- Map section --- */
body.rtl .map-section .section-header{text-align:center}
body.rtl .map-section p{text-align:center}

/* --- News cards --- */
body.rtl .news-meta{flex-direction:row-reverse}
body.rtl .news-body{text-align:right}
body.rtl .news-body h3{text-align:right}
body.rtl .news-body p{text-align:right}
body.rtl .news-link{text-align:right;display:block}

/* --- Elite Choice page --- */
body.rtl .ec-intro-grid{direction:rtl}
body.rtl .ec-partners-col{text-align:right}
body.rtl .ec-partners-list{text-align:right}
body.rtl .ec-fleet-info{text-align:right}
body.rtl .ec-fleet-header{text-align:center}
body.rtl .ec-cards-inner{text-align:center}
body.rtl .ec-cta-band{text-align:center}
body.rtl .ec-ceo-text{text-align:right}

/* --- Prestige Drive page --- */
body.rtl .pd-intro-grid{direction:rtl}
body.rtl .pd-fleet-list{text-align:right}
body.rtl .pd-fleet-list li::before{right:auto;left:auto;content:"—";margin-left:.5rem}
body.rtl .pd-accred-col{text-align:right}
body.rtl .pd-accred-list{text-align:right}
body.rtl .pd-vehicle-body{text-align:right}
body.rtl .pd-vehicles-header{text-align:center}
body.rtl .pd-cta-band{text-align:center}
body.rtl .pd-ceo-text{text-align:right}
body.rtl .pd-stats-inner{direction:rtl}
body.rtl .pd-stat{text-align:center}

/* --- Responsive RTL fixes --- */
@media(max-width:960px){
  body.rtl .process-step:nth-child(odd){
    flex-direction:row-reverse;
    text-align:right;
    transform:translateX(18px);
    padding:1.4rem
  }
  body.rtl .process-step:nth-child(even){
    flex-direction:row-reverse;
    transform:translateX(-18px);
    padding:1.4rem
  }
}

@media(max-width:768px){
  body.rtl .hero-ctas{align-items:center}
  body.rtl .hero-content{text-align:center}
  body.rtl .curator-btns{align-items:center}
  body.rtl .curator-inner{text-align:center}
  body.rtl .curator-title,
  body.rtl .curator-sub{text-align:center}
  body.rtl .footer-bottom{text-align:center}
}

@media(max-width:580px){
  body.rtl .about-stat{text-align:right;flex-direction:row-reverse}
  body.rtl .kp-grid{direction:rtl}
}
