/* PASARGAD ATELIER NAVIGATION — FINAL 3.0
   Luxury editorial mega navigation / RTL-first / lightweight / no heavy libraries.
*/
:root{
  --pgh-navy:#09263a;
  --pgh-navy-2:#0e3b58;
  --pgh-navy-3:#174d6a;
  --pgh-gold:#d2ab66;
  --pgh-gold-hi:#e8c98d;
  --pgh-ink:#14232e;
  --pgh-muted:#768694;
  --pgh-paper:#fbfaf7;
  --pgh-line:rgba(9,38,58,.10);
  --pgh-ease:cubic-bezier(.18,.86,.23,1);
  --pgh-shadow:0 42px 120px rgba(4,24,39,.22);
}
.pgh,.pgh *{box-sizing:border-box}
.pgh{position:relative;z-index:2200;height:90px;font-family:inherit}
.pgh-shell{
  width:100%;
  background:rgba(255,255,255,.975);
  border-bottom:1px solid rgba(9,38,58,.07);
  transition:background .35s ease,box-shadow .35s ease,backdrop-filter .35s ease;
}
.pgh.is-scrolled .pgh-shell{
  position:fixed;top:0;right:0;left:0;
  background:rgba(255,255,255,.84);
  -webkit-backdrop-filter:blur(22px) saturate(155%);
  backdrop-filter:blur(22px) saturate(155%);
  box-shadow:0 13px 46px rgba(9,38,58,.11);
}
.pgh-inner{
  max-width:1600px;height:90px;margin:0 auto;padding:0 34px;
  display:flex;align-items:center;gap:30px;direction:rtl;
  transition:height .34s var(--pgh-ease),padding .34s var(--pgh-ease);
}
.pgh.is-scrolled .pgh-inner{height:72px}
.pgh-brand{position:relative;display:flex;align-items:center;justify-content:center;flex:0 0 auto;isolation:isolate}
.pgh-brand::before{
  content:"";position:absolute;width:72px;height:72px;border-radius:50%;
  background:radial-gradient(circle,rgba(210,171,102,.16),transparent 66%);
  opacity:0;transform:scale(.72);transition:opacity .3s ease,transform .45s var(--pgh-ease);z-index:-1
}
.pgh-brand:hover::before{opacity:1;transform:scale(1)}
.pgh-brand img{width:62px;height:auto;display:block;transition:transform .45s var(--pgh-ease),filter .45s ease}
.pgh-brand:hover img{transform:translateY(-3px) scale(1.035);filter:drop-shadow(0 12px 22px rgba(161,116,45,.18))}

