/* ═══════════════════════════════════════════════════════
   EHG Business Center — Main Stylesheet  v3.0
   ═══════════════════════════════════════════════════════ */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7530;
  --deep: #0B0D0F;
  --deep2: #111417;
  --deep3: #181C21;
  --surface: #1E2328;
  --surface2: #252B32;
  --border: rgba(201,168,76,0.18);
  --text: #F0EBE0;
  --text2: #A89F8F;
  --text3: #6B6257;
  --white: #FAFAF8;
  --radius: 4px;
  --ff-display: 'Playfair Display', serif;
  --ff-body: 'Outfit', sans-serif;
  --ff-arabic: 'Cairo', sans-serif;
  --shadow-gold: 0 0 40px rgba(201,168,76,0.15);
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{background:var(--deep);color:var(--text);font-family:var(--ff-body);overflow-x:hidden;cursor:none;}

/* CURSOR */
.cursor{position:fixed;width:10px;height:10px;background:var(--gold);border-radius:50%;pointer-events:none;z-index:9999;transform:translate(-50%,-50%);transition:transform .1s,width .2s,height .2s;}
.cursor-ring{position:fixed;width:36px;height:36px;border:1px solid rgba(201,168,76,0.5);border-radius:50%;pointer-events:none;z-index:9998;transform:translate(-50%,-50%);transition:transform .15s ease,width .2s,height .2s;}
.cursor.hover{width:18px;height:18px;background:var(--gold-light);}
.cursor-ring.hover{width:54px;height:54px;border-color:var(--gold);}

/* SCROLLBAR */
::-webkit-scrollbar{width:4px;}
::-webkit-scrollbar-track{background:var(--deep2);}
::-webkit-scrollbar-thumb{background:var(--gold-dark);border-radius:2px;}

/* NAV */
nav{position:fixed;top:0;left:0;right:0;z-index:1000;padding:0 4rem;height:80px;display:flex;align-items:center;justify-content:space-between;transition:background .4s,backdrop-filter .4s;}
nav.scrolled{background:rgba(11,13,15,0.92);backdrop-filter:blur(20px);border-bottom:1px solid var(--border);}
.nav-logo{display:flex;align-items:center;gap:14px;}
.nav-logo-icon{width:38px;height:38px;border:1.5px solid var(--gold);display:flex;align-items:center;justify-content:center;}
.nav-logo-icon span{font-family:var(--ff-display);font-size:14px;font-weight:700;color:var(--gold);letter-spacing:1px;}
.nav-logo-text{font-family:var(--ff-display);font-size:15px;font-weight:600;color:var(--white);letter-spacing:.5px;line-height:1.2;}
.nav-logo-text small{display:block;font-size:9px;font-family:var(--ff-body);color:var(--gold);font-weight:500;letter-spacing:3px;text-transform:uppercase;}
.nav-links{display:flex;align-items:center;gap:2.5rem;}
.nav-links a{color:var(--text2);font-size:13px;font-weight:500;letter-spacing:.8px;text-transform:uppercase;text-decoration:none;transition:color .3s;position:relative;}
.nav-links a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:1px;background:var(--gold);transition:width .3s;}
.nav-links a:hover{color:var(--gold);}
.nav-links a:hover::after{width:100%;}
.nav-cta{background:var(--gold);color:var(--deep);padding:10px 24px;font-size:12px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;border:none;cursor:none;transition:background .3s,transform .2s;}
.nav-cta:hover{background:var(--gold-light);transform:translateY(-1px);}
.nav-hamburger{display:none;flex-direction:column;gap:5px;cursor:none;}
.nav-hamburger span{display:block;width:24px;height:1.5px;background:var(--gold);}

/* HERO */
.hero{position:relative;height:100vh;min-height:700px;overflow:hidden;display:flex;align-items:center;}
.hero-slider{position:absolute;inset:0;}
.slide{position:absolute;inset:0;opacity:0;transition:opacity 1.2s ease;}
.slide.active{opacity:1;}
.slide-bg{position:absolute;inset:0;background-size:cover;background-position:center;transform:scale(1.08);transition:transform 8s ease;}
.slide.active .slide-bg{transform:scale(1);}
.slide-overlay{position:absolute;inset:0;background:linear-gradient(105deg,rgba(11,13,15,0.88) 0%,rgba(11,13,15,0.55) 55%,rgba(11,13,15,0.3) 100%);}
.slide-1 .slide-bg{background-image:url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1800&q=80');}
.slide-2 .slide-bg{background-image:url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=1800&q=80');}
.slide-3 .slide-bg{background-image:url('https://images.unsplash.com/photo-1556761175-b413da4baf72?w=1800&q=80');}

.hero-content{position:relative;z-index:10;padding:0 4rem;max-width:800px;}
.hero-label{display:inline-flex;align-items:center;gap:10px;margin-bottom:28px;opacity:0;animation:fadeUp .8s .4s forwards;}
.hero-label span{font-size:10px;letter-spacing:4px;text-transform:uppercase;color:var(--gold);font-weight:600;}
.hero-label::before{content:'';display:block;width:32px;height:1px;background:var(--gold);}
.hero-h1{font-family:var(--ff-display);font-size:clamp(44px,6vw,88px);font-weight:900;line-height:1.0;letter-spacing:-1px;margin-bottom:28px;opacity:0;animation:fadeUp .8s .6s forwards;}
.hero-h1 em{font-style:normal;color:var(--gold);display:block;}
.hero-sub{font-size:16px;color:var(--text2);line-height:1.7;max-width:480px;margin-bottom:44px;font-weight:300;opacity:0;animation:fadeUp .8s .8s forwards;}
.hero-actions{display:flex;gap:16px;align-items:center;opacity:0;animation:fadeUp .8s 1s forwards;}
.btn-primary{background:var(--gold);color:var(--deep);padding:16px 36px;font-size:12px;font-weight:700;letter-spacing:2px;text-transform:uppercase;border:none;cursor:none;transition:all .3s;position:relative;overflow:hidden;}
.btn-primary::after{content:'';position:absolute;inset:0;background:var(--gold-light);transform:translateX(-100%);transition:transform .3s;}
.btn-primary:hover::after{transform:translateX(0);}
.btn-primary span{position:relative;z-index:1;}
.btn-outline{background:transparent;color:var(--gold);padding:15px 36px;font-size:12px;font-weight:600;letter-spacing:2px;text-transform:uppercase;border:1px solid var(--gold);cursor:none;transition:all .3s;}
.btn-outline:hover{background:rgba(201,168,76,0.08);}

.hero-stats{position:absolute;bottom:48px;right:4rem;z-index:10;display:flex;gap:40px;opacity:0;animation:fadeUp .8s 1.2s forwards;}
.stat{text-align:right;}
.stat-num{font-family:var(--ff-display);font-size:36px;font-weight:700;color:var(--gold);line-height:1;}
.stat-label{font-size:10px;letter-spacing:3px;color:var(--text3);text-transform:uppercase;margin-top:4px;}

.hero-dots{position:absolute;bottom:48px;left:50%;transform:translateX(-50%);z-index:10;display:flex;gap:10px;}
.hero-dot{width:28px;height:2px;background:rgba(201,168,76,0.3);cursor:none;transition:background .3s,width .3s;}
.hero-dot.active{width:48px;background:var(--gold);}

.scroll-indicator{position:absolute;bottom:48px;left:4rem;z-index:10;display:flex;flex-direction:column;align-items:center;gap:8px;opacity:0;animation:fadeIn 1s 1.4s forwards;}
.scroll-indicator span{font-size:9px;letter-spacing:4px;color:var(--text3);text-transform:uppercase;writing-mode:vertical-rl;}
.scroll-line{width:1px;height:48px;background:linear-gradient(to bottom,var(--gold),transparent);animation:scrollLine 2s infinite;}
@keyframes scrollLine{0%{transform:scaleY(0);transform-origin:top;}50%{transform:scaleY(1);transform-origin:top;}50.01%{transform:scaleY(1);transform-origin:bottom;}100%{transform:scaleY(0);transform-origin:bottom;}}

/* TICKER */
.ticker{background:var(--gold);padding:12px 0;overflow:hidden;position:relative;}
.ticker-track{display:flex;gap:0;white-space:nowrap;animation:ticker 30s linear infinite;}
.ticker-item{display:inline-flex;align-items:center;gap:16px;padding:0 32px;font-size:11px;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:var(--deep);}
.ticker-item::after{content:'◆';font-size:8px;margin-left:16px;}
@keyframes ticker{0%{transform:translateX(0);}100%{transform:translateX(-50%);}}

/* SECTIONS COMMON */
section{padding:120px 4rem;}
.section-label{display:inline-flex;align-items:center;gap:12px;margin-bottom:20px;}
.section-label span{font-size:10px;letter-spacing:4px;text-transform:uppercase;color:var(--gold);font-weight:600;}
.section-label::before{content:'';display:block;width:24px;height:1px;background:var(--gold);}
.section-h2{font-family:var(--ff-display);font-size:clamp(32px,4vw,58px);font-weight:800;line-height:1.1;margin-bottom:20px;}
.section-h2 em{font-style:normal;color:var(--gold);}
.section-sub{font-size:16px;color:var(--text2);line-height:1.7;max-width:520px;font-weight:300;}
.divider{width:60px;height:2px;background:var(--gold);margin:24px 0;}

/* ABOUT */
#about{background:var(--deep2);display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;}
.about-img-wrap{position:relative;}
.about-img{width:100%;height:560px;object-fit:cover;display:block;}
.about-img-placeholder{width:100%;height:560px;background:linear-gradient(135deg,var(--surface) 0%,var(--surface2) 100%);display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden;}
.about-img-placeholder::before{content:'';position:absolute;inset:0;background:url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=900&q=80') center/cover;}
.about-badge{position:absolute;bottom:-24px;right:-24px;background:var(--gold);width:140px;height:140px;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;}
.about-badge-num{font-family:var(--ff-display);font-size:40px;font-weight:900;color:var(--deep);line-height:1;}
.about-badge-text{font-size:9px;letter-spacing:2px;color:var(--deep);font-weight:700;text-transform:uppercase;margin-top:4px;max-width:80px;}
.about-list{margin-top:36px;display:flex;flex-direction:column;gap:16px;}
.about-item{display:flex;align-items:flex-start;gap:16px;padding:20px;border:1px solid var(--border);background:var(--surface);transition:border-color .3s,background .3s;}
.about-item:hover{border-color:var(--gold);background:rgba(201,168,76,0.04);}
.about-item-icon{width:40px;height:40px;background:rgba(201,168,76,0.1);display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:18px;}.about-item-icon svg{width:20px;height:20px;stroke:#C9A84C;fill:none;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;}
.about-item-text h4{font-size:13px;font-weight:600;color:var(--white);letter-spacing:.3px;margin-bottom:4px;}
.about-item-text p{font-size:12px;color:var(--text3);line-height:1.5;}

/* SPACES / GALLERY */
#spaces{background:var(--deep);}
.spaces-header{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:60px;}
.spaces-tabs{display:flex;flex-wrap:wrap;gap:0;border:1px solid var(--border);overflow:hidden;}
.tab-btn{padding:11px 18px;font-size:10px;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;background:transparent;color:var(--text3);border:none;cursor:none;transition:all .3s;white-space:nowrap;}
.tab-btn.active{background:var(--gold);color:var(--deep);}

.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;}
.gallery-item{position:relative;overflow:hidden;aspect-ratio:4/3;cursor:none;}
.gallery-item.large{grid-column:span 2;aspect-ratio:auto;}
.gallery-img{width:100%;height:100%;min-height:280px;object-fit:cover;transition:transform .6s ease;}
.gallery-img-bg{width:100%;height:100%;min-height:280px;background-size:cover;background-position:center;transform:scale(1);transition:transform .6s ease;}
.gallery-item:hover .gallery-img-bg{transform:scale(1.06);}
.gallery-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,0.85) 0%,transparent 50%);opacity:0;transition:opacity .4s;}
.gallery-item:hover .gallery-overlay{opacity:1;}
.gallery-info{position:absolute;bottom:0;left:0;right:0;padding:24px;transform:translateY(10px);transition:transform .4s;opacity:0;}
.gallery-item:hover .gallery-info{opacity:1;transform:translateY(0);}
.gallery-info h4{font-family:var(--ff-display);font-size:18px;color:var(--white);margin-bottom:4px;}
.gallery-info p{font-size:11px;color:var(--gold);letter-spacing:2px;text-transform:uppercase;}
.gallery-info .gallery-price{font-size:13px;color:var(--text2);margin-top:6px;}
.gallery-expand{position:absolute;top:16px;right:16px;width:36px;height:36px;background:rgba(201,168,76,0.9);display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity .3s;cursor:none;}
.gallery-item:hover .gallery-expand{opacity:1;}

/* FLOOR PLAN */
#floorplan{background:var(--deep2);}
.floorplan-container{margin-top:60px;}
.fp-tabs{display:flex;gap:0;margin-bottom:40px;border-bottom:1px solid var(--border);}
.fp-tab{padding:16px 32px;font-size:12px;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:var(--text3);cursor:none;border-bottom:2px solid transparent;transition:all .3s;background:none;border-left:none;border-right:none;border-top:none;}
.fp-tab.active{color:var(--gold);border-bottom-color:var(--gold);}
.fp-content{display:none;}
.fp-content.active{display:grid;grid-template-columns:1.6fr 1fr;gap:40px;align-items:start;}

/* SVG FLOORPLAN */
.fp-svg-wrap{background:var(--surface);border:1px solid var(--border);padding:24px;position:relative;overflow:hidden;}
.fp-svg-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px;}
.fp-svg-title{font-size:10px;letter-spacing:3px;text-transform:uppercase;color:var(--gold);font-weight:600;}
.fp-svg-hint{font-size:10px;color:var(--text3);display:flex;align-items:center;gap:6px;}
.fp-svg-hint::before{content:'';display:inline-block;width:8px;height:8px;border-radius:50%;background:var(--gold);opacity:.6;animation:pulse-hint 2s infinite;}
@keyframes pulse-hint{0%,100%{opacity:.4;transform:scale(1);}50%{opacity:1;transform:scale(1.3);}}