.pgh-desktop-nav{flex:1;min-width:0;position:relative}
.pgh-menu{list-style:none;margin:0;padding:0;display:flex;align-items:center;justify-content:flex-start;gap:2px;white-space:nowrap}
.pgh-item{position:relative}
.pgh-link{
  position:relative;isolation:isolate;border:0;background:transparent;color:var(--pgh-ink);text-decoration:none;
  padding:32px 11px 30px;display:inline-flex;align-items:center;gap:8px;font-size:14px;font-weight:650;line-height:1;
  cursor:pointer;transition:color .25s ease,transform .25s var(--pgh-ease)
}
.pgh.is-scrolled .pgh-link{padding-top:24px;padding-bottom:23px}
.pgh-link::before{
  content:"";position:absolute;inset:18px 3px;border-radius:999px;z-index:-1;
  background:radial-gradient(circle at center,rgba(210,171,102,.13),rgba(210,171,102,0) 74%);
  opacity:0;transform:scale(.84);transition:opacity .25s ease,transform .34s var(--pgh-ease)
}
.pgh-link:hover,.pgh-item.is-open>.pgh-link,.pgh-link.is-current{color:var(--pgh-navy)}
.pgh-link:hover::before,.pgh-item.is-open>.pgh-link::before{opacity:1;transform:scale(1)}
.pgh-link--iranban{color:#087984}
.pgh-chevron{width:7px;height:7px;border-left:1.5px solid currentColor;border-bottom:1.5px solid currentColor;transform:rotate(-45deg);transition:transform .28s var(--pgh-ease)}
.pgh-item.is-open .pgh-chevron{transform:rotate(135deg)}

.pgh-nav-rail{
  position:absolute;bottom:9px;right:0;height:2px;width:0;border-radius:999px;opacity:0;
  background:linear-gradient(90deg,transparent,var(--pgh-gold),transparent);
  box-shadow:0 0 16px rgba(210,171,102,.32);
  transition:right .34s var(--pgh-ease),width .34s var(--pgh-ease),opacity .2s ease;
  pointer-events:none;
}

/* compact dropdowns */
.pgh-dropdown{
  position:absolute;top:calc(100% - 7px);right:0;left:auto;width:340px;max-width:calc(100vw - 28px);
  padding:16px;background:rgba(255,255,255,.965);border:1px solid rgba(9,38,58,.08);border-radius:24px;
  box-shadow:var(--pgh-shadow);-webkit-backdrop-filter:blur(22px) saturate(140%);backdrop-filter:blur(22px) saturate(140%);
  opacity:0;visibility:hidden;pointer-events:none;transform:translateY(13px) scale(.982);transform-origin:top right;
  transition:opacity .22s ease,transform .36s var(--pgh-ease),visibility .22s ease;overflow:hidden
}
.pgh-dropdown::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(125deg,rgba(210,171,102,.08),transparent 32%);
  opacity:.7
}
.pgh-item.is-open>.pgh-dropdown{opacity:1;visibility:visible;pointer-events:auto;transform:translateY(0) scale(1)}
.pgh-align-left>.pgh-dropdown{right:auto;left:0;transform-origin:top left}
.pgh-dropdown-head{position:relative;z-index:1;padding:7px 10px 15px;border-bottom:1px solid rgba(9,38,58,.07);margin-bottom:7px}
.pgh-dropdown-head strong{display:block;color:var(--pgh-navy);font-size:16px;line-height:1.7;margin-top:5px}
.pgh-kicker{
  display:block;direction:ltr;text-align:right;color:#b88237;font-family:"Titillium Web",Arial,sans-serif!important;
  font-size:10px;font-weight:800;letter-spacing:.17em;text-transform:uppercase
}
.pgh-dropdown>a{
  position:relative;z-index:1;display:flex;align-items:center;justify-content:space-between;gap:12px;text-decoration:none;color:var(--pgh-ink);
  padding:13px;border-radius:14px;transition:background .23s ease,transform .28s var(--pgh-ease),color .23s ease
}
.pgh-dropdown>a:hover{background:linear-gradient(135deg,rgba(210,171,102,.12),rgba(9,38,58,.025));color:var(--pgh-navy);transform:translateX(-5px)}
.pgh-dropdown>a span{font-size:14px;font-weight:760;white-space:normal}
.pgh-dropdown>a small{color:var(--pgh-muted);font-size:11px;line-height:1.6;white-space:normal}
.pgh-dropdown--about{width:390px}

/* ATELIER signature mega */
.pgh-mega--signature{
  position:fixed!important;top:var(--pgh-mega-top,90px)!important;left:50%!important;right:auto!important;
  width:min(1190px,calc(100vw - 52px))!important;max-width:none!important;min-height:400px;padding:0!important;
  display:grid!important;grid-template-columns:minmax(310px,355px) minmax(0,1fr)!important;gap:0!important;
  border-radius:32px!important;overflow:hidden!important;isolation:isolate;
  background:
    radial-gradient(circle at var(--mx,78%) var(--my,28%),rgba(210,171,102,.18),transparent 22%),
    linear-gradient(145deg,rgba(255,255,255,.99),rgba(247,244,237,.97))!important;
  border:1px solid rgba(210,171,102,.26)!important;
  box-shadow:0 48px 130px rgba(3,20,34,.23),0 0 0 1px rgba(255,255,255,.85) inset!important;
  transform:translate(-50%,20px) scale(.972)!important;transform-origin:top center!important;
  transition:opacity .24s ease,transform .44s var(--pgh-ease),visibility .24s ease!important
}
.pgh-item.is-open>.pgh-mega--signature{transform:translate(-50%,0) scale(1)!important}
.pgh-mega--signature::before{
  content:"";position:absolute;inset:0;z-index:-2;pointer-events:none;opacity:.58;
  background-image:
    linear-gradient(rgba(9,38,58,.032) 1px,transparent 1px),
    linear-gradient(90deg,rgba(9,38,58,.032) 1px,transparent 1px);
  background-size:44px 44px;
  mask-image:linear-gradient(to left,rgba(0,0,0,.58),transparent 80%)
}
.pgh-mega--signature::after{
  content:"";position:absolute;right:-110px;top:-125px;width:370px;height:370px;border-radius:50%;z-index:-1;
  border:1px solid rgba(210,171,102,.22);
  box-shadow:0 0 0 52px rgba(210,171,102,.045),0 0 0 104px rgba(210,171,102,.022);
  pointer-events:none;animation:pghHalo 7s ease-in-out infinite alternate
}
@keyframes pghHalo{from{transform:scale(.96)}to{transform:scale(1.04)}}