/* Room hit zones */
.fp-room-hit{cursor:none;transition:all .3s;}
.fp-room-fill{transition:fill .3s,opacity .3s;}
.fp-room-hit:hover .fp-room-fill,
.fp-room-hit.active .fp-room-fill{fill:rgba(201,168,76,0.18);}
.fp-room-hit.active .fp-room-stroke{stroke:#C9A84C;stroke-width:2.5;}
.fp-room-stroke{transition:stroke .3s,stroke-width .3s;}
.fp-room-hit:hover .fp-room-stroke{stroke:rgba(201,168,76,0.7);stroke-width:2;}

/* Number badges on SVG */
.fp-badge-circle{transition:all .3s;}
.fp-room-hit.active .fp-badge-circle{fill:#C9A84C;}
.fp-room-hit.active .fp-badge-num{fill:#0B0D0F;font-weight:900;}
.fp-badge-num{transition:fill .3s;fill:#C9A84C;font-family:'Outfit',sans-serif;font-weight:700;}

/* PIN / EYEHOOK */
.fp-pin{pointer-events:none;opacity:0;transition:opacity .25s;}
.fp-pin.visible{opacity:1;}
.fp-pin-ring1{animation:pin-ring1 1.6s ease-out infinite;}
.fp-pin-ring2{animation:pin-ring2 1.6s ease-out .4s infinite;}
@keyframes pin-ring1{0%{r:8;opacity:.9;stroke-width:2;}100%{r:26;opacity:0;stroke-width:1;}}
@keyframes pin-ring2{0%{r:6;opacity:.7;stroke-width:1.5;}100%{r:20;opacity:0;stroke-width:1;}}
.fp-pin-dot{animation:pin-dot 1.6s ease-in-out infinite;}
@keyframes pin-dot{0%,100%{r:5;}50%{r:7;}}

/* Connector line */
.fp-connector{pointer-events:none;opacity:0;transition:opacity .3s;stroke-dasharray:6 4;animation:dash-march 1s linear infinite;}
.fp-connector.visible{opacity:1;}
@keyframes dash-march{to{stroke-dashoffset:-20;}}

/* Detail panel */
.fp-details{position:sticky;top:100px;}
.fp-detail-card{background:var(--surface);border:1px solid var(--border);padding:28px;margin-bottom:16px;transition:border-color .4s;}
.fp-detail-card.highlighted{border-color:var(--gold);box-shadow:0 0 28px rgba(201,168,76,0.1);}
.fp-detail-card h3{font-family:var(--ff-display);font-size:24px;font-weight:700;color:var(--white);margin-bottom:6px;}
.fp-detail-card .fp-type{font-size:10px;letter-spacing:3px;text-transform:uppercase;color:var(--gold);margin-bottom:16px;}
.fp-specs{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:20px;}
.fp-spec{background:var(--surface2);padding:12px;}
.fp-spec-val{font-family:var(--ff-display);font-size:20px;font-weight:700;color:var(--gold);}
.fp-spec-key{font-size:9px;letter-spacing:2px;color:var(--text3);text-transform:uppercase;margin-top:2px;}
.fp-price{display:flex;align-items:baseline;gap:6px;margin-bottom:20px;}
.fp-price-num{font-family:var(--ff-display);font-size:32px;font-weight:800;color:var(--gold);}
.fp-price-per{font-size:12px;color:var(--text3);}
.fp-price-cur{font-size:13px;color:var(--text2);}

/* Pill list in panel */
.fp-amenities{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:20px;}
.fp-amenity{font-size:9px;letter-spacing:1.5px;text-transform:uppercase;color:var(--text3);border:1px solid var(--border);padding:4px 10px;}

/* Legend */
.fp-legend{display:flex;gap:16px;flex-wrap:wrap;margin-top:16px;}
.fp-legend-item{display:flex;align-items:center;gap:6px;font-size:10px;color:var(--text3);letter-spacing:1px;}
.fp-legend-swatch{width:12px;height:12px;border:1px solid;}
.fp-legend-swatch.office{border-color:rgba(201,168,76,0.5);background:rgba(201,168,76,0.06);}
.fp-legend-swatch.special{border-color:rgba(201,168,76,0.9);background:rgba(201,168,76,0.2);}
.fp-legend-swatch.active{border-color:#C9A84C;background:rgba(201,168,76,0.18);}

/* Slide-in update animation */
@keyframes fp-update{from{opacity:0;transform:translateY(8px);}to{opacity:1;transform:translateY(0);}}
.fp-detail-card.update{animation:fp-update .35s ease;}

@media(max-width:1100px){.fp-content.active{grid-template-columns:1fr;}}
@media(max-width:768px){.fp-details{position:static;}}

/* EQUIPMENT */
#equipment{background:var(--deep3);position:relative;overflow:hidden;}
#equipment::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,var(--gold),transparent);}
#equipment::after{content:'';position:absolute;bottom:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,var(--gold),transparent);}
.eq-columns{display:grid;grid-template-columns:1fr 1fr;gap:0;margin-top:60px;border:1px solid var(--border);}
.eq-col{position:relative;}
.eq-col:first-child{border-right:1px solid var(--border);}
.eq-col-header{padding:32px 40px 28px;border-bottom:1px solid var(--border);display:flex;align-items:center;gap:16px;}
.eq-col-icon{width:44px;height:44px;background:var(--gold);display:flex;align-items:center;justify-content:center;font-size:20px;flex-shrink:0;}.eq-col-icon svg{width:22px;height:22px;stroke:var(--deep);fill:none;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;}
.eq-col-title{font-family:var(--ff-display);font-size:13px;font-weight:800;letter-spacing:4px;text-transform:uppercase;color:var(--white);}
.eq-col-sub{font-size:10px;color:var(--text3);letter-spacing:1px;margin-top:2px;}
.eq-items{list-style:none;padding:0;}
.eq-item{display:flex;align-items:flex-start;gap:20px;padding:20px 40px;border-bottom:1px solid var(--border);transition:background .3s;position:relative;overflow:hidden;}
.eq-item:last-child{border-bottom:none;}
.eq-item::before{content:'';position:absolute;left:0;top:0;bottom:0;width:2px;background:var(--gold);transform:scaleY(0);transform-origin:bottom;transition:transform .35s ease;}
.eq-item:hover{background:rgba(201,168,76,0.03);}
.eq-item:hover::before{transform:scaleY(1);}
.eq-item-icon{width:42px;height:42px;background:rgba(201,168,76,0.07);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:20px;flex-shrink:0;transition:background .3s,border-color .3s;}.eq-item-icon svg{width:20px;height:20px;stroke:#C9A84C;fill:none;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;}
.eq-item:hover .eq-item-icon{background:rgba(201,168,76,0.14);border-color:var(--gold);}
.eq-item-text{display:flex;flex-direction:column;justify-content:center;}
.eq-item-text strong{font-size:13px;font-weight:600;color:var(--white);letter-spacing:.2px;line-height:1.3;}
.eq-item-text span{font-size:11px;color:var(--text3);margin-top:3px;line-height:1.4;}
.eq-badge{display:inline-flex;align-items:center;gap:6px;background:rgba(201,168,76,0.1);border:1px solid rgba(201,168,76,0.3);padding:3px 10px;font-size:9px;letter-spacing:2px;color:var(--gold);font-weight:700;text-transform:uppercase;margin-top:4px;}
@media(max-width:900px){.eq-columns{grid-template-columns:1fr;}.eq-col:first-child{border-right:none;border-bottom:1px solid var(--border);}.eq-item{padding:18px 24px;}.eq-col-header{padding:24px;}}

/* SERVICES */
#services{background:var(--deep);}
.services-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--border);margin-top:60px;}
.service-card{background:var(--deep);padding:40px 32px;border-top:2px solid transparent;transition:all .4s;position:relative;overflow:hidden;}
.service-card::before{content:'';position:absolute;inset:0;background:rgba(201,168,76,0.03);opacity:0;transition:opacity .4s;}
.service-card:hover{border-top-color:var(--gold);}
.service-card:hover::before{opacity:1;}
.service-icon{width:56px;height:56px;background:rgba(201,168,76,0.08);display:flex;align-items:center;justify-content:center;font-size:24px;margin-bottom:28px;transition:background .3s;}.service-icon svg{width:26px;height:26px;stroke:#C9A84C;fill:none;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;}
.service-card:hover .service-icon{background:rgba(201,168,76,0.15);}
.service-card h3{font-family:var(--ff-display);font-size:20px;font-weight:700;color:var(--white);margin-bottom:12px;}
.service-card p{font-size:13px;color:var(--text3);line-height:1.7;}
.service-card .service-more{display:inline-flex;align-items:center;gap:8px;font-size:11px;letter-spacing:2px;color:var(--gold);text-transform:uppercase;margin-top:20px;font-weight:600;cursor:none;opacity:0;transform:translateY(4px);transition:all .3s;}
.service-card:hover .service-more{opacity:1;transform:translateY(0);}

/* PLANS */
#plans{background:var(--deep2);}
.plans-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:60px;}
.plan-card{background:var(--surface);border:1px solid var(--border);padding:40px;position:relative;transition:all .4s;overflow:hidden;}
.plan-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:var(--border);transition:background .4s;}
.plan-card.featured{border-color:var(--gold);}
.plan-card.featured::before{background:var(--gold);}
.plan-card:hover::before{background:var(--gold);}
.plan-badge{position:absolute;top:20px;right:20px;background:var(--gold);color:var(--deep);font-size:9px;letter-spacing:2px;font-weight:700;text-transform:uppercase;padding:5px 12px;}
.plan-type{font-size:10px;letter-spacing:4px;text-transform:uppercase;color:var(--gold);font-weight:600;margin-bottom:12px;}
.plan-name{font-family:var(--ff-display);font-size:28px;font-weight:800;color:var(--white);margin-bottom:8px;}
.plan-desc{font-size:13px;color:var(--text3);line-height:1.6;margin-bottom:28px;}
.plan-price-wrap{margin-bottom:32px;padding:24px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border);}
.plan-from{font-size:10px;letter-spacing:2px;text-transform:uppercase;color:var(--text3);margin-bottom:6px;}
.plan-price{font-family:var(--ff-display);font-size:40px;font-weight:900;color:var(--gold);line-height:1;}
.plan-price sup{font-size:18px;vertical-align:super;}
.plan-period{font-size:12px;color:var(--text3);margin-top:4px;}
.plan-discount{font-size:11px;color:var(--gold-light);margin-top:8px;font-weight:500;}
.plan-features{list-style:none;margin-bottom:36px;display:flex;flex-direction:column;gap:12px;}
.plan-features li{display:flex;align-items:center;gap:12px;font-size:13px;color:var(--text2);}
.plan-features li::before{content:'◆';font-size:7px;color:var(--gold);flex-shrink:0;}
.plan-cta{width:100%;padding:14px;font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;cursor:none;transition:all .3s;border:1px solid var(--gold);color:var(--gold);background:transparent;}
.plan-card.featured .plan-cta,.plan-cta:hover{background:var(--gold);color:var(--deep);}

/* CONTRACT INCENTIVES */
.incentives{margin-top:48px;display:grid;grid-template-columns:1fr 1fr;gap:20px;}
.incentive-card{background:var(--surface);border:1px solid var(--border);padding:28px;display:flex;gap:20px;align-items:flex-start;}
.incentive-icon{width:48px;height:48px;background:rgba(201,168,76,0.1);display:flex;align-items:center;justify-content:center;font-size:22px;flex-shrink:0;}.incentive-icon svg{width:24px;height:24px;stroke:#C9A84C;fill:none;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;}
.incentive-card h4{font-size:14px;font-weight:600;color:var(--white);margin-bottom:6px;}
.incentive-card p{font-size:12px;color:var(--text3);line-height:1.6;}
.incentive-card .tag{display:inline-block;background:var(--gold);color:var(--deep);font-size:9px;letter-spacing:2px;font-weight:700;text-transform:uppercase;padding:3px 10px;margin-bottom:8px;}

/* BOOKING */
#booking{background:linear-gradient(135deg,var(--deep) 0%,var(--deep2) 100%);position:relative;overflow:hidden;}
#booking::before{content:'';position:absolute;top:-200px;right:-200px;width:600px;height:600px;background:radial-gradient(circle,rgba(201,168,76,0.06) 0%,transparent 70%);pointer-events:none;}
.booking-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:start;margin-top:60px;}
.booking-form-wrap{background:var(--surface);border:1px solid var(--border);padding:48px;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.form-group{margin-bottom:20px;}
.form-group label{display:block;font-size:10px;letter-spacing:2px;text-transform:uppercase;color:var(--gold);margin-bottom:8px;font-weight:600;}
.form-group input,.form-group select,.form-group textarea{width:100%;background:var(--surface2);border:1px solid var(--border);color:var(--text);padding:14px 16px;font-family:var(--ff-body);font-size:13px;outline:none;transition:border-color .3s;cursor:none;}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--gold);}
.form-group select option{background:var(--surface2);}
.form-group textarea{resize:vertical;min-height:100px;}
.booking-submit{width:100%;background:var(--gold);color:var(--deep);padding:16px;font-size:12px;font-weight:700;letter-spacing:2px;text-transform:uppercase;border:none;cursor:none;transition:background .3s;margin-top:8px;}
.booking-submit:hover{background:var(--gold-light);}

/* ── PHP form feedback ── */
.booking-php-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
  min-height: 280px;
}
.booking-php-success h3 {
  font-family: var(--ff-display);
  font-size: 22px;
  color: #25D366;
  margin: 0;
}
.booking-php-success p {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--text-muted, #888);
  max-width: 340px;
  line-height: 1.6;
  margin: 0;
}
.booking-php-error {
  background: rgba(255,59,48,0.1);
  border: 1px solid rgba(255,59,48,0.3);
  color: #FF3B30;
  font-family: var(--ff-body);
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.booking-info{display:flex;flex-direction:column;gap:32px;}
.booking-feature{display:flex;gap:20px;align-items:flex-start;}
.booking-feature-icon{width:48px;height:48px;background:rgba(201,168,76,0.08);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:20px;flex-shrink:0;}.booking-feature-icon svg{width:22px;height:22px;stroke:#C9A84C;fill:none;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;}
.booking-feature h4{font-size:15px;font-weight:600;color:var(--white);margin-bottom:6px;}
.booking-feature p{font-size:13px;color:var(--text3);line-height:1.6;}
.booking-contact{margin-top:16px;background:var(--surface);border:1px solid var(--border);padding:28px;}
.booking-contact h4{font-family:var(--ff-display);font-size:18px;color:var(--white);margin-bottom:16px;}
.contact-item{display:flex;align-items:center;gap:12px;margin-bottom:12px;font-size:13px;color:var(--text2);}
.contact-item span:first-child{color:var(--gold);font-size:16px;display:flex;align-items:center;}.contact-item span:first-child svg{width:16px;height:16px;stroke:#C9A84C;fill:none;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;}

/* FOOTER */
footer{background:var(--deep);border-top:1px solid var(--border);padding:80px 4rem 40px;}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:60px;margin-bottom:60px;}
.footer-brand .nav-logo{margin-bottom:24px;}
.footer-brand p{font-size:13px;color:var(--text3);line-height:1.8;max-width:280px;}
.footer-col h5{font-size:10px;letter-spacing:3px;text-transform:uppercase;color:var(--gold);margin-bottom:20px;font-weight:600;}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:10px;}
.footer-col ul li a{font-size:13px;color:var(--text3);text-decoration:none;transition:color .3s;}
.footer-col ul li a:hover{color:var(--gold);}
.footer-social{display:flex;gap:12px;margin-top:24px;}
.social-btn{width:36px;height:36px;border:1px solid var(--border);display:flex;align-items:center;justify-content:center;cursor:none;transition:all .3s;font-size:14px;}
.social-btn:hover{border-color:var(--gold);color:var(--gold);}
.footer-bottom{border-top:1px solid var(--border);padding-top:32px;display:flex;justify-content:space-between;align-items:center;}
.footer-bottom p{font-size:11px;color:var(--text3);}
.footer-bottom .gold{color:var(--gold);}

/* POPUP */
.popup-overlay{position:fixed;inset:0;background:rgba(0,0,0,0.85);z-index:2000;display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:opacity .4s;backdrop-filter:blur(8px);}
.popup-overlay.active{opacity:1;pointer-events:all;}
.popup-box{background:var(--deep2);border:1px solid var(--border);padding:32px 40px;max-width:480px;width:90%;position:relative;transform:translateY(20px);transition:transform .4s;max-height:90vh;overflow-y:auto;}
.popup-overlay.active .popup-box{transform:translateY(0);}
.popup-close{position:absolute;top:20px;right:20px;width:36px;height:36px;background:var(--surface);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;cursor:none;font-size:18px;color:var(--text3);transition:all .3s;}
.popup-close:hover{border-color:var(--gold);color:var(--gold);}
.popup-label{font-size:10px;letter-spacing:4px;text-transform:uppercase;color:var(--gold);margin-bottom:10px;font-weight:600;}
.popup-h2{font-family:var(--ff-display);font-size:24px;font-weight:800;color:var(--white);margin-bottom:8px;}
.popup-sub{font-size:13px;color:var(--text3);line-height:1.6;margin-bottom:20px;}
.popup-input-group{margin-bottom:10px;}
.popup-input-group label{display:block;font-size:10px;letter-spacing:2px;text-transform:uppercase;color:var(--gold);margin-bottom:6px;font-weight:600;}
.popup-input-group input,.popup-input-group select{width:100%;background:var(--surface);border:1px solid var(--border);color:var(--text);padding:10px 14px;font-family:var(--ff-body);font-size:13px;outline:none;cursor:none;transition:border-color .3s;}
.popup-input-group input:focus,.popup-input-group select:focus{border-color:var(--gold);}
.popup-btn{width:100%;background:var(--gold);color:var(--deep);padding:12px;font-size:12px;font-weight:700;letter-spacing:2px;text-transform:uppercase;border:none;cursor:none;margin-top:6px;transition:background .3s;}
.popup-btn:hover{background:var(--gold-light);}

/* LIGHTBOX */
.lightbox-overlay{position:fixed;inset:0;background:rgba(0,0,0,0.95);z-index:3000;display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:opacity .3s;}
.lightbox-overlay.active{opacity:1;pointer-events:all;}
.lightbox-img{max-width:90vw;max-height:85vh;object-fit:contain;}
.lightbox-img-bg{width:min(90vw,1000px);height:min(85vh,600px);background-size:cover;background-position:center;}
.lightbox-close{position:absolute;top:24px;right:24px;width:48px;height:48px;background:rgba(201,168,76,0.2);border:1px solid var(--gold);display:flex;align-items:center;justify-content:center;cursor:none;font-size:20px;color:var(--gold);}
.lightbox-caption{position:absolute;bottom:40px;left:50%;transform:translateX(-50%);text-align:center;}
.lightbox-caption h4{font-family:var(--ff-display);font-size:20px;color:var(--white);}
.lightbox-caption p{font-size:12px;letter-spacing:3px;color:var(--gold);text-transform:uppercase;margin-top:4px;}

/* TOAST */
.toast{position:fixed;bottom:40px;right:40px;z-index:4000;background:var(--surface);border:1px solid var(--gold);padding:20px 28px;transform:translateY(20px);opacity:0;transition:all .4s;max-width:320px;}
.toast.show{transform:translateY(0);opacity:1;}
.toast-title{font-size:13px;font-weight:600;color:var(--gold);margin-bottom:4px;}
.toast-msg{font-size:12px;color:var(--text3);}

/* SCROLL ANIMATION */
.reveal{opacity:0;transform:translateY(30px);transition:opacity .7s ease,transform .7s ease;}
.reveal.visible{opacity:1;transform:translateY(0);}

/* ANIMATIONS */
@keyframes fadeUp{from{opacity:0;transform:translateY(24px);}to{opacity:1;transform:translateY(0);}}
@keyframes fadeIn{from{opacity:0;}to{opacity:1;}}

/* RESPONSIVE */
@media(max-width:1100px){
  #about,#floorplan .fp-content.active{grid-template-columns:1fr;}
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:1fr 1fr;gap:40px;}
}
@media(max-width:768px){
  nav{padding:0 1.5rem;}
  .nav-links,.nav-cta{display:none;}
  .nav-hamburger{display:flex;}
  section{padding:80px 1.5rem;}
  .hero-content{padding:0 1.5rem;}
  .hero-stats{right:1.5rem;}
  .hero-h1{font-size:38px;}
  .gallery-grid{grid-template-columns:1fr;}
  .gallery-item.large{grid-column:span 1;}
  .plans-grid,.incentives,.booking-grid,.form-row{grid-template-columns:1fr;}
  .services-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  footer{padding:60px 1.5rem 32px;}
  .scroll-indicator{display:none;}
  .hero-stats{display:none;}
}
/* ═══════════════════════════════════════════════════════
   LANGUAGE TOGGLE BUTTON
   ═══════════════════════════════════════════════════════ */
.nav-lang-toggle {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: none;
  transition: all .3s;
  margin-left: 12px;
  font-family: var(--ff-body);
}
.nav-lang-toggle:hover { background: var(--gold); color: var(--deep); }

/* ═══════════════════════════════════════════════════════
   RTL / ARABIC OVERRIDES
   ═══════════════════════════════════════════════════════ */
body.rtl {
  font-family: var(--ff-arabic);
  font-family: var(--ff-arabic); /* Cairo */
  direction: rtl;
  text-align: right;
}
body.rtl h1, body.rtl h2, body.rtl h3, body.rtl h4 {
  font-family: var(--ff-arabic); /* Cairo replaces Playfair in AR mode */
  letter-spacing: 0;
}
body.rtl .nav-logo-text small { letter-spacing: 1px; }
body.rtl .nav-links { flex-direction: row-reverse; }
body.rtl .nav-links a::after { left: auto; right: 0; }
body.rtl .nav-links a, body.rtl .nav-cta, body.rtl .nav-lang-toggle { letter-spacing: 0; }
body.rtl .nav-lang-toggle { margin-left: 0; margin-right: 12px; }
body.rtl .section-label { flex-direction: row-reverse; }
body.rtl .section-label::before { display: none; }
body.rtl .section-label::after { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
body.rtl .hero-content { text-align: right; }
body.rtl .hero-label { flex-direction: row-reverse; }
body.rtl .hero-label::before { display: none; }
body.rtl .hero-label::after { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
body.rtl .hero-actions { flex-direction: row-reverse; }
body.rtl .hero-stats { right: 4rem; left: auto; text-align: right; }
body.rtl .stat { text-align: right; }
body.rtl .scroll-indicator { left: auto; right: 4rem; }
body.rtl #about { direction: rtl; }
body.rtl .about-badge { right: auto; left: -24px; }
body.rtl .about-item { flex-direction: row-reverse; }
body.rtl .fp-svg-header { flex-direction: row-reverse; }
body.rtl .fp-svg-hint { flex-direction: row-reverse; }
body.rtl .fp-legend { flex-direction: row-reverse; }
body.rtl .fp-legend-item { flex-direction: row-reverse; }
body.rtl .fp-specs { direction: rtl; }
body.rtl .fp-price { flex-direction: row-reverse; }
body.rtl .fp-amenities { flex-direction: row-reverse; }
body.rtl .eq-col-header { flex-direction: row-reverse; }
body.rtl .eq-item { flex-direction: row-reverse; }
body.rtl .eq-item::before { left: auto; right: 0; }
body.rtl .eq-item-text { text-align: right; }
body.rtl .eq-col:first-child { border-right: none; border-left: 1px solid var(--border); }
body.rtl .booking-feature { flex-direction: row-reverse; }
body.rtl .contact-item { flex-direction: row-reverse; }
body.rtl .incentive-card { flex-direction: row-reverse; }
body.rtl .plan-features li { flex-direction: row-reverse; }
body.rtl .plan-features li::before { margin-left: 0; margin-right: 0; order: 1; }
body.rtl .footer-brand .nav-logo, body.rtl .nav-logo { flex-direction: row-reverse; }
body.rtl .footer-grid { direction: rtl; }
body.rtl .footer-bottom { flex-direction: row-reverse; }
body.rtl .form-group label { text-align: right; letter-spacing: 0; }
body.rtl .form-group input,
body.rtl .form-group select,
body.rtl .form-group textarea { text-align: right; direction: rtl; }
body.rtl .popup-input-group label { letter-spacing: 0; }
body.rtl .section-label span, body.rtl .plan-type, body.rtl .plan-badge,
body.rtl .eq-col-title, body.rtl .fp-svg-title, body.rtl .fp-type,
body.rtl .booking-submit, body.rtl .btn-primary span, body.rtl .btn-outline,
body.rtl .popup-btn, body.rtl .plan-cta, body.rtl .tab-btn, body.rtl .fp-tab,
body.rtl .tag { letter-spacing: 0; }
body.rtl p, body.rtl li { line-height: 1.9; }
body.rtl .ticker-track { direction: ltr; }

/* ── Arabic font (Cairo) overrides ── */
body.rtl h1,
body.rtl h2,
body.rtl h3,
body.rtl h4,
body.rtl h5,
body.rtl .section-h2,
body.rtl .hero-h1,
body.rtl .plan-name,
body.rtl .tst-body,
body.rtl .calc-title,
body.rtl .tour-title,
body.rtl .tour-page-h1,
body.rtl .faq-q,
body.rtl .fp-info-name,
body.rtl .about-badge-num,
body.rtl .stat-num,
body.rtl .tst-trust-num,
body.rtl .plan-price,
body.rtl .calc-result-price span {
  font-family: var(--ff-arabic);
  letter-spacing: 0;
}
body.rtl .nav-logo-text,
body.rtl .nav-logo-text small,
body.rtl .nav-logo-icon span {
  font-family: var(--ff-arabic);
  letter-spacing: 0;
}
body.rtl button,
body.rtl input,
body.rtl select,
body.rtl textarea,
body.rtl label {
  font-family: var(--ff-arabic);
}

@media (max-width: 768px) {
  body.rtl .hero-stats { left: 1.5rem; right: auto; display: flex; }
  body.rtl .scroll-indicator { display: none; }
  body.rtl .nav-lang-toggle { margin-left: 0; margin-right: 8px; }
}

/* ═══════════════════════════════════════════════════════
   FLOOR PLAN — OFFICE IMAGE IN DETAIL CARD
   ═══════════════════════════════════════════════════════ */
.fp-office-img-wrap {
  position: relative;
  width: 100%;
  height: 160px;
  margin-bottom: 20px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .4s ease, transform .4s ease;
}
.fp-office-img-wrap.visible {
  opacity: 1;
  transform: translateY(0);
}
.fp-office-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: var(--surface2);
  transition: background-image .35s ease, transform .6s ease;
  position: relative;
}
/* Shimmer loading state */
.fp-office-img.loading {
  background-image: none !important;
  background: linear-gradient(90deg, var(--surface2) 25%, var(--surface) 50%, var(--surface2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
/* Gold corner accent */
.fp-office-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(11,13,15,0.85) 100%
  );
  z-index: 1;
  pointer-events: none;
}
/* Top-left gold bracket */
.fp-office-img::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 22px;
  height: 22px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: 2;
  pointer-events: none;
  opacity: 0.7;
}
/* Bottom-right gold bracket via wrapper pseudo */
.fp-office-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 28px; /* above label */
  right: 10px;
  width: 22px;
  height: 22px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  z-index: 2;
  pointer-events: none;
  opacity: 0.7;
}
.fp-office-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5px 12px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(11,13,15,0.82);
  border-top: 1px solid rgba(201,168,76,0.2);
  z-index: 3;
  font-family: var(--ff-body);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Zoom on card hover */
.fp-detail-card:hover .fp-office-img {
  transform: scale(1.03);
}

/* RTL adjustments */
body.rtl .fp-office-img::after {
  left: auto;
  right: 10px;
  border-left: none;
  border-right: 2px solid var(--gold);
}
body.rtl .fp-office-img-wrap::after {
  right: auto;
  left: 10px;
  border-right: none;
  border-left: 2px solid var(--gold);
}


/* ═══════════════════════════════════════════════════════
   SERVICE POPUP — EYEHOOK STYLE
   ═══════════════════════════════════════════════════════ */

/* ── Backdrop ── */
.srv-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 9, 11, 0);
  backdrop-filter: blur(0px);
  pointer-events: none;
  transition: background .35s ease, backdrop-filter .35s ease;
}
.srv-popup-backdrop.active {
  background: rgba(7, 9, 11, 0.82);
  backdrop-filter: blur(8px);
  pointer-events: all;
}