.pgh-mega-intro{
  position:relative;min-width:0;padding:48px 42px 42px;
  background:
    radial-gradient(circle at 20% 85%,rgba(210,171,102,.18),transparent 28%),
    linear-gradient(160deg,var(--pgh-navy),var(--pgh-navy-2) 68%,#20546c);
  border-left:1px solid rgba(255,255,255,.08);overflow:hidden;color:#fff
}
.pgh-mega-intro::before{
  content:"";position:absolute;right:-55px;bottom:-115px;width:285px;height:285px;border-radius:50%;
  background:radial-gradient(circle,rgba(210,171,102,.24),transparent 67%)
}
.pgh-signature-no{
  position:absolute;left:28px;top:18px;font-family:"Titillium Web",Arial,sans-serif;font-size:78px;font-weight:200;line-height:1;
  color:rgba(255,255,255,.055);letter-spacing:-.05em
}
.pgh-orbit{
  position:absolute;left:34px;bottom:35px;width:66px;height:66px;border-radius:50%;border:1px solid rgba(232,201,141,.26);
  opacity:.75;animation:pghOrbitSpin 12s linear infinite
}
.pgh-orbit::before,.pgh-orbit::after{content:"";position:absolute;border-radius:50%;border:1px solid rgba(232,201,141,.16)}
.pgh-orbit::before{inset:10px}.pgh-orbit::after{inset:22px}
.pgh-orbit i{
  position:absolute;top:-4px;left:29px;width:8px;height:8px;border-radius:50%;background:var(--pgh-gold-hi);
  box-shadow:0 0 14px rgba(232,201,141,.55)
}
@keyframes pghOrbitSpin{to{transform:rotate(360deg)}}
.pgh-mega-intro .pgh-kicker{color:var(--pgh-gold-hi);font-size:10px;margin-bottom:17px}
.pgh-mega-intro strong{
  display:block;color:#fff;font-size:25px;line-height:1.7;margin:0 0 14px;white-space:normal!important;
  text-wrap:balance
}
.pgh-mega-intro p{margin:0;color:rgba(255,255,255,.67);font-size:12px;line-height:2.15;white-space:normal!important}
.pgh-text-cta{
  display:inline-flex!important;align-items:center!important;gap:8px!important;margin-top:28px!important;padding:10px 0!important;
  color:var(--pgh-gold-hi)!important;background:transparent!important;font-size:12px!important;font-weight:850!important;
  box-shadow:none!important;transform:none!important
}
.pgh-text-cta span{font-size:18px;transition:transform .25s var(--pgh-ease)}
.pgh-text-cta:hover span{transform:translateX(-6px)}

.pgh-mega-grid{min-width:0;padding:34px;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:13px}
.pgh-mega-grid>a{
  position:relative;display:flex;align-items:center;gap:15px;min-width:0;padding:19px 17px;border-radius:18px;
  border:1px solid rgba(9,38,58,.06);background:rgba(255,255,255,.57);text-decoration:none;color:var(--pgh-ink);
  box-shadow:0 1px 0 rgba(255,255,255,.9) inset;overflow:hidden;
  opacity:0;transform:translateY(13px) scale(.983);
  transition:opacity .28s ease,transform .42s var(--pgh-ease),border-color .25s ease,background .25s ease,box-shadow .25s ease
}
.pgh-item.is-open .pgh-mega-grid>a{opacity:1;transform:translateY(0) scale(1);transition-delay:calc(var(--pgh-i,0) * 52ms)}
.pgh-mega-grid>a::before{
  content:"";position:absolute;inset:-70%;background:linear-gradient(115deg,transparent 42%,rgba(255,255,255,.75) 50%,transparent 58%);
  transform:translateX(-55%) rotate(10deg);transition:transform .7s var(--pgh-ease);pointer-events:none
}
.pgh-mega-grid>a::after{
  content:"";position:absolute;inset:0;border-radius:inherit;pointer-events:none;
  background:radial-gradient(circle at 85% 20%,rgba(210,171,102,.13),transparent 34%);
  opacity:0;transition:opacity .25s ease
}
.pgh-mega-grid>a:hover{
  transform:translateY(-6px) scale(1.014)!important;background:#fff;border-color:rgba(210,171,102,.34);
  box-shadow:0 18px 44px rgba(9,38,58,.10)
}
.pgh-mega-grid>a:hover::before{transform:translateX(55%) rotate(10deg)}
.pgh-mega-grid>a:hover::after{opacity:1}
.pgh-mega-grid>a>div{min-width:0;position:relative;z-index:1}
.pgh-mega-grid strong{display:block;color:var(--pgh-navy);font-size:13.6px;line-height:1.65;margin-bottom:4px;white-space:normal}
.pgh-mega-grid small{display:block;color:var(--pgh-muted);font-size:10.5px;line-height:1.72;white-space:normal}
.pgh-dot{
  width:10px;height:10px;flex:0 0 10px;border-radius:50%;background:var(--pgh-gold);
  box-shadow:0 0 0 5px rgba(210,171,102,.14);transition:transform .3s var(--pgh-ease),box-shadow .3s ease;position:relative;z-index:1
}
.pgh-mega-grid>a:hover .pgh-dot{transform:scale(1.22);box-shadow:0 0 0 8px rgba(210,171,102,.10)}
.pgh-service-icon{
  width:40px;height:40px;flex:0 0 40px;border:1px solid rgba(210,171,102,.38);border-radius:13px;display:grid;place-items:center;
  color:#a87833;background:rgba(255,255,255,.78);font-family:"Titillium Web",Arial,sans-serif!important;font-size:10px;font-weight:800;direction:ltr;
  transition:transform .32s var(--pgh-ease),background .25s ease,color .25s ease;position:relative;z-index:1
}
.pgh-mega-grid>a:hover .pgh-service-icon{transform:rotate(-6deg) scale(1.055);background:var(--pgh-navy);color:#fff}

/* utility */
.pgh-tools{display:flex;align-items:center;gap:14px;flex:0 0 auto}
.pgh-phone{display:flex;align-items:center;gap:8px;color:var(--pgh-ink);text-decoration:none;font-size:13px;font-weight:750;direction:ltr}
.pgh-phone svg{width:18px;height:18px;fill:var(--pgh-navy);transition:transform .28s var(--pgh-ease)}
.pgh-phone:hover svg{transform:rotate(-10deg) scale(1.06)}
.pgh-lang{display:flex;align-items:center;gap:8px;direction:ltr;font-family:"Titillium Web",Arial,sans-serif!important}
.pgh-lang a{font-size:12px;color:#9ba6b0;text-decoration:none;font-weight:700}.pgh-lang a.is-active{color:var(--pgh-navy)}.pgh-lang span{width:1px;height:14px;background:rgba(9,38,58,.17)}
.pgh-club{
  position:relative;overflow:hidden;height:48px;padding:0 19px;display:flex;align-items:center;gap:9px;border:1px solid rgba(210,171,102,.60);
  border-radius:16px;color:#a6772f;text-decoration:none;font-size:13px;font-weight:850;background:linear-gradient(180deg,#fff,rgba(210,171,102,.06));
  box-shadow:0 9px 26px rgba(210,171,102,.10);transition:transform .3s var(--pgh-ease),box-shadow .3s ease,border-color .3s ease,color .3s ease
}
.pgh-club::before{
  content:"";position:absolute;top:-70%;bottom:-70%;width:38px;right:-55px;transform:rotate(18deg);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.95),transparent);transition:right .75s var(--pgh-ease)
}
.pgh-club:hover::before{right:120%}
.pgh-club svg{width:17px;height:17px;fill:var(--pgh-gold)}
.pgh-club:hover{color:var(--pgh-navy);transform:translateY(-3px);border-color:var(--pgh-gold);box-shadow:0 17px 38px rgba(154,108,44,.16)}

/* mobile */
.pgh-mobile-toggle{display:none;width:44px;height:44px;border:1px solid rgba(9,38,58,.10);border-radius:14px;background:#fff;padding:10px;cursor:pointer;box-shadow:0 8px 20px rgba(9,38,58,.06)}
.pgh-mobile-toggle span{display:block;height:1.5px;background:var(--pgh-navy);margin:5px 0;border-radius:4px;transition:transform .28s var(--pgh-ease),opacity .22s ease}
body.pgh-menu-open .pgh-mobile-toggle span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
body.pgh-menu-open .pgh-mobile-toggle span:nth-child(2){opacity:0}
body.pgh-menu-open .pgh-mobile-toggle span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}
.pgh-backdrop{position:fixed;inset:0;background:rgba(4,19,31,.58);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);opacity:0;visibility:hidden;pointer-events:none;transition:opacity .3s ease,visibility .3s ease;z-index:2201}
.pgh-mobile-panel{
  position:fixed;top:0;right:0;width:min(450px,94vw);height:100dvh;
  background:radial-gradient(circle at 100% 0%,rgba(210,171,102,.16),transparent 34%),linear-gradient(180deg,#fff,#fbf7ef);
  z-index:2202;transform:translateX(104%);transition:transform .44s var(--pgh-ease);display:flex;flex-direction:column;
  box-shadow:-34px 0 100px rgba(5,22,36,.25)
}
body.pgh-menu-open{overflow:hidden}body.pgh-menu-open .pgh-backdrop{opacity:1;visibility:visible;pointer-events:auto}body.pgh-menu-open .pgh-mobile-panel{transform:translateX(0)}
.pgh-mobile-head{min-height:88px;padding:14px 20px;border-bottom:1px solid var(--pgh-line);display:flex;align-items:center;justify-content:space-between}.pgh-mobile-head img{width:53px}
.pgh-mobile-close{width:43px;height:43px;border:1px solid var(--pgh-line);background:#fff;border-radius:14px;font-size:26px;color:var(--pgh-navy);cursor:pointer}
.pgh-mobile-scroll{padding:10px 18px 18px;overflow:auto;flex:1;-webkit-overflow-scrolling:touch}
.pgh-mobile-accordion,.pgh-mobile-single{border-bottom:1px solid rgba(9,38,58,.075)}
.pgh-mobile-parent,.pgh-mobile-single{
  width:100%;min-height:60px;border:0;background:transparent;display:flex;align-items:center;justify-content:space-between;
  text-decoration:none;color:var(--pgh-navy);font-size:15px;font-weight:850;padding:0 5px;cursor:pointer
}
.pgh-mobile-parent i{width:9px;height:9px;border-left:1.5px solid currentColor;border-bottom:1.5px solid currentColor;transform:rotate(-45deg);transition:transform .28s var(--pgh-ease)}
.pgh-mobile-accordion.is-open .pgh-mobile-parent i{transform:rotate(135deg)}
.pgh-mobile-sub{max-height:0;overflow:hidden;opacity:.5;transform:translateY(-5px);transition:max-height .4s var(--pgh-ease),opacity .28s ease,transform .3s var(--pgh-ease),padding .3s ease}
.pgh-mobile-accordion.is-open .pgh-mobile-sub{max-height:540px;padding-bottom:10px;opacity:1;transform:none}
.pgh-mobile-sub a{display:block;color:#697a88;text-decoration:none;font-size:13px;line-height:1.8;padding:10px 14px;margin:2px 0;border-radius:11px;transition:background .22s ease,color .22s ease,transform .22s ease}
.pgh-mobile-sub a:hover,.pgh-mobile-sub a.is-current{background:rgba(210,171,102,.11);color:var(--pgh-navy);transform:translateX(-3px)}
.pgh-mobile-footer{padding:16px 20px 22px;border-top:1px solid var(--pgh-line);display:grid;gap:10px;background:rgba(255,255,255,.91);backdrop-filter:blur(10px)}
.pgh-mobile-club{display:flex;align-items:center;justify-content:center;height:50px;border-radius:15px;background:linear-gradient(135deg,var(--pgh-navy),var(--pgh-navy-2));color:#fff;text-decoration:none;font-size:13px;font-weight:850;box-shadow:0 13px 30px rgba(9,38,58,.17)}
.pgh-mobile-phone{text-align:center;color:var(--pgh-navy);text-decoration:none;font-weight:850;direction:ltr}
.pgh-mobile-lang{display:flex;justify-content:center;gap:16px;direction:ltr;font-family:"Titillium Web",Arial,sans-serif!important}.pgh-mobile-lang a{text-decoration:none;color:#9ba6b0;font-weight:800;font-size:12px}.pgh-mobile-lang a.is-active{color:var(--pgh-gold)}

@media(max-width:1400px){
  .pgh-inner{padding:0 19px;gap:17px}.pgh-link{font-size:12.6px;padding-left:7px;padding-right:7px}
  .pgh-phone span{display:none}.pgh-tools{gap:11px}.pgh-club{padding:0 13px}.pgh-club span{font-size:12px}
}
@media(max-width:1180px) and (min-width:1101px){
  .pgh-mega--signature{width:min(1020px,calc(100vw - 30px))!important;grid-template-columns:285px minmax(0,1fr)!important}
  .pgh-mega-grid{padding:25px;gap:9px}.pgh-mega-grid>a{padding:15px}.pgh-mega-intro{padding:40px 31px}
  .pgh-mega-intro strong{font-size:21px}
}
@media(max-width:1100px){
  .pgh{height:76px}.pgh-desktop-nav,.pgh-phone,.pgh-lang,.pgh-club{display:none}.pgh-mobile-toggle{display:block}
  .pgh-inner{height:76px;justify-content:space-between;padding:0 18px}.pgh-brand img{width:51px}.pgh-tools{margin-right:auto}.pgh.is-scrolled .pgh-inner{height:68px}
}
@media(max-width:640px){.pgh-inner{padding:0 14px}.pgh-mobile-panel{width:95vw}.pgh-brand img{width:48px}}
@media(prefers-reduced-motion:reduce){
  .pgh *{transition:none!important;animation:none!important;scroll-behavior:auto!important}
}


/* --- 3.1 usability fix: forgiving mega-menu hover bridge --- */
@media (min-width:1101px){
  .pgh-has-menu::after{
    content:"";
    position:absolute;
    right:-18px;
    left:-18px;
    top:58px;
    height:34px;
    background:transparent;
    pointer-events:auto;
  }

  .pgh-mega--signature{
    top:var(--pgh-mega-top,90px)!important;
  }
}

/* --- 3.1 airplane cursor companion: non-home pages, desktop only --- */
.pgh-flight-companion{
  position:fixed;
  left:0;
  top:0;
  width:34px;
  height:34px;
  z-index:2147483000;
  pointer-events:none;
  opacity:0;
  transform:translate3d(-100px,-100px,0);
  transform-origin:50% 50%;
  will-change:transform,opacity;
  filter:drop-shadow(0 7px 14px rgba(6,38,58,.18));
  transition:opacity .22s ease;
}
.pgh-flight-companion.is-visible{opacity:.96}
.pgh-flight-companion svg{
  display:block;
  width:100%;
  height:100%;
  overflow:visible;
}
.pgh-flight-companion .pgh-plane-body{
  fill:#0b334d;
}
.pgh-flight-companion .pgh-plane-accent{
  fill:#d2ab66;
}
.pgh-flight-companion .pgh-plane-ring{
  fill:none;
  stroke:rgba(210,171,102,.38);
  stroke-width:1.2;
  stroke-dasharray:3 4;
  transform-origin:18px 18px;
  animation:pghPlaneRing 5s linear infinite;
}
@keyframes pghPlaneRing{to{transform:rotate(360deg)}}

.pgh-flight-trail{
  position:fixed;
  left:0;
  top:0;
  width:7px;
  height:7px;
  border-radius:50%;
  pointer-events:none;
  z-index:2147482999;
  background:radial-gradient(circle,#e7c988 0 32%,rgba(210,171,102,.56) 34% 58%,rgba(210,171,102,0) 72%);
  box-shadow:0 0 10px rgba(210,171,102,.32);
  transform:translate3d(-100px,-100px,0) scale(1);
  will-change:transform,opacity;
}
.pgh-flight-companion-label{
  position:absolute;
  white-space:nowrap;
  right:29px;
  top:21px;
  padding:4px 8px 5px;
  border-radius:999px;
  font-family:"Titillium Web",Arial,sans-serif!important;
  font-size:9px;
  letter-spacing:.06em;
  color:#6f5227;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(210,171,102,.25);
  -webkit-backdrop-filter:blur(8px);
  backdrop-filter:blur(8px);
  opacity:0;
  transform:translateX(5px);
  transition:opacity .22s ease,transform .22s ease;
}
.pgh-flight-companion.is-cruising .pgh-flight-companion-label{
  opacity:.82;
  transform:translateX(0);
}

@media (pointer:coarse), (max-width:1100px), (prefers-reduced-motion:reduce){
  .pgh-flight-companion,
  .pgh-flight-trail{display:none!important}
}


/* --- 3.3 golden smoke signature behind airplane --- */
.pgh-flight-script{
  position:fixed;
  left:0;
  top:0;
  z-index:2147482998;
  pointer-events:none;
  opacity:0;
  transform:translate3d(-200px,-200px,0);
  will-change:transform,opacity;
  transition:opacity .22s ease;
}
.pgh-flight-script.is-visible{opacity:1}
.pgh-flight-script-text{
  position:relative;
  display:inline-block;
  white-space:nowrap;
  direction:rtl;
  unicode-bidi:isolate;
  font-family:inherit;
  font-size:15px;
  font-weight:850;
  letter-spacing:.01em;
  color:#d5ad66;
  text-shadow:
    0 1px 0 rgba(255,255,255,.78),
    0 0 8px rgba(210,171,102,.40),
    0 0 18px rgba(210,171,102,.22),
    0 3px 10px rgba(84,57,22,.16);
  filter:drop-shadow(0 5px 10px rgba(106,74,29,.12));
}
.pgh-flight-script-text::before,
.pgh-flight-script-text::after{
  content:"";
  position:absolute;
  z-index:-1;
  border-radius:999px;
  background:radial-gradient(ellipse at center,
    rgba(226,194,128,.28) 0%,
    rgba(210,171,102,.16) 38%,
    rgba(210,171,102,0) 74%);
  filter:blur(6px);
  pointer-events:none;
}
.pgh-flight-script-text::before{
  width:118%;
  height:28px;
  right:-8%;
  top:-4px;
  animation:pghSmokeBreathe 2.8s ease-in-out infinite alternate;
}
.pgh-flight-script-text::after{
  width:72%;
  height:20px;
  right:10%;
  top:2px;
  opacity:.7;
  animation:pghSmokeDrift 3.6s ease-in-out infinite alternate;
}
@keyframes pghSmokeBreathe{
  from{transform:scaleX(.96) scaleY(.88);opacity:.55}
  to{transform:scaleX(1.04) scaleY(1.1);opacity:.92}
}
@keyframes pghSmokeDrift{
  from{transform:translateX(2px) scale(.94);opacity:.45}
  to{transform:translateX(-10px) scale(1.05);opacity:.78}
}

/* Readability treatment on light/white areas */
.pgh-flight-script.is-on-light .pgh-flight-script-text{
  color:#b8873c;
  text-shadow:
    0 1px 0 #fff,
    0 0 8px rgba(255,255,255,.96),
    0 0 16px rgba(210,171,102,.44),
    0 3px 10px rgba(73,48,18,.15);
}

/* --- 3.3 premium menu click feedback --- */
.pgh-nav-burst{
  position:fixed;
  left:0;
  top:0;
  width:18px;
  height:18px;
  margin:-9px 0 0 -9px;
  border-radius:50%;
  pointer-events:none;
  z-index:2147483200;
  border:1.5px solid rgba(210,171,102,.88);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.8) inset,
    0 0 18px rgba(210,171,102,.42),
    0 0 36px rgba(210,171,102,.18);
  animation:pghNavBurst .55s cubic-bezier(.15,.85,.28,1) forwards;
}
.pgh-nav-burst::before,
.pgh-nav-burst::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:5px;
  height:5px;
  margin:-2.5px 0 0 -2.5px;
  border-radius:50%;
  background:#e2bf7a;
  box-shadow:
    16px 0 0 rgba(210,171,102,.78),
    -16px 0 0 rgba(210,171,102,.58),
    0 16px 0 rgba(210,171,102,.62),
    0 -16px 0 rgba(210,171,102,.72);
  animation:pghNavSparks .55s ease-out forwards;
}
.pgh-nav-burst::after{
  transform:rotate(45deg);
  opacity:.72;
}
@keyframes pghNavBurst{
  0%{transform:scale(.25);opacity:0}
  18%{opacity:1}
  100%{transform:scale(4.2);opacity:0}
}
@keyframes pghNavSparks{
  0%{transform:scale(.35);opacity:0}
  24%{opacity:1}
  100%{transform:scale(1.75);opacity:0}
}

.pgh-nav-streak{
  position:fixed;
  left:0;
  top:0;
  width:56px;
  height:2px;
  pointer-events:none;
  z-index:2147483199;
  transform-origin:left center;
  background:linear-gradient(90deg,rgba(210,171,102,0),rgba(232,201,141,.95),rgba(255,255,255,.82));
  filter:drop-shadow(0 0 6px rgba(210,171,102,.42));
  animation:pghNavStreak .48s ease-out forwards;
}
@keyframes pghNavStreak{
  from{opacity:0;transform:translateX(-8px) scaleX(.25)}
  24%{opacity:1}
  to{opacity:0;transform:translateX(28px) scaleX(1.15)}
}

.pgh .pgh-link.is-activating,
.pgh .pgh-dropdown a.is-activating,
.pgh .pgh-mega-grid a.is-activating,
.pgh .pgh-mobile-sub a.is-activating,
.pgh .pgh-mobile-single.is-activating{
  color:#a8752e!important;
  transform:translateY(-1px) scale(.985)!important;
  transition:transform .14s ease,color .14s ease!important;
}

@media (pointer:coarse), (max-width:1100px), (prefers-reduced-motion:reduce){
  .pgh-flight-script{display:none!important}
  .pgh-nav-burst,
  .pgh-nav-streak{display:none!important}
}


/* --- 3.4 cleanup: never show the old English airplane label --- */
.pgh-flight-companion-label{
  display:none!important;
  opacity:0!important;
  visibility:hidden!important;
}

/* --- 3.4 final golden smoke signature --- */
.pgh-flight-script{
  position:fixed;
  left:0;
  top:0;
  z-index:2147482998;
  pointer-events:none;
  opacity:0;
  transform:translate3d(-300px,-300px,0);
  will-change:transform,opacity;
  transition:opacity .18s ease;
}
.pgh-flight-script.is-visible{opacity:1}

.pgh-flight-script-text{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:5px 13px 7px;
  white-space:nowrap;
  direction:rtl!important;
  unicode-bidi:isolate!important;
  writing-mode:horizontal-tb!important;
  transform:none!important;
  font-family:inherit;
  font-size:15px;
  font-weight:900;
  line-height:1.25;
  letter-spacing:0;
  color:#d3a95f;
  text-shadow:
    0 1px 0 rgba(255,255,255,.92),
    0 0 5px rgba(255,231,178,.85),
    0 0 12px rgba(210,171,102,.64),
    0 0 24px rgba(210,171,102,.34),
    0 4px 12px rgba(79,51,17,.16);
  filter:drop-shadow(0 6px 12px rgba(101,68,25,.15));
  isolation:isolate;
}

/* Layered smoke cloud always surrounding the text */
.pgh-flight-script-text::before,
.pgh-flight-script-text::after{
  content:"";
  position:absolute;
  pointer-events:none;
  z-index:-1;
  border-radius:999px;
}
.pgh-flight-script-text::before{
  inset:-10px -20px -12px;
  background:
    radial-gradient(ellipse at 30% 55%,rgba(232,201,141,.34),transparent 34%),
    radial-gradient(ellipse at 62% 40%,rgba(210,171,102,.28),transparent 38%),
    radial-gradient(ellipse at 84% 58%,rgba(235,207,150,.22),transparent 34%);
  filter:blur(7px);
  opacity:.95;
  animation:pghSmokeCloudA 3.4s ease-in-out infinite alternate;
}
.pgh-flight-script-text::after{
  inset:-4px -8px -7px;
  background:linear-gradient(90deg,
    rgba(210,171,102,0),
    rgba(227,196,133,.20) 18%,
    rgba(210,171,102,.34) 50%,
    rgba(227,196,133,.18) 82%,
    rgba(210,171,102,0));
  filter:blur(4px);
  opacity:.9;
  animation:pghSmokeCloudB 2.6s ease-in-out infinite alternate;
}
@keyframes pghSmokeCloudA{
  from{transform:translateX(3px) scaleX(.97) scaleY(.90);opacity:.72}
  to{transform:translateX(-8px) scaleX(1.05) scaleY(1.08);opacity:1}
}
@keyframes pghSmokeCloudB{
  from{transform:translateX(-2px) scaleX(.96);opacity:.62}
  to{transform:translateX(8px) scaleX(1.04);opacity:.96}
}

/* Keep the Persian signature readable over every background */
.pgh-flight-script.is-on-light .pgh-flight-script-text{
  color:#ad7932;
  text-shadow:
    0 1px 0 #fff,
    0 0 5px rgba(255,255,255,1),
    0 0 13px rgba(210,171,102,.72),
    0 0 25px rgba(210,171,102,.36),
    0 4px 12px rgba(66,43,14,.18);
}