/* ── Card ── */
.srv-popup-card {
  position: relative;
  width: 780px;
  max-width: calc(100vw - 32px);
  max-height: 90vh;
  background: var(--deep2);
  border: 1px solid rgba(201,168,76,0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;

  /* Entry animation — starts collapsed + faded */
  opacity: 0;
  transform: scale(0.88) translateY(28px);
  transition: opacity .42s cubic-bezier(.22,1,.36,1),
              transform .42s cubic-bezier(.22,1,.36,1);
}
.srv-popup-backdrop.active .srv-popup-card {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ── Eyehook corner brackets ── */
.srv-hook {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 10;
  pointer-events: none;
}
.srv-hook-tl { top: 0;    left: 0;  border-top:  2px solid var(--gold); border-left:  2px solid var(--gold); }
.srv-hook-tr { top: 0;    right: 0; border-top:  2px solid var(--gold); border-right: 2px solid var(--gold); }
.srv-hook-bl { bottom: 0; left: 0;  border-bottom: 2px solid var(--gold); border-left:  2px solid var(--gold); }
.srv-hook-br { bottom: 0; right: 0; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

/* Hook draw-in animation */
.srv-hook-tl, .srv-hook-tr,
.srv-hook-bl, .srv-hook-br {
  clip-path: polygon(0 0, 0 0, 0 0);
  transition: clip-path 0s;
}
.srv-popup-backdrop.active .srv-hook-tl { clip-path: polygon(0 0, 100% 0, 0 100%); transition: clip-path .3s ease .3s; }
.srv-popup-backdrop.active .srv-hook-tr { clip-path: polygon(0 0, 100% 0, 100% 100%); transition: clip-path .3s ease .35s; }
.srv-popup-backdrop.active .srv-hook-bl { clip-path: polygon(0 0, 0 100%, 100% 100%); transition: clip-path .3s ease .4s; }
.srv-popup-backdrop.active .srv-hook-br { clip-path: polygon(100% 0, 100% 100%, 0 100%); transition: clip-path .3s ease .45s; }

/* ── Scan line ── */
.srv-scanline {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.6), transparent);
  top: -2px;
  z-index: 9;
  pointer-events: none;
  opacity: 0;
}
.srv-popup-backdrop.active .srv-scanline {
  animation: srv-scan 1s ease .25s forwards;
}
@keyframes srv-scan {
  0%   { top: -2px;   opacity: 1; }
  100% { top: 102%;   opacity: 0; }
}

/* ── Close button ── */
.srv-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  cursor: none;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, border-color .25s, transform .2s;
}
.srv-close-btn:hover {
  background: rgba(201,168,76,0.18);
  border-color: var(--gold);
  transform: rotate(90deg);
}
.srv-close-x {
  display: block;
  width: 14px;
  height: 14px;
  position: relative;
}
.srv-close-x::before,
.srv-close-x::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 1.5px;
  background: var(--gold);
  transform-origin: center;
}
.srv-close-x::before { transform: translateY(-50%) rotate(45deg); }
.srv-close-x::after  { transform: translateY(-50%) rotate(-45deg); }

/* ── Image area ── */
.srv-popup-img-wrap {
  position: relative;
  width: 100%;
  height: 260px;
  flex-shrink: 0;
  overflow: hidden;
}
.srv-popup-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: var(--surface);
  transform: scale(1.06);
  transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.srv-popup-backdrop.active .srv-popup-img {
  transform: scale(1);
}
.srv-popup-img-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--surface2) 25%, var(--surface) 50%, var(--surface2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  opacity: 1;
  transition: opacity .3s;
  pointer-events: none;
}
.srv-popup-img-shimmer.hidden { opacity: 0; }
.srv-popup-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,13,15,0.15) 0%,
    rgba(11,13,15,0.0)  40%,
    rgba(11,13,15,0.85) 100%
  );
  pointer-events: none;
}

/* ── Icon badge floating on image ── */
.srv-popup-icon-badge {
  position: absolute;
  bottom: -22px;
  left: 36px;
  width: 54px;
  height: 54px;
  background: var(--deep2);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 5;
  box-shadow: 0 0 24px rgba(201,168,76,0.25);
  transform: translateY(12px);
  opacity: 0;
  transition: transform .4s cubic-bezier(.22,1,.36,1) .3s,
              opacity .4s ease .3s;
}
.srv-popup-icon-badge svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.srv-popup-backdrop.active .srv-popup-icon-badge {
  transform: translateY(0);
  opacity: 1;
}

/* ── Body content ── */
.srv-popup-body {
  padding: 42px 36px 36px;
  overflow-y: auto;
  flex: 1;
}
.srv-popup-body::-webkit-scrollbar { width: 4px; }
.srv-popup-body::-webkit-scrollbar-track { background: var(--deep2); }
.srv-popup-body::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.3); }

.srv-popup-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
  font-family: var(--ff-body);
}
.srv-popup-title {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;

  /* Staggered reveal */
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .4s ease .35s, transform .4s ease .35s;
}
.srv-popup-backdrop.active .srv-popup-title {
  opacity: 1;
  transform: translateY(0);
}
.srv-popup-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 18px;

  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity .3s ease .45s, transform .3s ease .45s;
}
.srv-popup-backdrop.active .srv-popup-divider {
  opacity: 1;
  transform: scaleX(1);
}
.srv-popup-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 24px;

  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease .5s, transform .4s ease .5s;
}
.srv-popup-backdrop.active .srv-popup-desc {
  opacity: 1;
  transform: translateY(0);
}

/* ── Highlight pills ── */
.srv-popup-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;

  opacity: 0;
  transition: opacity .4s ease .6s;
}
.srv-popup-backdrop.active .srv-popup-highlights {
  opacity: 1;
}
.srv-highlight-pill {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 5px 12px;
  background: rgba(201,168,76,0.05);
  font-family: var(--ff-body);
  font-weight: 500;
}

/* ── CTA button ── */
.srv-popup-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--deep);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--ff-body);
  cursor: none;
  border: none;
  transition: background .25s, gap .25s;

  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s ease .65s, transform .35s ease .65s,
              background .25s, gap .25s;
}
.srv-popup-backdrop.active .srv-popup-cta {
  opacity: 1;
  transform: translateY(0);
}
.srv-popup-cta:hover {
  background: var(--gold-light);
  gap: 16px;
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .srv-popup-img-wrap { height: 180px; }
  .srv-popup-body { padding: 36px 22px 28px; }
  .srv-popup-title { font-size: 24px; }
  .srv-popup-icon-badge { left: 20px; width: 44px; height: 44px; font-size: 20px; }
}

/* ── RTL adjustments ── */
body.rtl .srv-popup-title,
body.rtl .srv-popup-tag,
body.rtl .srv-popup-desc { text-align: right; letter-spacing: 0; }
body.rtl .srv-popup-divider { transform-origin: right; }
body.rtl .srv-popup-highlights { flex-direction: row-reverse; }
body.rtl .srv-popup-icon-badge { left: auto; right: 36px; }
body.rtl .srv-close-btn { right: auto; left: 14px; }
body.rtl .srv-hook-tl { left: auto; right: 0; border-left: none; border-right: 2px solid var(--gold); }
body.rtl .srv-hook-tr { right: auto; left: 0; border-right: none; border-left: 2px solid var(--gold); }
body.rtl .srv-popup-cta { letter-spacing: 0; flex-direction: row-reverse; }

/* ═══════════════════════════════════════════════════════
   WHATSAPP AI CHAT WIDGET
   ═══════════════════════════════════════════════════════ */

/* ── Widget wrapper (fixed, bottom-right) ── */
.wa-widget {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* ── Float button ── */
.wa-float {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: waEntry .6s cubic-bezier(.34,1.56,.64,1) .8s both;
}

@keyframes waEntry {
  from { opacity:0; transform:translateY(20px) scale(.8); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}

/* ── Green button circle ── */
.wa-btn {
  position: relative;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 2px 8px rgba(0,0,0,.15);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease;
  cursor: pointer;
}

.wa-float:hover .wa-btn {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.6), 0 2px 10px rgba(0,0,0,.18);
}

/* ── WA icon ── */
.wa-icon-wa {
  width: 32px;
  height: 32px;
  fill: #fff;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* ── Pulse ring ── */
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0;
  animation: waPulse 2.6s ease-out infinite;
}

@keyframes waPulse {
  0%   { transform:scale(1);   opacity:.5; }
  70%  { transform:scale(1.7); opacity:0; }
  100% { transform:scale(1.7); opacity:0; }
}

/* ── Red notification badge ── */
.wa-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 22px;
  height: 22px;
  background: #FF3B30;
  border-radius: 11px;
  border: 2.5px solid #fff;
  color: #fff;
  font: 700 11px/1 var(--ff-body, sans-serif);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  z-index: 12;
  opacity: 0;
  transform: scale(0);
  transition: opacity .3s ease, transform .4s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
}

.wa-badge.visible {
  opacity: 1;
  transform: scale(1);
}

/* ── AI spark icon on button ── */
.wa-ai-spark {
  position: absolute;
  bottom: -2px;
  left: -2px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #075E54, #128C7E);
  border-radius: 50%;
  border: 2.5px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 13;
  box-shadow: 0 1px 5px rgba(0,0,0,.22);
}

/* ── Shake animation (on notification fire) ── */
@keyframes waShake {
  0%,100% { transform:rotate(0); }
  15%     { transform:rotate(-12deg) scale(1.08); }
  30%     { transform:rotate(12deg)  scale(1.08); }
  45%     { transform:rotate(-7deg); }
  60%     { transform:rotate(7deg); }
  75%     { transform:rotate(-3deg); }
  90%     { transform:rotate(3deg); }
}
.wa-btn.shake { animation: waShake .65s cubic-bezier(.36,.07,.19,.97); }

/* ── Notification bubble (popup above button) ── */
.wa-notify-bubble {
  position: absolute;
  bottom: 74px;
  right: 0;
  background: #fff;
  border-radius: 16px 16px 4px 16px;
  box-shadow: 0 10px 36px rgba(0,0,0,.16), 0 2px 8px rgba(0,0,0,.08);
  padding: 12px 14px 12px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 248px;
  max-width: 288px;
  opacity: 0;
  transform: translateY(10px) scale(.92);
  pointer-events: none;
  transition: opacity .35s ease, transform .4s cubic-bezier(.34,1.56,.64,1);
}

.wa-notify-bubble.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.wa-notify-avatar {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #25D366, #075E54);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-notify-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.wa-notify-name {
  font: 700 12.5px/1 var(--ff-body, sans-serif);
  color: #111;
  letter-spacing: .2px;
}

.wa-notify-msg {
  font: 400 12px/1.35 var(--ff-body, sans-serif);
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa-notify-close {
  background: none;
  border: none;
  color: #bbb;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0 2px;
  flex-shrink: 0;
  transition: color .2s;
}
.wa-notify-close:hover { color: #333; }

/* ── Chat panel ── */
.wa-chat-panel {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 348px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 52px rgba(0,0,0,.18), 0 4px 16px rgba(0,0,0,.08);
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px) scale(.94);
  pointer-events: none;
  transition: opacity .35s ease, transform .4s cubic-bezier(.34,1.56,.64,1);
  display: flex;
  flex-direction: column;
}

.wa-chat-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* ── Chat header ── */
.wa-chat-header {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.wa-chat-header-avatar {
  position: relative;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-online-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 11px;
  height: 11px;
  background: #25D366;
  border-radius: 50%;
  border: 2px solid #075E54;
  animation: onlinePulse 2.5s ease-in-out infinite;
}

@keyframes onlinePulse {
  0%,100% { opacity:1; }
  50%     { opacity:.6; }
}

.wa-chat-header-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.wa-chat-agent-name {
  color: #fff;
  font: 700 14.5px/1 var(--ff-body, sans-serif);
  letter-spacing: .15px;
}

.wa-chat-status {
  color: rgba(255,255,255,.78);
  font: 400 11.5px/1 var(--ff-body, sans-serif);
}

.wa-header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.wa-wa-link {
  background: rgba(255,255,255,.14);
  border: none;
  color: rgba(255,255,255,.85);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s, color .2s;
}
.wa-wa-link:hover { background: rgba(255,255,255,.25); color:#fff; }

.wa-chat-close {
  background: rgba(255,255,255,.14);
  border: none;
  color: rgba(255,255,255,.85);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s, color .2s;
}
.wa-chat-close:hover { background: rgba(255,255,255,.25); color:#fff; }

/* ── AI powered banner ── */
.wa-ai-banner {
  background: linear-gradient(90deg, #f0faf5, #e6f7ee);
  border-bottom: 1px solid rgba(37,211,102,.2);
  padding: 5px 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  font: 600 10.5px/1 var(--ff-body, sans-serif);
  color: #128C7E;
  letter-spacing: .3px;
}

/* ── Messages area ── */
.wa-chat-messages {
  flex: 1;
  padding: 14px 12px;
  min-height: 220px;
  max-height: 290px;
  overflow-y: auto;
  background-color: #E5DDD5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='%23c1b8ae' fill-opacity='.25'/%3E%3Ccircle cx='120' cy='80' r='1.5' fill='%23c1b8ae' fill-opacity='.25'/%3E%3Ccircle cx='70' cy='150' r='1.5' fill='%23c1b8ae' fill-opacity='.25'/%3E%3Ccircle cx='160' cy='30' r='1.5' fill='%23c1b8ae' fill-opacity='.25'/%3E%3C/svg%3E");
  display: flex;
  flex-direction: column;
  gap: 6px;
  scroll-behavior: smooth;
}

.wa-chat-messages::-webkit-scrollbar { width: 3px; }
.wa-chat-messages::-webkit-scrollbar-track { background: transparent; }
.wa-chat-messages::-webkit-scrollbar-thumb { background: rgba(0,0,0,.18); border-radius: 2px; }

/* ── Date label ── */
.wa-msg-time-label {
  text-align: center;
  font: 400 11px/1 var(--ff-body, sans-serif);
  color: #888;
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(4px);
  padding: 3px 12px;
  border-radius: 12px;
  align-self: center;
  margin-bottom: 2px;
}

/* ── Message rows ── */
.wa-msg {
  display: flex;
  animation: waMsgIn .28s cubic-bezier(.34,1.56,.64,1) both;
}

@keyframes waMsgIn {
  from { opacity:0; transform:translateY(8px) scale(.95); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}

.wa-msg-in  { justify-content: flex-start; }
.wa-msg-out { justify-content: flex-end; }

/* ── Bubble ── */
.wa-msg-bubble {
  max-width: 84%;
  padding: 8px 12px 5px;
  border-radius: 0 12px 12px 12px;
  font: 400 13.5px/1.5 var(--ff-body, sans-serif);
  color: #111;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
  word-break: break-word;
}

.wa-msg-out .wa-msg-bubble {
  background: #DCF8C6;
  border-radius: 12px 0 12px 12px;
}

/* ── Bot bubble accent ── */
.wa-msg-bot {
  border-left: 3px solid #25D366;
  background: #fff !important;
}

/* ── Bullet styling ── */
.wa-bullet { color: #25D366; font-weight: 700; }

/* ── Timestamp + tick ── */
.wa-msg-time {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  font: 400 10px/1 var(--ff-body, sans-serif);
  color: #999;
  margin-top: 4px;
}

.wa-tick { flex-shrink: 0; }

/* ── Typing dots ── */
.wa-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 0;
}

.wa-typing span {
  width: 7px;
  height: 7px;
  background: #aaa;
  border-radius: 50%;
  animation: waDot 1.4s ease-in-out infinite;
}
.wa-typing span:nth-child(1) { animation-delay:0s; }
.wa-typing span:nth-child(2) { animation-delay:.2s; }
.wa-typing span:nth-child(3) { animation-delay:.4s; }

@keyframes waDot {
  0%,60%,100% { transform:translateY(0); opacity:.4; }
  30%         { transform:translateY(-5px); opacity:1; }
}

.wa-bubble-typing { padding: 11px 14px 9px; min-width: 54px; }

/* ── Quick reply chips ── */
.wa-quick-replies {
  padding: 8px 10px 6px;
  background: #f3f3f3;
  border-top: 1px solid rgba(0,0,0,.07);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .38s ease, opacity .3s ease;
  pointer-events: none;
}

.wa-quick-replies.visible {
  max-height: 96px;
  opacity: 1;
  pointer-events: all;
}

.wa-chip {
  background: #fff;
  border: 1.5px solid #25D366;
  color: #075E54;
  border-radius: 20px;
  padding: 6px 13px;
  font: 600 12px/1 var(--ff-body, sans-serif);
  cursor: pointer;
  white-space: nowrap;
  transition: background .18s, color .18s, transform .15s, box-shadow .15s;
  box-shadow: 0 1px 3px rgba(37,211,102,.15);
}
.wa-chip:hover { background:#25D366; color:#fff; transform:translateY(-1px); box-shadow:0 3px 8px rgba(37,211,102,.3); }
.wa-chip:active { transform:scale(.95); }

/* ── Escalation card ── */
.wa-escalation-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #075E54, #128C7E);
  border-radius: 12px;
  padding: 13px 14px;
  margin: 4px 0;
  animation: waMsgIn .3s cubic-bezier(.34,1.56,.64,1) both;
  box-shadow: 0 4px 16px rgba(7,94,84,.3);
}

.wa-esc-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-esc-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.wa-esc-title {
  color: #fff;
  font: 700 13px/1 var(--ff-body, sans-serif);
}

.wa-esc-sub {
  color: rgba(255,255,255,.76);
  font: 400 11.5px/1.35 var(--ff-body, sans-serif);
}

.wa-esc-btn {
  background: #25D366;
  border: none;
  color: #fff;
  font: 700 12.5px/1 var(--ff-body, sans-serif);
  padding: 9px 15px;
  border-radius: 20px;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
  transition: background .2s, transform .15s;
  box-shadow: 0 2px 8px rgba(37,211,102,.4);
}
.wa-esc-btn:hover { background:#1ebe5d; transform:scale(1.04); }

/* ── Footer input row ── */
.wa-chat-footer {
  padding: 10px 10px 8px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(0,0,0,.06);
}

.wa-chat-input {
  flex: 1;
  background: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 16px;
  font: 400 13.5px/1 var(--ff-body, sans-serif);
  color: #111;
  outline: none;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
  transition: box-shadow .2s;
}
.wa-chat-input::placeholder { color: #aaa; }
.wa-chat-input:focus { box-shadow: 0 1px 4px rgba(37,211,102,.25), 0 0 0 2px rgba(37,211,102,.14); }

.wa-chat-send {
  width: 42px;
  height: 42px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s, transform .2s;
  box-shadow: 0 2px 8px rgba(37,211,102,.4);
}
.wa-chat-send:hover  { background:#1ebe5d; transform:scale(1.06); }
.wa-chat-send:active { transform:scale(.94); }
.wa-chat-send:disabled { background:#ccc; box-shadow:none; cursor:default; transform:none; }

/* ── Footer brand bar ── */
.wa-chat-footer-brand {
  background: #f0f0f0;
  padding: 5px 0 9px;
  text-align: center;
  font: 400 11px/1 var(--ff-body, sans-serif);
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-top: 1px solid rgba(0,0,0,.06);
}

/* ── RTL ── */
body.rtl .wa-widget          { right:auto; left:36px; }
body.rtl .wa-chat-panel      { right:auto; left:0; }
body.rtl .wa-notify-bubble   { right:auto; left:0; border-radius:16px 16px 16px 4px; }
body.rtl .wa-msg-in          { justify-content:flex-end; }
body.rtl .wa-msg-in .wa-msg-bubble  { border-radius:12px 0 12px 12px; border-left:none; border-right:3px solid #25D366; }
body.rtl .wa-msg-out         { justify-content:flex-start; }
body.rtl .wa-msg-out .wa-msg-bubble { border-radius:0 12px 12px 12px; }
body.rtl .wa-ai-spark        { left:auto; right:-2px; }

/* ── Mobile ── */
@media (max-width:768px) {
  .wa-widget     { bottom:18px; right:14px; }
  body.rtl .wa-widget { right:auto; left:14px; }
  .wa-btn        { width:54px; height:54px; }
  .wa-icon-wa    { width:28px; height:28px; }
  .wa-chat-panel { width:calc(100vw - 28px); right:-14px; }
  body.rtl .wa-chat-panel { right:auto; left:-14px; }
  .wa-notify-bubble { max-width:calc(100vw - 100px); }
}


/* ═══════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════════════════ */

#testimonials {
  background: var(--deep);
  overflow: hidden;
}

/* ── Carousel wrapper ── */
.tst-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto 72px;
}

/* ── Scrollable track (CSS scroll snap) ── */
.tst-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 16px;
  cursor: grab;
}
.tst-track:active { cursor: grabbing; }
.tst-track::-webkit-scrollbar { display: none; }

/* ── Individual card ── */
.tst-card {
  scroll-snap-align: start;
  flex: 0 0 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 48px 52px 40px;
  position: relative;
  transition: border-color .3s;
}
.tst-card:hover { border-color: rgba(201,168,76,0.4); }

/* ── Opening quote mark ── */
.tst-quote-mark {
  font-family: var(--ff-display);
  font-size: 96px;
  font-weight: 900;
  color: var(--gold);
  opacity: .2;
  line-height: .7;
  margin-bottom: 24px;
  user-select: none;
}

/* ── Quote body ── */
.tst-body {
  font-size: 17px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 32px;
  font-style: italic;
}

/* ── Horizontal rule inside card ── */
.tst-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
  opacity: .5;
}

/* ── Author row ── */
.tst-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ── Avatar circle ── */
.tst-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 1.5px solid rgba(201,168,76,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  letter-spacing: .5px;
}

.tst-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .3px;
  margin-bottom: 3px;
}

.tst-role {
  font-size: 12px;
  color: var(--text3);
  letter-spacing: .5px;
}

/* ── Stars ── */
.tst-stars {
  margin-left: auto;
  display: flex;
  gap: 3px;
  flex-shrink: 0;
}
.tst-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

/* ── Navigation controls ── */
.tst-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.tst-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: border-color .3s, background .3s;
}
.tst-arrow:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.tst-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Dot indicators ── */
.tst-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.tst-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text3);
  transition: background .3s, transform .3s, width .3s;
  cursor: none;
  border: none;
  padding: 0;
}
.tst-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 3px;
}

/* ── Trust bar ── */
.tst-trust {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border: 1px solid var(--border);
  max-width: 860px;
  margin: 48px auto 0;
}
.tst-trust-item {
  flex: 1;
  padding: 32px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.tst-trust-sep {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
  align-self: stretch;
}
.tst-trust-num {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

/* ── Partners grid ─────────────────────────────────────────────────────── */
.partners-wrap {
  margin-top: 64px;
}



.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.18);
  max-width: 900px;
  margin: 0 auto;
}

.partner-logo {
  background: #0B0D0F;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  padding: 16px 20px;
  transition: background .3s;
}

.partner-logo:hover {
  background: rgba(201,168,76,0.06);
}

.partner-logo img {
  max-width: 100%;
  max-height: 46px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.45);
  transition: filter .35s;
}

.partner-logo:hover img {
  filter: brightness(0) invert(1) opacity(0.9);
}

.partner-logo-empty {
  background: #0B0D0F !important;
}

@media (max-width: 1024px) {
  .partners-grid { grid-template-columns: repeat(4, 1fr); }
  .partner-logo { height: 80px; }
}

@media (max-width: 768px) {
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .partner-logo { height: 76px; padding: 12px 16px; }
  .partner-logo img { max-height: 40px; }
}

@media (max-width: 480px) {
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .partner-logo { height: 68px; padding: 10px 14px; }
  .partner-logo img { max-height: 34px; }
}

.tst-trust-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text3);
  line-height: 1.4;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .tst-card { padding: 32px 28px 28px; }
  .tst-quote-mark { font-size: 64px; }
  .tst-body { font-size: 15px; }
  .tst-stars { display: none; }
  .tst-trust { flex-wrap: wrap; }
  .tst-trust-item { flex: 1 1 calc(50% - 1px); min-width: 120px; padding: 24px 16px; }
  .tst-trust-sep:nth-child(4) { display: none; }
  .tst-trust-num { font-size: 30px; }
}
@media (max-width: 480px) {
  .tst-trust { flex-wrap: wrap; }
}

/* ── RTL ── */
body.rtl .tst-author { flex-direction: row-reverse; }
body.rtl .tst-stars { margin-left: 0; margin-right: auto; }
body.rtl .tst-body { text-align: right; }
body.rtl .tst-divider { margin-left: auto; }

/* ═══════════════════════════════════════════════════════
   PRICING CALCULATOR
   ═══════════════════════════════════════════════════════ */

.calc-wrap {
  max-width: 960px;
  margin: 80px auto 0;
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}

/* ── Header bar ── */
.calc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 48px 32px;
  border-bottom: 1px solid var(--border);
}
.calc-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.calc-title {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.calc-title em { font-style: normal; color: var(--gold); }
.calc-sub {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 320px;
  margin-top: 6px;
  font-weight: 300;
}

/* ── Body: two-column layout ── */
.calc-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  min-height: 420px;
}

/* ── Controls (left col) ── */
.calc-controls {
  padding: 36px 40px 36px 48px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.calc-group-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 12px;
}

/* ── Size + Contract chip buttons ── */
.calc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.calc-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 16px;
  background: var(--deep2);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--text2);
  font-family: var(--ff-body);
  cursor: none;
  transition: border-color .2s, background .2s, color .2s;
  min-width: 110px;
}
.calc-chip span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  line-height: 1.2;
}
.calc-chip em {
  font-style: normal;
  font-size: 11px;
  color: var(--text3);
  margin-top: 3px;
  font-weight: 400;
}
.calc-chip:hover {
  border-color: rgba(201,168,76,0.4);
  color: var(--text);
}
.calc-chip.active {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  color: var(--white);
}
.calc-chip.active em { color: var(--gold); }

/* ── Add-on checkboxes ── */
.calc-addons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calc-addon-item {
  cursor: none;
}
.calc-addon-item input[type="checkbox"] {
  display: none;
}
.calc-addon-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--deep2);
  border: 1px solid rgba(201,168,76,0.12);
  transition: border-color .2s, background .2s;
  cursor: none;
}
.calc-addon-box svg {
  width: 18px;
  height: 18px;
  stroke: var(--text3);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: stroke .2s;
}
.calc-addon-box div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.calc-addon-box strong {
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
  transition: color .2s;
}
.calc-addon-box span {
  font-size: 11px;
  color: var(--text3);
}
.calc-addon-box em {
  font-style: normal;
  font-size: 12px;
  color: var(--text3);
  font-weight: 500;
  white-space: nowrap;
}
.calc-addon-item input:checked + .calc-addon-box {
  border-color: var(--gold);
  background: rgba(201,168,76,0.07);
}
.calc-addon-item input:checked + .calc-addon-box svg { stroke: var(--gold); }
.calc-addon-item input:checked + .calc-addon-box strong { color: var(--white); }
.calc-addon-item input:checked + .calc-addon-box em { color: var(--gold); }

/* ── Result panel (right col) ── */
.calc-result {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--deep2);
}

.calc-result-top {
  margin-bottom: 28px;
}
.calc-result-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 10px;
}
.calc-result-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
  margin-bottom: 6px;
}
.calc-result-price sup {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  align-self: flex-start;
  margin-top: 8px;
}
.calc-result-price span {
  font-family: var(--ff-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  transition: all .3s;
}
.calc-result-sub {
  font-size: 11px;
  color: var(--text3);
  letter-spacing: .5px;
  margin-top: 4px;
}

/* ── Breakdown rows ── */
.calc-result-rows {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text2);
}
.calc-row span:last-child { color: var(--text); font-weight: 500; }
.calc-row-discount span:first-child { color: var(--gold); }
.calc-row-total {
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 4px;
  font-weight: 600;
}
.calc-row-total span { color: var(--text2); font-weight: 400; }
.calc-row-total strong { color: var(--white); font-size: 14px; }

/* ── Commitment block ── */
.calc-result-commitment {
  border: 1px solid var(--border);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.calc-commit-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text2);
}
.calc-commit-row strong { color: var(--white); }
.calc-savings-row strong { color: var(--gold); }

/* ── Bonus pill ── */
.calc-bonus-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  margin-top: 4px;
}
.calc-bonus-pill svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.calc-bonus-pill span {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .5px;
}

/* ── CTA button ── */
.calc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: var(--gold);
  color: var(--deep);
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: none;
  transition: background .3s;
  margin-top: auto;
}
.calc-cta:hover { background: var(--gold-light); }
.calc-cta svg {
  width: 16px;
  height: 16px;
  stroke: var(--deep);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Price change animation ── */
@keyframes calcPulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.06); color: var(--gold); }
  100% { transform: scale(1); }
}
.calc-result-price span.updating { animation: calcPulse .35s ease; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .calc-header { flex-direction: column; gap: 12px; padding: 28px 28px 24px; }
  .calc-body { grid-template-columns: 1fr; }
  .calc-controls { padding: 28px; border-right: none; border-bottom: 1px solid var(--border); }
  .calc-result { padding: 28px; }
  .calc-result-price span { font-size: 44px; }
}
@media (max-width: 500px) {
  .calc-chips { gap: 6px; }
  .calc-chip { min-width: calc(50% - 3px); }
}

/* ── RTL ── */
body.rtl .calc-header { flex-direction: row-reverse; }
body.rtl .calc-controls { border-right: none; border-left: 1px solid var(--border); }
body.rtl .calc-row,
body.rtl .calc-commit-row { flex-direction: row-reverse; }
body.rtl .calc-chip { align-items: flex-end; }

/* ── Floor plan pricing table ── */
.fp-pricing-table {
  margin: 12px 0 16px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.fp-ptrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  font-size: 11px;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.fp-ptrow:last-child { border-bottom: none; }
.fp-ptrow-highlight { background: rgba(201,168,76,0.06); }
.fp-pt-lbl { color: var(--text2); }
.fp-pt-lbl em { font-style: normal; color: var(--gold); opacity: .75; font-size: 10px; margin-left: 4px; }
.fp-pt-val { color: var(--white); font-weight: 600; font-size: 12px; white-space: nowrap; }
body.rtl .fp-ptrow { flex-direction: row-reverse; }
body.rtl .fp-pt-lbl em { margin-left: 0; margin-right: 4px; }

/* ═══════════════════════════════════════════════════════
   RTL REFINEMENTS — Arabic layout corrections
   ═══════════════════════════════════════════════════════ */

/* ── Numbers stay LTR even in RTL context ── */
body.rtl .stat-num,
body.rtl .plan-price,
body.rtl .fp-price-num,
body.rtl .calc-result-price span,
body.rtl .tst-trust-num,
body.rtl .about-badge-num { direction: ltr; unicode-bidi: embed; }

/* ── Hero stats: in RTL flip to right side ── */
body.rtl .hero-stats { left: auto; right: 4rem; text-align: right; }
body.rtl .stat { text-align: right; }

/* ── Spaces tabs: reverse order visually in RTL ── */
body.rtl .spaces-tabs { flex-direction: row-reverse; flex-wrap: wrap; justify-content: flex-start; }

/* ── Floor plan detail panel ── */
body.rtl .fp-detail-card { text-align: right; }
body.rtl .fp-price { justify-content: flex-end; }
body.rtl .fp-price-cur { order: 3; margin-left: 0; margin-right: 6px; }
body.rtl .fp-price-num { order: 2; }
body.rtl .fp-price-per { order: 1; margin-right: 0; margin-left: 8px; }
body.rtl .fp-pricing-table .fp-ptrow { flex-direction: row-reverse; }
body.rtl .fp-pt-lbl em { margin-left: 0; margin-right: 4px; }

/* ── Booking form ── */
body.rtl .form-row { flex-direction: row-reverse; }
body.rtl .booking-grid { direction: rtl; }
body.rtl .booking-contact h4 { text-align: right; }

/* ── Calculator ── */
body.rtl .calc-header { flex-direction: column; }
body.rtl .calc-body { direction: rtl; }
body.rtl .calc-chips { flex-direction: row-reverse; flex-wrap: wrap; }
body.rtl .calc-chip { align-items: flex-start; text-align: right; }
body.rtl .calc-addons { direction: rtl; }
body.rtl .calc-addon-box { flex-direction: row-reverse; }
body.rtl .calc-result-top { text-align: right; }
body.rtl .calc-result-rows { direction: rtl; }
body.rtl .calc-row { flex-direction: row-reverse; }
body.rtl .calc-result-commitment { direction: rtl; }
body.rtl .calc-commit-row { flex-direction: row-reverse; }
body.rtl .calc-bonus-pill { flex-direction: row-reverse; }
body.rtl .calc-result-price { flex-direction: row-reverse; justify-content: flex-end; }
body.rtl .calc-cta { flex-direction: row-reverse; }
body.rtl .calc-cta svg { transform: scaleX(-1); }

/* ── Testimonials ── */
body.rtl .tst-card { text-align: right; }
body.rtl .tst-quote-mark { text-align: right; }
body.rtl .tst-divider { margin-left: auto; margin-right: 0; }
body.rtl .tst-author { flex-direction: row-reverse; }
body.rtl .tst-stars { margin-left: 0; margin-right: auto; }
body.rtl .tst-trust { direction: rtl; }

body.rtl .tst-controls { flex-direction: row-reverse; }
body.rtl .tst-prev svg { transform: scaleX(-1); }
body.rtl .tst-next svg { transform: scaleX(-1); }

/* ── Services grid ── */
body.rtl .service-card { text-align: right; }
body.rtl .service-more { text-align: right; }

/* ── Service popup ── */
body.rtl .srv-popup-body { text-align: right; direction: rtl; }
body.rtl .srv-popup-highlights { flex-direction: row-reverse; flex-wrap: wrap; }

/* ── Plans ── */
body.rtl .plan-card { text-align: right; direction: rtl; }
body.rtl .plan-features li { text-align: right; }
body.rtl .plan-price { direction: ltr; unicode-bidi: embed; }
body.rtl .plan-price-wrap { text-align: right; }

/* ── Incentives ── */
body.rtl .incentive-card { text-align: right; }

/* ── WhatsApp button ── */
body.rtl .wa-float { right: auto; left: 36px; }


/* ── Section labels ── */
body.rtl .section-label { direction: rtl; }

/* ── Remove letter-spacing on all Arabic text elements ── */
body.rtl .about-item-text h4,
body.rtl .about-item-text p,
body.rtl .eq-item-text strong,
body.rtl .eq-item-text span,
body.rtl .eq-col-title,
body.rtl .eq-col-sub,
body.rtl .tst-name,
body.rtl .tst-role,
body.rtl .tst-body,
body.rtl .calc-group-label,
body.rtl .calc-result-label,
body.rtl .calc-result-sub,
body.rtl .fp-pt-lbl,
body.rtl .hero-sub,
body.rtl .section-sub,
body.rtl p { letter-spacing: 0; }

/* ── Fix EGP symbol order in RTL pricing ── */
body.rtl .plan-price sup { order: 3; margin-left: 2px; margin-right: 0; }
body.rtl .fp-price-cur { font-size: 12px; }

/* ── Mobile RTL ── */

/* ── Arabic font (Cairo) overrides ── */
body.rtl h1,
body.rtl h2,
body.rtl h3,
body.rtl h4,
body.rtl h5,
body.rtl .section-h2,
body.rtl .hero-h1,
body.rtl .plan-name,
body.rtl .tst-body,
body.rtl .calc-title,
body.rtl .tour-title,
body.rtl .tour-page-h1,
body.rtl .faq-q,
body.rtl .fp-info-name,
body.rtl .about-badge-num,
body.rtl .stat-num,
body.rtl .tst-trust-num,
body.rtl .plan-price,
body.rtl .calc-result-price span {
  font-family: var(--ff-arabic);
  letter-spacing: 0;
}
body.rtl .nav-logo-text,
body.rtl .nav-logo-text small,
body.rtl .nav-logo-icon span {
  font-family: var(--ff-arabic);
  letter-spacing: 0;
}
body.rtl button,
body.rtl input,
body.rtl select,
body.rtl textarea,
body.rtl label {
  font-family: var(--ff-arabic);
}

@media (max-width: 768px) {
  body.rtl .hero-stats { right: 1.5rem; left: auto; }
  body.rtl .wa-float { left: 20px; right: auto; }
  body.rtl .calc-body { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════ */

#faq {
  background: var(--deep);
  padding: 120px 4rem;
}

.faq-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Header row ── */
.faq-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}

.faq-book-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .25s, color .25s;
}
.faq-book-btn:hover {
  background: var(--gold);
  color: var(--deep);
}
.faq-book-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s;
}
.faq-book-btn:hover svg { transform: translateX(3px); }

/* ── Two-column grid ── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

.faq-col {
  display: flex;
  flex-direction: column;
}

/* ── Individual item ── */
.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.faq-item:first-child {
  border-top: 1px solid rgba(201,168,76,0.12);
}

/* ── Question button ── */
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: transparent;
  border: none;
  cursor: none;
  text-align: left;
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .2px;
  transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q.open { color: var(--gold); }

/* ── Chevron ── */
.faq-chevron {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s, border-color .25s, transform .35s cubic-bezier(.34,1.56,.64,1);
}
.faq-chevron svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.faq-q.open .faq-chevron {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}
.faq-q.open .faq-chevron svg { transform: rotate(180deg); }

/* ── Answer panel (collapsed by default) ── */
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .38s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
.faq-a > p {
  overflow: hidden;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.8;
  font-weight: 300;
  padding-bottom: 0;
  transition: padding-bottom .38s;
}
.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}
.faq-item.open .faq-a > p {
  padding-bottom: 22px;
}

/* ── Nav link ── */
/* (already handled in main nav) */

/* ── Mobile ── */
@media (max-width: 900px) {
  #faq { padding: 80px 2rem; }
  .faq-header { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 40px; }
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
  .faq-col:last-child .faq-item:first-child { border-top: none; }
}

@media (max-width: 480px) {
  .faq-q { font-size: 13px; }
}

/* ── RTL ── */
body.rtl .faq-header { flex-direction: row-reverse; align-items: flex-end; }
body.rtl .faq-q { flex-direction: row-reverse; text-align: right; letter-spacing: 0; }
body.rtl .faq-a > p { text-align: right; letter-spacing: 0; }
body.rtl .faq-book-btn { flex-direction: row-reverse; letter-spacing: 0; }
body.rtl .faq-book-btn svg { transform: scaleX(-1); }
body.rtl .faq-book-btn:hover svg { transform: scaleX(-1) translateX(-3px); }

/* ═══════════════════════════════════════════════════════
   VIRTUAL TOUR SECTION
   ═══════════════════════════════════════════════════════ */

.tour-wrap {
  margin-top: 80px;
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}

/* ── Header ── */
.tour-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 48px 32px;
  border-bottom: 1px solid var(--border);
}

.tour-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.tour-title {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}
.tour-title em { font-style: normal; color: var(--gold); }

.tour-sub {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 380px;
  font-weight: 300;
}

.tour-book-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  background: var(--gold);
  color: var(--deep);
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .25s;
  align-self: flex-start;
  margin-top: 4px;
}
.tour-book-btn:hover { background: var(--gold-light); }
.tour-book-btn svg {
  width: 15px; height: 15px;
  stroke: var(--deep); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .25s;
}
.tour-book-btn:hover svg { transform: translateX(3px); }

/* ── Space selector tabs ── */
.tour-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.tour-tabs::-webkit-scrollbar { display: none; }

.tour-tab {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 16px 24px;
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  color: var(--text3);
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .5px;
  cursor: none;
  white-space: nowrap;
  transition: color .2s, background .2s;
  position: relative;
}
.tour-tab::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s;
}
.tour-tab svg {
  width: 15px; height: 15px;
  stroke: currentColor; fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.tour-tab:hover { color: var(--text); background: rgba(201,168,76,0.04); }
.tour-tab.active { color: var(--gold); background: rgba(201,168,76,0.06); }
.tour-tab.active::after { transform: scaleX(1); }

/* ── Main stage: video + info side-by-side ── */
.tour-stage {
  display: grid;
  grid-template-columns: 1fr 320px;
  min-height: 420px;
}

/* ── iframe / placeholder wrap ── */
.tour-iframe-wrap {
  position: relative;
  background: var(--deep);
  overflow: hidden;
}

/* ── Placeholder (shown before play) ── */
.tour-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
}
.tour-ph-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease, opacity .4s;
}
.tour-placeholder:hover .tour-ph-bg { transform: scale(1.03); }
.tour-ph-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,13,15,.85) 0%, rgba(11,13,15,.55) 100%);
}
.tour-ph-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.tour-play-btn {
  width: 72px; height: 72px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), background .25s, box-shadow .25s;
  box-shadow: 0 0 0 0 rgba(201,168,76,0);
}
.tour-play-btn:hover {
  transform: scale(1.1);
  background: var(--gold-light);
  box-shadow: 0 0 0 12px rgba(201,168,76,0.15);
}
.tour-play-btn svg {
  width: 28px; height: 28px;
  fill: var(--deep); stroke: none;
  margin-left: 3px;
}
.tour-ph-label {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}
.tour-ph-hint {
  font-size: 12px;
  color: var(--text2);
  letter-spacing: 1px;
}

/* ── Active iframe ── */
.tour-iframe-container {
  position: absolute;
  inset: 0;
  background: #000;
}
.tour-iframe-container iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}
.tour-close-video {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  transition: background .2s, border-color .2s;
  z-index: 10;
}
.tour-close-video:hover { background: rgba(201,168,76,0.2); border-color: var(--gold); }
.tour-close-video svg {
  width: 14px; height: 14px;
  stroke: var(--gold); fill: none;
  stroke-width: 2; stroke-linecap: round;
}

/* ── Info panel ── */
.tour-info {
  padding: 32px 28px;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--deep2);
}
.tour-info-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.tour-info-name {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.tour-info-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 24px;
  flex: 1;
}
.tour-info-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.tour-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text2);
}
.tour-feat svg {
  width: 14px; height: 14px;
  stroke: var(--gold); fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.tour-enquire-btn {
  width: 100%;
  padding: 13px 20px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: none;
  transition: background .25s, color .25s;
  margin-top: auto;
}
.tour-enquire-btn:hover { background: var(--gold); color: var(--deep); }

/* ── Upload note ── */
.tour-upload-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(201,168,76,0.04);
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--text3);
}
.tour-upload-note svg {
  width: 14px; height: 14px;
  stroke: var(--gold); fill: none;
  stroke-width: 2; stroke-linecap: round;
  flex-shrink: 0;
}
.tour-upload-note code {
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  padding: 1px 5px;
  font-size: 10px;
  font-family: monospace;
  border-radius: 2px;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .tour-stage { grid-template-columns: 1fr; }
  .tour-info { border-left: none; border-top: 1px solid var(--border); }
  .tour-iframe-wrap { min-height: 280px; height: 56vw; }
}
@media (max-width: 768px) {
  .tour-header { flex-direction: column; gap: 20px; padding: 28px 24px 24px; }
  .tour-book-btn { width: 100%; justify-content: center; }
  .tour-tab { padding: 14px 16px; font-size: 11px; }
  .tour-tab span { display: none; }
  .tour-tab svg { width: 18px; height: 18px; }
}

/* ── RTL ── */
body.rtl .tour-header { flex-direction: row-reverse; }
body.rtl .tour-header-left { text-align: right; }
body.rtl .tour-tabs { flex-direction: row-reverse; }
body.rtl .tour-tab { border-right: none; border-left: 1px solid var(--border); letter-spacing: 0; }
body.rtl .tour-tab:last-child { border-left: none; }
body.rtl .tour-book-btn { flex-direction: row-reverse; letter-spacing: 0; }
body.rtl .tour-book-btn svg { transform: scaleX(-1); }
body.rtl .tour-book-btn:hover svg { transform: scaleX(-1) translateX(-3px); }
body.rtl .tour-stage { direction: rtl; }
body.rtl .tour-info { border-left: none; border-right: 1px solid var(--border); text-align: right; }
body.rtl .tour-info-tag { letter-spacing: 0; }
body.rtl .tour-feat { flex-direction: row-reverse; }
body.rtl .tour-enquire-btn { letter-spacing: 0; }
body.rtl .tour-ph-hint { letter-spacing: 0; }
body.rtl .tour-upload-note { flex-direction: row-reverse; text-align: right; }

/* ── Virtual Tour CTA strip (index.html) ── */
.tour-cta-strip {
  margin-top: 40px;
  border: 1px solid rgba(201,168,76,0.25);
  background: linear-gradient(90deg, rgba(201,168,76,0.06) 0%, rgba(201,168,76,0.02) 100%);
}
.tour-cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 32px;
}
.tour-cta-strip-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.tour-cta-strip-left > svg {
  width: 36px; height: 36px;
  fill: none; stroke: var(--gold);
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.tour-cta-strip-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.tour-cta-strip-sub {
  font-size: 12px;
  color: var(--text2);
}
.tour-cta-strip-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--deep);
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .25s;
  cursor: none;
}
.tour-cta-strip-btn:hover { background: var(--gold-light); }
.tour-cta-strip-btn svg {
  width: 14px; height: 14px;
  stroke: var(--deep); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .2s;
}
.tour-cta-strip-btn:hover svg { transform: translateX(3px); }

@media (max-width: 640px) {
  .tour-cta-strip-inner { flex-direction: column; align-items: flex-start; padding: 20px 24px; }
  .tour-cta-strip-btn { width: 100%; justify-content: center; }
}

body.rtl .tour-cta-strip-inner { flex-direction: row-reverse; }
body.rtl .tour-cta-strip-left { flex-direction: row-reverse; }
body.rtl .tour-cta-strip-btn { flex-direction: row-reverse; letter-spacing: 0; }
body.rtl .tour-cta-strip-btn svg { transform: scaleX(-1); }
body.rtl .tour-cta-strip-btn:hover svg { transform: scaleX(-1) translateX(-3px); }

/* ── Gallery tour button ── */
.gallery-tour-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  padding: 8px 14px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold);
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: none;
  transition: background .25s, border-color .25s, transform .25s;
  backdrop-filter: blur(4px);
}
.gallery-tour-btn:hover {
  background: rgba(201,168,76,0.3);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.gallery-tour-btn svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  stroke: none;
  flex-shrink: 0;
}
body.rtl .gallery-tour-btn { flex-direction: row-reverse; letter-spacing: 0; }

/* ── Hero Virtual Tour button ── */
.hero-tour-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 0;
  text-decoration: none;
  opacity: 0;
  animation: fadeUp .8s 1.15s forwards;
  cursor: none;
  width: fit-content;
}
.hero-tour-btn:hover .hero-tour-play { transform: scale(1.12); background: var(--gold-light); }
.hero-tour-btn:hover .hero-tour-arrow { transform: translateX(4px); }

/* Play circle */
.hero-tour-play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), background .25s;
  position: relative;
}
.hero-tour-play::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.35);
  animation: heroTourPulse 2.8s ease-out infinite;
}
@keyframes heroTourPulse {
  0%   { transform: scale(1); opacity: .7; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
.hero-tour-play svg {
  width: 16px;
  height: 16px;
  fill: var(--deep);
  stroke: none;
  margin-left: 2px;
}

/* Text */
.hero-tour-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-tour-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .5px;
  line-height: 1;
}
.hero-tour-sub {
  font-size: 11px;
  color: var(--text2);
  font-weight: 300;
  letter-spacing: .3px;
}

/* Arrow */
.hero-tour-arrow {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s ease;
  margin-left: 4px;
}

/* RTL */
body.rtl .hero-tour-btn {
  flex-direction: row-reverse;
  margin-right: 0;
}
body.rtl .hero-tour-play svg { margin-left: 0; margin-right: 2px; }
body.rtl .hero-tour-text { align-items: flex-end; }
body.rtl .hero-tour-label,
body.rtl .hero-tour-sub { letter-spacing: 0; }
body.rtl .hero-tour-arrow {
  transform: scaleX(-1);
  margin-left: 0;
  margin-right: 4px;
}
body.rtl .hero-tour-btn:hover .hero-tour-arrow { transform: scaleX(-1) translateX(4px); }

/* Mobile */
@media (max-width: 600px) {
  .hero-tour-btn { margin-top: 16px; }
  .hero-tour-sub { display: none; }
}

/* ═══════════════════════════════════════════════════════
   FLOATING VIRTUAL TOUR PILL
   ═══════════════════════════════════════════════════════ */

.tour-pill {
  position: fixed;
  bottom: 108px; /* sits above the WA button (36px + 58px + 14px gap) */
  right: 36px;
  z-index: 9989;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 10px;
  background: var(--deep2);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-decoration: none;
  cursor: none;
  white-space: nowrap;

  /* Hidden by default — slides up when visible */
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
  transition: opacity .35s ease,
              transform .4s cubic-bezier(.34,1.56,.64,1),
              background .25s,
              border-color .25s;
}

/* Visible state — added by JS after scroll */
.tour-pill.visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.tour-pill:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}

/* Play icon circle */
.tour-pill-icon {
  width: 30px;
  height: 30px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), background .25s;
}
.tour-pill-icon svg {
  width: 11px;
  height: 11px;
  fill: var(--deep);
  stroke: none;
  margin-left: 2px;
}
.tour-pill:hover .tour-pill-icon {
  transform: scale(1.1);
  background: var(--gold-light);
}

/* Arrow */
.tour-pill-arrow {
  width: 13px;
  height: 13px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s ease;
  opacity: .7;
}
.tour-pill:hover .tour-pill-arrow {
  transform: translateX(3px);
  opacity: 1;
}

/* ── Mobile: compact, no text ── */
@media (max-width: 768px) {
  .tour-pill {
    bottom: 90px;
    right: 20px;
    padding: 10px;
    gap: 0;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    justify-content: center;
  }
  .tour-pill-txt,
  .tour-pill-arrow { display: none; }
  .tour-pill-icon {
    width: 28px;
    height: 28px;
  }
}

/* ── RTL: flip to left side ── */
body.rtl .tour-pill {
  right: auto;
  left: 36px;
  flex-direction: row-reverse;
  transform: translateX(-20px);
  letter-spacing: 0;
}
body.rtl .tour-pill.visible {
  transform: translateX(0);
}
body.rtl .tour-pill-icon svg { margin-left: 0; margin-right: 2px; }
body.rtl .tour-pill-arrow { transform: scaleX(-1); }
body.rtl .tour-pill:hover .tour-pill-arrow { transform: scaleX(-1) translateX(3px); }

@media (max-width: 768px) {
  body.rtl .tour-pill { left: 20px; right: auto; }
}

/* ═══════════════════════════════════════════════════════
   MOBILE REFINEMENTS — Comprehensive responsive overhaul
   ═══════════════════════════════════════════════════════ */

/* ── Base: prevent overflow on all screen sizes ── */
html, body { overflow-x: hidden; max-width: 100vw; }
img, svg, video, iframe { max-width: 100%; }
* { box-sizing: border-box; }

/* ════════════════════════════════
   TABLET  (max 1024px)
════════════════════════════════ */
@media (max-width: 1024px) {
  section { padding: 80px 2.5rem; }
  #about { gap: 48px; }
  .calc-wrap .calc-body { grid-template-columns: 1fr; }
  .calc-controls { border-right: none; border-bottom: 1px solid var(--border); }
  .tst-trust { flex-wrap: nowrap; }
  .tour-stage { grid-template-columns: 1fr; }
  .tour-info-panel { border-left: none; border-top: 1px solid var(--border); }
}

/* ════════════════════════════════
   MOBILE  (max 768px)
════════════════════════════════ */
@media (max-width: 768px) {
  /* ── Typography ── */
  .hero-h1 { font-size: clamp(32px, 8vw, 52px); letter-spacing: -.5px; line-height: 1.1; }
  .section-h2 { font-size: clamp(26px, 6vw, 40px); }
  .section-sub { font-size: 14px; }

  /* ── Spacing ── */
  section { padding: 64px 1.25rem; }
  #faq { padding: 64px 1.25rem; }

  /* ── Nav ── */
  nav { padding: 0 1.25rem; height: 68px; }
  .nav-logo-text { font-size: 13px; }

  /* ── Hero ── */
  .hero-content { padding: 0 1.25rem; padding-top: 100px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; justify-content: center; padding: 14px 24px; }
  .hero-tour-btn { margin-top: 8px; }
  .hero-h1 em { display: inline; }

  /* ── About ── */
  #about { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { display: none; }

  /* ── Gallery ── */
  .gallery-grid { grid-template-columns: 1fr; gap: 2px; }
  .gallery-item.large { grid-column: span 1; aspect-ratio: 16/9; }
  .gallery-item { aspect-ratio: 16/9; min-height: 200px; }
  .gallery-info { opacity: 1; transform: translateY(0); }
  .gallery-overlay { opacity: 1; }
  .gallery-tour-btn { display: none; } /* hidden on mobile — tour page accessible via strip */

  /* ── Spaces header ── */
  .spaces-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 32px; }
  .spaces-tabs { width: 100%; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .tab-btn { flex-shrink: 0; padding: 10px 14px; font-size: 10px; }

  /* ── Floor plan ── */
  .fp-content.active { grid-template-columns: 1fr; gap: 24px; }
  .fp-tabs { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .fp-tab { flex-shrink: 0; padding: 12px 18px; font-size: 11px; }
  .fp-svg-wrap { padding: 16px; }

  /* ── Equipment ── */
  .eq-columns { grid-template-columns: 1fr; }
  .eq-col:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .eq-col-header { padding: 20px 20px 0; }
  .eq-items { padding: 0 20px 20px; }
  .eq-item { padding: 14px 0; }

  /* ── Services ── */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .service-card { padding: 28px 20px; }
  .service-icon { width: 44px; height: 44px; margin-bottom: 20px; }

  /* ── Testimonials ── */
  .tst-carousel { margin-bottom: 40px; }
  .tst-card { padding: 28px 24px; }
  .tst-quote-mark { font-size: 56px; margin-bottom: 16px; }
  .tst-body { font-size: 14px; }
  .tst-trust { flex-wrap: wrap; }
  .tst-trust-item { flex: 1 1 calc(50% - 1px); padding: 24px 12px; }
  .tst-trust-sep:nth-child(4) { display: none; }
  .tst-trust-num { font-size: 30px; }

  /* ── Plans ── */
  .plans-grid { grid-template-columns: 1fr; gap: 2px; }
  .plan-card { padding: 32px 24px; }
  .plan-price { font-size: clamp(32px,8vw,52px); }

  /* ── Calculator ── */
  .calc-wrap { margin-top: 48px; }
  .calc-header { flex-direction: column; gap: 16px; padding: 24px 20px 20px; }
  .calc-body { grid-template-columns: 1fr; }
  .calc-controls { padding: 20px; border-right: none; border-bottom: 1px solid var(--border); }
  .calc-result { padding: 20px; }
  .calc-result-price span { font-size: 40px; }
  .calc-chips { gap: 6px; }
  .calc-chip { min-width: calc(50% - 3px); padding: 10px 12px; }

  /* ── Incentives ── */
  .incentives { grid-template-columns: 1fr; gap: 2px; }
  .incentive-card { padding: 24px 20px; }

  /* ── FAQ ── */
  .faq-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 36px; }
  .faq-book-btn { width: 100%; justify-content: center; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-col:last-child .faq-item:first-child { border-top: none; }
  .faq-q { font-size: 13px; padding: 18px 0; }

  /* ── Booking ── */
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .booking-info { padding: 0; }
  .booking-contact { margin-top: 24px; }

  /* ── Footer ── */
  footer { padding: 48px 1.25rem 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* ── Popups ── */
  .popup-box { padding: 36px 24px; width: 95%; }
  .srv-popup-card { width: 95vw; max-height: 90vh; }
  .srv-popup-img-wrap { height: 180px; }

  /* ── Tour ── */
  .tour-cta-strip-inner { flex-direction: column; gap: 16px; padding: 20px; }
  .tour-cta-strip-btn { width: 100%; justify-content: center; }

  /* ── Floating elements ── */
  .wa-float { bottom: 20px; right: 16px; }
  .tour-pill { bottom: 84px; right: 16px; }
  .toast { right: 16px; bottom: 20px; left: 16px; max-width: 100%; }
}

/* ════════════════════════════════
   SMALL MOBILE  (max 480px)
════════════════════════════════ */
@media (max-width: 480px) {
  section { padding: 52px 1rem; }
  #faq { padding: 52px 1rem; }
  nav { padding: 0 1rem; }

  .hero-content { padding: 0 1rem; padding-top: 88px; }
  .hero-label { margin-bottom: 16px; }

  /* Gallery always single col */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item.large { aspect-ratio: 4/3; }

  /* Services: single col on tiny screens */
  .services-grid { grid-template-columns: 1fr; }

  /* Spaces tabs: horizontal scroll, no wrap */
  .spaces-tabs { padding-bottom: 2px; }

  /* Floor plan tabs */
  .fp-tab { padding: 10px 14px; font-size: 10px; letter-spacing: .5px; }

  /* Popup full width */
  .popup-box { padding: 28px 18px; width: 98%; }

  /* Calculator chips: 2 per row */
  .calc-chip { min-width: calc(50% - 4px); font-size: 11px; }

  /* Tour pill: icon only */
  .tour-pill { padding: 0; width: 44px; height: 44px; border-radius: 50%; justify-content: center; gap: 0; }
  .tour-pill-txt, .tour-pill-arrow { display: none; }

  /* WhatsApp */
  .wa-float { right: 12px; bottom: 16px; }
  .tour-pill { right: 12px; bottom: 76px; }
  .wa-btn { width: 50px; height: 50px; }
  .wa-icon-wa { width: 24px; height: 24px; }

  /* Typography tightening */
  .tst-trust-num { font-size: 28px; }
  .plan-price sup { font-size: 12px; }
}

/* ════════════════════════════════
   RTL MOBILE overrides
════════════════════════════════ */
@media (max-width: 768px) {
  body.rtl .hero-actions { flex-direction: column; align-items: flex-end; }
  body.rtl .btn-primary, body.rtl .btn-outline { text-align: center; }
  body.rtl .hero-tour-btn { align-self: flex-end; }
  body.rtl .spaces-tabs { flex-direction: row; }
  body.rtl .faq-header { flex-direction: column; align-items: flex-end; }
  body.rtl .faq-book-btn { align-self: flex-end; }
  body.rtl .tour-pill { left: 16px; right: auto; }
  body.rtl .wa-float { left: 16px; right: auto; }
  body.rtl .footer-bottom { flex-direction: column; }
}
@media (max-width: 480px) {
  body.rtl .tour-pill { left: 12px; right: auto; }
  body.rtl .wa-float { left: 12px; right: auto; }
}

/* ── Touch: remove cursor on touch devices ── */
@media (hover: none) and (pointer: coarse) {
  .cursor, .cursor-ring { display: none !important; }
  * { cursor: auto !important; }
  a, button, [onclick] { cursor: pointer !important; }
}

/* ═══════════════════════════════════════════════════════
   MOBILE STICKY CTA BAR
   ═══════════════════════════════════════════════════════ */

/* ── Desktop: hidden always ── */
.mob-cta-bar {
  display: none;
}

/* ── Mobile only ── */
@media (max-width: 768px) {
  .mob-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9980;
    height: 60px;
    background: var(--deep2);
    border-top: 1px solid rgba(201,168,76,0.3);

    /* Hidden by default — slides up on scroll */
    transform: translateY(100%);
    transition: transform .38s cubic-bezier(.4,0,.2,1);
  }

  .mob-cta-bar.visible {
    transform: translateY(0);
  }

  /* ── Hidden when booking popup is open ── */
  .mob-cta-bar.hidden-popup {
    transform: translateY(100%);
  }

  /* ── Call button (left half) ── */
  .mob-cta-call {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
    color: var(--text);
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
    background: transparent;
    transition: background .2s;
    -webkit-tap-highlight-color: transparent;
  }
  .mob-cta-call:active { background: rgba(255,255,255,0.05); }
  .mob-cta-call svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }

  /* ── Divider ── */
  .mob-cta-sep {
    width: 1px;
    height: 32px;
    background: rgba(201,168,76,0.2);
    align-self: center;
    flex-shrink: 0;
  }

  /* ── Book button (right half — gold fill) ── */
  .mob-cta-book {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--gold);
    border: none;
    color: var(--deep);
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    cursor: pointer;
    transition: background .2s;
    -webkit-tap-highlight-color: transparent;
  }
  .mob-cta-book:active { background: var(--gold-light); }
  .mob-cta-book svg {
    width: 16px;
    height: 16px;
    stroke: var(--deep);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }

  /* ── Push page content above the bar ── */
  body.mob-bar-active { padding-bottom: 60px; }

  /* ── Shift floating elements up so they clear the bar ── */
  body.mob-bar-active .wa-float { bottom: 76px; }
  body.mob-bar-active .tour-pill { bottom: 140px; }

  /* ── Arabic font override ── */
  body.rtl .mob-cta-call,
  body.rtl .mob-cta-book {
    font-family: var(--ff-arabic);
    letter-spacing: 0;
    flex-direction: row-reverse;
  }
}

@media (max-width: 480px) {
  body.mob-bar-active .wa-float { bottom: 72px; right: 12px; }
  body.mob-bar-active .tour-pill { bottom: 132px; right: 12px; }
  body.rtl.mob-bar-active .wa-float { left: 12px; right: auto; }
  body.rtl.mob-bar-active .tour-pill { left: 12px; right: auto; }
}

/* ═══════════════════════════════════════════════════════
   LANGUAGE PICKER POPUP
   ═══════════════════════════════════════════════════════ */

.lp-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lpFadeIn .35s ease both;
  padding: 20px;
}

@keyframes lpFadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}

.lp-overlay.lp-hiding {
  animation: lpFadeOut .4s ease both;
}

@keyframes lpFadeOut {
  from { opacity:1; transform:scale(1); }
  to   { opacity:0; transform:scale(.96); }
}

.lp-card {
  background: var(--deep2, #1a1a2e);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 20px;
  padding: 44px 40px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  animation: lpSlideUp .45s cubic-bezier(.34,1.56,.64,1) both;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

@keyframes lpSlideUp {
  from { opacity:0; transform:translateY(32px) scale(.95); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}

/* Logo */
.lp-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.lp-logo .nav-logo-icon {
  width: 46px;
  height: 46px;
}

.lp-logo .nav-logo-icon span {
  font-size: 16px;
}

.lp-logo .nav-logo-text {
  font-size: 17px;
}

.lp-logo .nav-logo-text small {
  font-size: 10px;
}

/* Title */
.lp-title {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.lp-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin: 0 0 28px;
  letter-spacing: 1px;
}

.lp-dot { margin: 0 4px; }

/* Divider label */
.lp-choose {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin: 0 0 24px;
  position: relative;
}

.lp-choose::before,
.lp-choose::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 50px;
  height: 1px;
  background: rgba(255,255,255,0.12);
}
.lp-choose::before { right: calc(50% + 110px); }
.lp-choose::after  { left:  calc(50% + 110px); }

/* Buttons */
.lp-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lp-btn {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 20px 16px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all .22s cubic-bezier(.34,1.56,.64,1);
  position: relative;
  overflow: hidden;
}

.lp-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .2s;
  border-radius: inherit;
}

.lp-btn-en::before { background: linear-gradient(135deg, rgba(37,99,235,.18), rgba(37,99,235,.06)); }
.lp-btn-ar::before { background: linear-gradient(135deg, rgba(201,168,76,.18), rgba(201,168,76,.06)); }

.lp-btn:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(255,255,255,0.28);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.lp-btn:hover::before { opacity: 1; }

.lp-btn-en:hover { border-color: rgba(37,99,235,.5); }
.lp-btn-ar:hover { border-color: rgba(201,168,76,.5); }

.lp-btn:active { transform: scale(.97); }

.lp-flag {
  font-size: 32px;
  line-height: 1;
  display: block;
}

.lp-btn-label {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  display: block;
}

.lp-btn-sub {
  font-size: 11.5px;
  color: rgba(255,255,255,0.45);
  display: block;
}

/* Mobile */
@media (max-width: 480px) {
  .lp-card {
    padding: 36px 24px 32px;
  }
  .lp-btns {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .lp-btn { padding: 16px 12px; }
  .lp-flag { font-size: 28px; }
  .lp-btn-label { font-size: 15px; }
  .lp-choose::before,
  .lp-choose::after { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   FLOOR PLAN — MOBILE ENHANCEMENTS  (mobile-only, max-width:768px)
   1. Eyehook animated guide banner
   2. Glowing inquire button after room selection
   ═══════════════════════════════════════════════════════════════ */

/* Desktop: hide guide completely */
.fp-tap-guide { display: none; }

@media (max-width: 768px) {

  /* ─────────────────────────────────────────────────
     1. GUIDE BANNER
  ───────────────────────────────────────────────── */
  .fp-tap-guide {
    display: block;
    position: relative;
    margin-bottom: 12px;
    border: 1px solid rgba(201,168,76,0.35);
    background: linear-gradient(135deg,
      rgba(201,168,76,0.08) 0%,
      rgba(201,168,76,0.03) 100%
    );
    overflow: hidden;
    /* Slide-in from top */
    animation: fpGuideIn 0.5s cubic-bezier(.34,1.56,.64,1) both;
  }

  @keyframes fpGuideIn {
    from { opacity:0; transform:translateY(-14px) scale(.97); }
    to   { opacity:1; transform:translateY(0) scale(1); }
  }

  /* Dismiss animation */
  .fp-tap-guide.fp-guide-gone {
    animation: fpGuideOut 0.32s ease forwards;
    pointer-events: none;
  }

  @keyframes fpGuideOut {
    from { opacity:1; max-height:120px; margin-bottom:12px; padding-top:0; }
    to   { opacity:0; max-height:0;     margin-bottom:0;   padding-top:0; }
  }

  /* ── Eyehook corner brackets ── */
  .fp-guide-hook {
    position: absolute;
    width: 14px;
    height: 14px;
    pointer-events: none;
    /* Draw-in animation */
    clip-path: polygon(0 0,0 0,0 0);
    transition: clip-path 0.3s ease;
  }

  .fp-tap-guide:not(.fp-guide-gone) .fp-guide-hook-tl {
    top:0; left:0;
    border-top: 2px solid var(--gold); border-left: 2px solid var(--gold);
    clip-path: polygon(0 0,100% 0,0 100%);
    transition-delay: 0.1s;
  }
  .fp-tap-guide:not(.fp-guide-gone) .fp-guide-hook-tr {
    top:0; right:0;
    border-top: 2px solid var(--gold); border-right: 2px solid var(--gold);
    clip-path: polygon(0 0,100% 0,100% 100%);
    transition-delay: 0.15s;
  }
  .fp-tap-guide:not(.fp-guide-gone) .fp-guide-hook-bl {
    bottom:0; left:0;
    border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold);
    clip-path: polygon(0 0,0 100%,100% 100%);
    transition-delay: 0.2s;
  }
  .fp-tap-guide:not(.fp-guide-gone) .fp-guide-hook-br {
    bottom:0; right:0;
    border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold);
    clip-path: polygon(100% 0,100% 100%,0 100%);
    transition-delay: 0.25s;
  }

  /* Shimmer sweep across banner */
  .fp-tap-guide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
      transparent 0%,
      rgba(201,168,76,0.13) 50%,
      transparent 100%
    );
    background-size: 200% 100%;
    animation: fpGuideShimmer 2.6s ease-in-out infinite;
    pointer-events: none;
  }

  @keyframes fpGuideShimmer {
    0%   { background-position: -100% 0; }
    100% { background-position:  200% 0; }
  }

  /* ── Inner row ── */
  .fp-guide-body {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    position: relative;
    z-index: 1;
  }

  /* ── Icon with spinning dashed ring ── */
  .fp-guide-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    animation: fpIconBounce 1.5s ease-in-out infinite;
  }

  @keyframes fpIconBounce {
    0%,100% { transform: translateY(0); }
    45%     { transform: translateY(-5px); }
    70%     { transform: translateY(-2px); }
  }

  .fp-guide-spin {
    animation: fpSpin 8s linear infinite;
    transform-origin: 16px 16px;
  }

  @keyframes fpSpin { to { transform: rotate(360deg); } }

  .fp-guide-pulse-ring {
    transform-origin: 16px 16px;
    animation: fpPulseRing 1.6s ease-out infinite;
  }

  @keyframes fpPulseRing {
    0%   { transform: scale(1);   opacity: .6; }
    100% { transform: scale(1.8); opacity: 0;  }
  }

  /* ── Text ── */
  .fp-guide-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .fp-guide-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
  }

  .fp-guide-sub {
    font-size: 11px;
    color: var(--text2);
    line-height: 1.4;
  }

  /* ── Bouncing arrow ── */
  .fp-guide-arrow {
    font-size: 14px;
    color: var(--gold);
    flex-shrink: 0;
    animation: fpArrow 1.2s ease-in-out infinite;
  }

  @keyframes fpArrow {
    0%,100% { transform: translateY(0);   opacity: .6; }
    50%     { transform: translateY(5px); opacity: 1;  }
  }

  /* ── Arabic RTL flip ── */
  body.rtl .fp-guide-body { flex-direction: row-reverse; }
  body.rtl .fp-guide-text { text-align: right; }
  body.rtl .fp-guide-title,
  body.rtl .fp-guide-sub  { font-family: 'Cairo', sans-serif; }

  /* ─────────────────────────────────────────────────
     2. GLOWING INQUIRE BUTTON (active after room tap)
  ───────────────────────────────────────────────── */
  .fp-inquire-btn.fp-btn-active {
    opacity: 1 !important;
    pointer-events: auto !important;
    animation: fpBtnPulse 1.8s ease-in-out infinite;
    position: relative;
    overflow: hidden;
  }

  @keyframes fpBtnPulse {
    0%,100% {
      box-shadow: 0 0 0 0   rgba(201,168,76,.7),
                  0 4px 16px rgba(201,168,76,.25);
    }
    50% {
      box-shadow: 0 0 0 10px rgba(201,168,76,0),
                  0 4px 28px rgba(201,168,76,.55);
    }
  }

  /* Shimmer sweep on button */
  .fp-inquire-btn.fp-btn-active::before {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg,
      transparent,
      rgba(255,255,255,.26),
      transparent
    );
    animation: fpBtnShimmer 1.9s ease-in-out infinite;
    pointer-events: none;
  }

  @keyframes fpBtnShimmer {
    0%   { left: -80%; }
    100% { left: 160%; }
  }

} /* end @media 768px */

/* ═══════════════════════════════════════════════════════════════
   AMENITIES GUIDED TOUR  —  mobile-only (max-width: 768px)
   Classes added/removed dynamically by runAmenitiesTour()
   ═══════════════════════════════════════════════════════════════ */

/* Desktop: none of these classes do anything */
@media (max-width: 768px) {

  /* ── 1. Scroll + touch lock ── */
  body.eq-tour-locked {
    overflow: hidden !important;
    touch-action: none !important;
    /* Prevent pull-to-refresh on iOS */
    overscroll-behavior: none;
  }

  /* ── 2. Highlighted item — gold accent, lifts visually ── */
  .eq-item.eq-tour-spotlight {
    position: relative;
  }

  /* Active highlight state — gold border + bright bg + accent bar */
  .eq-item.eq-tour-active {
    background: rgba(201,168,76,0.10) !important;
    border-bottom-color: rgba(201,168,76,0.4) !important;
    /* Pulse scale to draw the eye */
    animation: eqItemPop 0.22s cubic-bezier(.34,1.56,.64,1) both;
  }

  .eq-item.eq-tour-active::before {
    transform: scaleY(1) !important;  /* gold left bar fully visible */
  }

  .eq-item.eq-tour-active .eq-item-icon {
    background: rgba(201,168,76,0.22) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 14px rgba(201,168,76,0.45);
  }

  .eq-item.eq-tour-active .eq-item-text strong {
    color: var(--gold) !important;
  }

  @keyframes eqItemPop {
    from { transform: scale(0.97); opacity: 0.5; }
    to   { transform: scale(1);    opacity: 1;   }
  }

  /* ── 4. CTA button glow — persists until tapped ── */
  #eq-cta-btn.eq-cta-glow {
    position: relative;
    overflow: hidden;
    /* Pulsing gold ring */
    animation: eqCtaPulse 1.6s ease-in-out infinite;
  }

  @keyframes eqCtaPulse {
    0%,100% {
      box-shadow: 0 0 0 0   rgba(201,168,76,.75),
                  0 4px 20px rgba(201,168,76,.30);
    }
    50% {
      box-shadow: 0 0 0 12px rgba(201,168,76,0),
                  0 4px 32px rgba(201,168,76,.60);
    }
  }

  /* Shimmer sweep across CTA */
  #eq-cta-btn.eq-cta-glow::before {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.28),
      transparent
    );
    animation: eqCtaShimmer 1.8s ease-in-out infinite;
    pointer-events: none;
  }

  @keyframes eqCtaShimmer {
    0%   { left: -80%; }
    100% { left: 160%; }
  }

  /* CTA wrap — normal stacking, no overlay to compete with */
  .eq-tour-cta-wrap {
    position: relative;
  }

}
/* end @media 768px */

/* CTA wrap — normal stacking */
@media (max-width: 768px) {
  .eq-tour-cta-wrap {
    position: relative;
  }
}
