/* ══════════════════════════════════════════════════════════════
   رؤية كلين — الأنماط الرئيسية
   نظام أزرق سماوي #0096c7 + برتقالي · RTL · متجاوب بالكامل
   ══════════════════════════════════════════════════════════════ */

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

/* ━━━ TOKENS ━━━ */
:root{
  --ink:    #f4fbfd;
  --ink-2:  #eaf6fb;
  --ink-3:  #ffffff;
  --ink-4:  #dff1f8;

  --light:     #f4fbfd;
  --light-2:   #eaf6fb;
  --light-3:   #dff1f8;
  --on-light:  #073b53;
  --on-light-2:#0a4f6e;
  --on-light-muted: rgba(7,59,83,.6);

  --gold:      #0096c7;
  --gold-2:    #00b4d8;
  --gold-3:    #0077b6;
  --gold-4:    #48cae4;
  --gold-glow: rgba(0,150,199,.35);

  --crimson:   #ff8500;
  --crimson-2: #ff6d00;

  --c-blue:    #00b4d8;
  --c-org1:    #ff9e00;
  --c-org2:    #ff9100;
  --c-org3:    #ff8500;
  --c-bluedk:  #0077b6;

  --white:  #ffffff;
  --muted:  rgba(255,255,255,.78);
  --muted-2:rgba(255,255,255,.5);

  --border:   rgba(0,150,199,.22);
  --border-2: rgba(0,150,199,.42);
  --border-l: rgba(0,150,199,.2);

  --ease: cubic-bezier(.4,0,.2,1);
}

body{
  font-family:'Cairo',sans-serif;
  direction:rtl; background:var(--ink); color:var(--on-light);
  line-height:1.6; font-weight:400;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;}
a{color:inherit;}

.screen-reader-text{position:absolute!important;width:1px;height:1px;overflow:hidden;clip:rect(1px,1px,1px,1px);}
.skip-link{position:absolute;right:-9999px;z-index:9999;background:#fff;padding:10px 18px;border-radius:8px;}
.skip-link:focus{right:20px;top:12px;}

/* ━━━ HEADER ━━━ */
.roya-header{
  position:fixed; top:0; left:0; right:0; z-index:900;
  background:transparent;
  border-bottom:1px solid transparent;
  transition:background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
/* تظهر الخلفية عند التمرير، أو في الصفحات التي لا تبدأ بهيرو */
.roya-header.is-scrolled,
body.no-hero .roya-header{
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border-l);
  box-shadow:0 8px 30px rgba(0,119,182,.12);
}
.roya-header__inner{ display:flex; align-items:center; justify-content:space-between; gap:20px; min-height:88px; }
.roya-header__brand img{ max-height:74px; width:auto; }
.roya-header__logo-text{ display:inline-flex; align-items:center; gap:11px; font-size:clamp(1.6rem,3.6vw,2.15rem); font-weight:900; color:var(--gold-3); text-decoration:none; line-height:1; transition:color .3s; }
.roya-logo__ic{ width:46px; height:46px; border-radius:13px; flex-shrink:0; display:flex; align-items:center; justify-content:center; color:#fff; background:linear-gradient(135deg,var(--c-org1),var(--c-org3)); box-shadow:0 8px 20px rgba(255,133,0,.38); }
.roya-logo__ic svg{ width:27px; height:27px; }
.roya-logo__tx span{ color:var(--crimson); }

/* في الأعلى فوق الهيرو (شفاف): نصوص بيضاء */
body.has-hero .roya-header:not(.is-scrolled) .roya-header__logo-text{ color:#fff; }
body.has-hero .roya-header:not(.is-scrolled) .roya-logo__tx span{ color:var(--c-org1); }
body.has-hero .roya-header:not(.is-scrolled) .roya-header__phone{ color:#fff; }
body.has-hero .roya-header:not(.is-scrolled) .roya-nav__toggle{ background:transparent; border-color:transparent; box-shadow:none; }
body.has-hero .roya-header:not(.is-scrolled) .roya-nav__toggle span{ background:#fff; }

.roya-nav__menu{ list-style:none; display:flex; align-items:center; gap:6px; margin:0; padding:0; }
.roya-nav__menu li{ position:relative; }
.roya-nav__menu a{
  display:block; padding:8px 14px; border-radius:9px;
  color:var(--on-light); text-decoration:none; font-weight:700; font-size:.92rem;
  transition:all .25s var(--ease);
}
.roya-nav__menu a:hover{ color:var(--gold-3); background:rgba(0,150,199,.08); }
.roya-nav__menu .sub-menu{
  list-style:none; position:absolute; top:100%; right:0; min-width:200px;
  background:#fff; border:1px solid var(--border-l); border-radius:12px; padding:8px;
  box-shadow:0 16px 40px rgba(0,119,182,.16); opacity:0; visibility:hidden;
  transform:translateY(8px); transition:all .25s var(--ease); z-index:10;
}
.roya-nav__menu li:hover > .sub-menu{ opacity:1; visibility:visible; transform:translateY(0); }

/* روابط القائمة بيضاء في الأعلى فوق الهيرو (سطح المكتب فقط — على الجوال القائمة داخل لوحة بيضاء) */
@media(min-width:961px){
  body.has-hero .roya-header:not(.is-scrolled) .roya-nav__menu a{ color:#fff; }
  body.has-hero .roya-header:not(.is-scrolled) .roya-nav__menu a:hover{ color:#fff; background:rgba(255,255,255,.16); }
}

.roya-header__actions{ display:flex; align-items:center; gap:10px; }
.roya-header__phone{
  display:inline-flex; align-items:center; gap:7px; text-decoration:none;
  color:var(--gold-3); font-weight:800; font-size:.9rem;
}
.roya-header__phone svg{ width:18px; height:18px; }
.roya-header__phone span{ display:none; }
.roya-header__wa{
  display:inline-flex; align-items:center; gap:7px; text-decoration:none;
  background:linear-gradient(135deg,var(--c-org1),var(--c-org3)); color:#fff;
  padding:9px 16px; border-radius:10px; font-weight:800; font-size:.85rem;
  box-shadow:0 6px 18px rgba(255,133,0,.35); transition:all .3s;
}
.roya-header__wa:hover{ transform:translateY(-2px); box-shadow:0 10px 26px rgba(255,133,0,.5); color:#fff; }
.roya-header__wa svg{ width:16px; height:16px; }

.roya-nav__toggle{
  display:none; flex-direction:column; gap:5px; width:44px; height:44px;
  border:1px solid var(--border-l); border-radius:10px; background:#fff; cursor:pointer;
  align-items:center; justify-content:center;
}
.roya-nav__toggle span{ width:22px; height:2px; background:var(--gold-3); border-radius:2px; transition:.3s; }

@media(max-width:960px){
  .roya-nav{
    position:fixed; inset:88px 0 auto 0; background:#fff;
    border-bottom:1px solid var(--border-l); padding:16px; z-index:899;
    transform:translateY(calc(-100% - 96px)); transition:transform .35s var(--ease), visibility 0s .35s; visibility:hidden;
    box-shadow:0 20px 40px rgba(0,119,182,.14);
  }
  .roya-header.nav-open .roya-nav{ transform:translateY(0); visibility:visible; transition:transform .35s var(--ease), visibility 0s 0s; }
  .roya-nav__menu{ flex-direction:column; align-items:stretch; gap:2px; }
  .roya-nav__menu a{ padding:12px 14px; }
  .roya-nav__menu .sub-menu{ position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; border:none; padding-right:14px; }
  .roya-nav__toggle{ display:flex; }
  .roya-header__phone span{ display:none; }
}
@media(max-width:520px){
  .roya-header__wa span{ display:none; }
  .roya-header__wa{ padding:9px 12px; }
}

/* إزاحة المحتوى أسفل الهيدر الثابت في الصفحات بدون هيرو */
html{ scroll-padding-top:96px; }
body.no-hero .site-content{ padding-top:88px; }

/* ━━━ SHARED ━━━ */
.rvc { max-width:1240px; margin:0 auto; padding:0 16px; }
@media(min-width:768px){ .rvc{ padding:0 24px; } }

.rvy-badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 18px; border-radius:999px;
  border:1px solid var(--border-2); background:rgba(0,150,199,.08);
  color:var(--gold); font-size:11px; font-weight:700;
  letter-spacing:2px; text-transform:uppercase;
}
.rvy-badge::before{ content:''; width:5px; height:5px; border-radius:50%; background:var(--gold); animation:rvy-pu 2s ease infinite; }
@keyframes rvy-pu{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.3;transform:scale(.6)}}

.rvy-title{ font-size:clamp(1.7rem,5.5vw,2.6rem); font-weight:900; color:var(--on-light); line-height:1.18; margin-bottom:14px; }
.rvy-title .hl { color:var(--gold); }
.rvy-title .hl2{ color:var(--crimson); }
.rvy-sub{ font-size:.97rem; color:var(--on-light-muted); line-height:1.85; max-width:600px; margin:0 auto; }

.gold-line{ width:60px; height:2px; margin:22px auto 0; background:linear-gradient(90deg,transparent,var(--gold),transparent); }

/* ━━━ HERO ━━━ */
.rvy-hero{ position:relative; min-height:auto; display:flex; flex-direction:column; background:linear-gradient(135deg,#026a99 0%,#024c70 50%,#02364f 100%); overflow:hidden; }
.rvy-hero__geo{ position:absolute; inset:0; z-index:0; pointer-events:none;
  background:linear-gradient(135deg,rgba(255,255,255,.06) 0%,transparent 50%),
    repeating-linear-gradient(45deg,rgba(255,255,255,.03) 0px,rgba(255,255,255,.03) 1px,transparent 1px,transparent 60px),
    repeating-linear-gradient(-45deg,rgba(255,158,0,.04) 0px,rgba(255,158,0,.04) 1px,transparent 1px,transparent 80px);
}
.rvy-hero__img-wrap{ position:absolute; top:0; left:0; bottom:auto; width:100%; height:18vh; z-index:1; overflow:hidden; }
.rvy-hero__img-wrap img{ width:100%; height:100%; object-fit:cover; opacity:.42; filter:saturate(1); }
.rvy-hero__img-wrap::after{ content:''; position:absolute; inset:0; background:linear-gradient(to top,#02364f 25%,rgba(2,54,79,.55) 100%); }
.rvy-hero__vline{ display:none; position:absolute; top:10%; bottom:10%; left:52%; width:1px; z-index:2; background:linear-gradient(to bottom,transparent,var(--gold-4),transparent); opacity:.5; }
.rvy-hero__body{ position:relative; z-index:3; flex:1; display:flex; align-items:center; padding:104px 0 1.25rem; }
.rvy-hero__grid{ display:grid; grid-template-columns:1fr; gap:24px; align-items:center; }
.rvy-hero__eyebrow{ margin-bottom:1.5rem; }
.rvy-hero .rvy-badge{ background:rgba(255,255,255,.16); border-color:rgba(255,255,255,.34); color:#fff; }
.rvy-hero .rvy-badge::before{ background:#fff; }
.rvy-hero__title{ font-size:clamp(1.9rem,7.5vw,2.8rem); font-weight:900; color:var(--white); line-height:1.14; margin-bottom:1.2rem; letter-spacing:-.02em; }
.rvy-hero__title .hl{ color:var(--c-org1); }
.rvy-hero__desc{ font-size:.93rem; color:rgba(255,255,255,.9); line-height:1.9; max-width:100%; margin-bottom:2rem; font-weight:300; }
.rvy-hero__pills{ display:flex; flex-wrap:wrap; gap:.5rem; margin-bottom:2.2rem; }
.rvy-pill{ display:inline-flex; align-items:center; gap:.35rem; padding:.3rem .9rem; border-radius:999px; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.26); color:rgba(255,255,255,.92); font-size:.75rem; font-weight:600; }
.rvy-pill::before{ content:''; width:5px; height:5px; border-radius:50%; background:var(--c-org1); flex-shrink:0; }
.rvy-hero__ctas{ display:flex; gap:12px; flex-wrap:wrap; flex-direction:column; }
.rvy-btn-gold{ display:inline-flex; align-items:center; justify-content:center; gap:.65rem; padding:14px 28px; border-radius:10px; background:linear-gradient(135deg,var(--c-org1) 0%,var(--c-org3) 100%); color:#fff; text-decoration:none; font-weight:800; font-size:.92rem; font-family:'Cairo',sans-serif; transition:all .3s var(--ease); box-shadow:0 6px 24px rgba(255,133,0,.4); min-height:48px; }
.rvy-btn-gold:hover{ transform:translateY(-2px); box-shadow:0 12px 34px rgba(255,133,0,.55); color:#fff; }
.rvy-btn-gold svg{width:16px;height:16px;fill:currentColor;flex-shrink:0;}
.rvy-btn-outline{ display:inline-flex; align-items:center; justify-content:center; gap:.65rem; padding:13px 28px; border-radius:10px; background:transparent; color:var(--white); border:1.5px solid rgba(255,255,255,.34); text-decoration:none; font-weight:700; font-size:.92rem; font-family:'Cairo',sans-serif; transition:all .3s; min-height:48px; }
.rvy-btn-outline:hover{ background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.55); transform:translateY(-2px); color:var(--white); }
.rvy-btn-outline svg{width:16px;height:16px;stroke:currentColor;fill:none;flex-shrink:0;}

.rvy-form-card{ background:rgba(255,255,255,.1); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border:1px solid rgba(255,255,255,.28); border-radius:20px; padding:1.4rem; position:relative; overflow:hidden; }
.rvy-form-card::before{ content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg,transparent,var(--c-org1),transparent); }
.rvy-form-hd{ text-align:center; margin-bottom:1.4rem; font-size:1.05rem; font-weight:800; color:var(--white); display:flex; align-items:center; justify-content:center; gap:.4rem; }
.rvy-form-hd .dot{ width:8px; height:8px; border-radius:50%; background:var(--c-org1); box-shadow:0 0 8px rgba(255,158,0,.6); }
.rvy-finput{ width:100%; padding:.8rem 1rem; border-radius:10px; border:1px solid rgba(255,255,255,.22); background:rgba(255,255,255,.12); color:var(--white); font-family:'Cairo',sans-serif; font-size:16px; outline:none; transition:all .3s; margin-bottom:.7rem; min-height:48px; }
.rvy-finput::placeholder{color:rgba(255,255,255,.6);}
.rvy-finput:focus{border-color:var(--c-org1); background:rgba(255,255,255,.18);}
select.rvy-finput option{background:#0a4f6e; color:#fff;}
.rvy-fsubmit{ width:100%; padding:.9rem; border:none; border-radius:10px; background:linear-gradient(135deg,var(--c-org1) 0%,var(--c-org3) 100%); color:#fff; font-family:'Cairo',sans-serif; font-weight:900; font-size:.95rem; cursor:pointer; transition:all .3s; display:flex; align-items:center; justify-content:center; gap:.5rem; box-shadow:0 4px 18px rgba(255,133,0,.4); min-height:48px; }
.rvy-fsubmit svg{width:16px;height:16px;fill:currentColor;}
.rvy-fsubmit:hover{transform:translateY(-1px);box-shadow:0 8px 26px rgba(255,133,0,.55);}
.rvy-fprivacy{ text-align:center; font-size:.7rem; color:rgba(255,255,255,.6); margin-top:.6rem; }
.rvy-fsuccess{ display:none; margin-top:.6rem; padding:.75rem; background:rgba(255,158,0,.2); border:1px solid rgba(255,158,0,.4); border-radius:10px; text-align:center; font-size:.87rem; font-weight:700; color:#fff; }

.rvy-hero__stats{ position:relative; z-index:3; border-top:1px solid rgba(255,255,255,.16); padding:1.4rem 0; }
.rvy-hfeat-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.rvy-hfeat{ display:flex; align-items:center; gap:13px; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2); border-radius:16px; padding:14px 16px; position:relative; overflow:hidden; backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px); transition:all .3s var(--ease); }
.rvy-hfeat::before{ content:''; position:absolute; top:0; bottom:0; right:0; width:4px; background:var(--sc); }
.rvy-hfeat:hover{ transform:translateY(-4px); background:rgba(255,255,255,.16); border-color:color-mix(in srgb, var(--sc) 50%, transparent); }
.rvy-hfeat-ic{ width:48px; height:48px; border-radius:13px; flex-shrink:0; display:flex; align-items:center; justify-content:center; color:#fff; background:var(--sc); box-shadow:0 8px 18px color-mix(in srgb, var(--sc) 45%, transparent); transition:transform .3s var(--ease); }
.rvy-hfeat:hover .rvy-hfeat-ic{ transform:rotate(-8deg) scale(1.08); }
.rvy-hfeat-ic svg{ width:25px; height:25px; }
.rvy-hfeat-tx{ display:flex; flex-direction:column; line-height:1.1; }
.rvy-hfeat-tx b{ font-size:1.45rem; font-weight:900; color:#fff; }
.rvy-hfeat-tx small{ font-size:.74rem; font-weight:700; color:rgba(255,255,255,.78); margin-top:3px; }

@keyframes rvy-fi{from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:translateY(0)}}
.rvy-hero__eyebrow{animation:rvy-fi .8s ease both;}
.rvy-hero__title{animation:rvy-fi .8s .12s ease both;}
.rvy-hero__desc{animation:rvy-fi .8s .24s ease both;}
.rvy-hero__pills{animation:rvy-fi .8s .36s ease both;}
.rvy-hero__ctas{animation:rvy-fi .8s .45s ease both;}
.rvy-form-card{animation:rvy-fi .8s .5s ease both;}

@media(min-width:600px){
  .rvy-hero__ctas{ flex-direction:row; }
}
@media(min-width:960px){
  .rvy-hero{ min-height:auto; }
  .rvy-hero__img-wrap{ width:52%; height:100%; opacity:.55; }
  .rvy-hero__img-wrap::after{ background:linear-gradient(90deg,transparent 40%,#02364f 100%),linear-gradient(to top,#02364f 0%,transparent 30%); }
  .rvy-hero__vline{ display:block; }
  .rvy-hero__body{ padding:7rem 0 2.5rem; }
  .rvy-hero__grid{ grid-template-columns:1.15fr .85fr; gap:5rem; }
  .rvy-hero__title{ font-size:clamp(2.2rem,4.5vw,4rem); }
  .rvy-hero__desc{ font-size:1rem; max-width:46ch; }
  .rvy-hfeat-row{ grid-template-columns:repeat(4,1fr); }
  .rvy-form-card{ padding:2rem; }
}

/* ━━━ ABOUT ━━━ */
.rvy-about{ background:var(--light); padding:70px 0; }
.rvy-about__grid{ display:grid; grid-template-columns:1fr; gap:40px; align-items:center; }
.rvy-about__img-wrap{ position:relative; }
.rvy-about__img{ width:100%; border-radius:22px; display:block; box-shadow:0 24px 60px rgba(0,119,182,.18); }
.rvy-about__corner{ position:absolute; top:-14px; right:-14px; width:60px; height:60px; background:#fff; border-radius:16px; display:flex; align-items:center; justify-content:center; box-shadow:0 12px 30px rgba(0,119,182,.16); }
.rvy-about__corner svg{ width:30px; height:30px; }
.rvy-about__badge{ position:absolute; bottom:-16px; left:-6px; background:linear-gradient(135deg,var(--c-org1),var(--c-org3)); color:#fff; border-radius:16px; padding:14px 20px; display:flex; flex-direction:column; align-items:center; box-shadow:0 14px 34px rgba(255,133,0,.4); }
.rvy-about__badge-num{ font-size:1.5rem; font-weight:900; line-height:1; }
.rvy-about__badge-lbl{ font-size:.72rem; font-weight:700; margin-top:3px; }
.rvy-about__eyebrow{ margin-bottom:16px; }
.rvy-about__title{ font-size:clamp(1.5rem,4.5vw,2.2rem); font-weight:900; color:var(--on-light); line-height:1.25; margin-bottom:18px; }
.rvy-about__text{ font-size:.95rem; color:var(--on-light-2); line-height:1.9; margin-bottom:14px; }
.rvy-about__reg{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; background:rgba(0,150,199,.07); border:1px solid var(--border); border-radius:12px; padding:12px 16px; font-size:.82rem; color:var(--on-light-2); margin:18px 0; }
.rvy-about__reg svg{ width:20px; height:20px; color:var(--gold); flex-shrink:0; }
.rvy-about__reg strong{ color:var(--gold-3); }
.rvy-about__pillars{ display:grid; grid-template-columns:1fr; gap:16px; margin:22px 0; }
.rvy-about__pillar{ display:flex; gap:12px; align-items:flex-start; }
.rvy-about__pillar-icon{ width:44px; height:44px; border-radius:12px; background:rgba(255,133,0,.12); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.rvy-about__pillar-icon svg{ width:22px; height:22px; }
.rvy-about__pillar-title{ font-size:.95rem; font-weight:800; color:var(--on-light); }
.rvy-about__pillar-sub{ font-size:.8rem; color:var(--on-light-muted); line-height:1.6; margin-top:2px; }
.rvy-about__ctas{ margin-top:8px; }
@media(min-width:768px){ .rvy-about__pillars{ grid-template-columns:1fr 1fr; } }
@media(min-width:960px){ .rvy-about{ padding:100px 0; } .rvy-about__grid{ grid-template-columns:.9fr 1.1fr; gap:60px; } }

/* ━━━ SERVICES ━━━ */
.rvy-services{ background:var(--ink); padding:70px 0; }
.rvy-services__header{ text-align:center; max-width:680px; margin:0 auto 44px; }
@media(min-width:960px){ .rvy-services{ padding:100px 0; } }

/* ━━━ GALLERY ━━━ */
.rvy-gallery{ background:var(--light); padding:70px 0; }
.rvy-gallery__header{ text-align:center; max-width:680px; margin:0 auto 44px; }
.rvy-gal-grid{ display:grid; grid-template-columns:1fr 1fr; gap:14px; grid-auto-flow:dense; }
.rvy-gal-item{ position:relative; border-radius:16px; overflow:hidden; aspect-ratio:1/1; box-shadow:0 12px 30px rgba(0,119,182,.12); }
.rvy-gal-item img{ width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.rvy-gal-item:hover img{ transform:scale(1.08); }
.rvy-gal-item::after{ content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(0,60,90,.75) 0%,transparent 50%); }
.rvy-gal-cap{ position:absolute; bottom:12px; right:14px; left:14px; z-index:2; color:#fff; font-weight:800; font-size:.9rem; }
.rvy-gal-item.g-big{ grid-column:span 2; aspect-ratio:2/1.3; }
.rvy-gal-item.g-wide{ grid-column:span 2; aspect-ratio:2/1; }
@media(min-width:768px){
  .rvy-gal-grid{ grid-template-columns:repeat(4,1fr); }
  .rvy-gal-item.g-big{ grid-column:span 2; grid-row:span 2; aspect-ratio:1/1; }
  .rvy-gal-item.g-wide{ grid-column:span 2; aspect-ratio:2/1; }
}
@media(min-width:960px){ .rvy-gallery{ padding:100px 0; } }

/* ━━━ VILLAS ━━━ */
.rvy-villas{ background:var(--ink); padding:70px 0; }
.rvy-villas__container{ max-width:1240px; margin:0 auto; padding:0 16px; }
.rvy-villas__header{ text-align:center; max-width:680px; margin:0 auto 44px; }
.rvy-vshow{ display:grid; grid-template-columns:1fr; gap:20px; }
.rvy-vshow-nav{ display:flex; flex-direction:column; gap:10px; }
.rvy-vshow-tab{ display:flex; align-items:center; gap:14px; width:100%; text-align:right; background:#fff; border:1px solid var(--border-l); border-radius:16px; padding:16px 18px; cursor:pointer; font-family:'Cairo',sans-serif; transition:all .3s var(--ease); position:relative; overflow:hidden; }
.rvy-vshow-tab::before{ content:''; position:absolute; top:0; bottom:0; right:0; width:4px; background:var(--ac); transform:scaleY(0); transition:transform .3s var(--ease); }
.rvy-vshow-tab.is-active{ border-color:color-mix(in srgb, var(--ac) 45%, transparent); box-shadow:0 14px 34px rgba(0,119,182,.12); }
.rvy-vshow-tab.is-active::before{ transform:scaleY(1); }
.rvy-vshow-tab-ic{ width:48px; height:48px; border-radius:13px; background:color-mix(in srgb, var(--ac) 12%, transparent); color:var(--ac); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:all .3s; }
.rvy-vshow-tab.is-active .rvy-vshow-tab-ic{ background:var(--ac); color:#fff; }
.rvy-vshow-tab-ic svg{ width:24px; height:24px; }
.rvy-vshow-tab-tx{ flex:1; display:flex; flex-direction:column; }
.rvy-vshow-tab-tx b{ font-size:1rem; font-weight:800; color:var(--on-light); }
.rvy-vshow-tab-tx small{ font-size:.78rem; color:var(--on-light-muted); margin-top:2px; }
.rvy-vshow-tab-ar{ color:var(--ac); opacity:0; transform:translateX(6px); transition:all .3s; }
.rvy-vshow-tab.is-active .rvy-vshow-tab-ar{ opacity:1; transform:translateX(0); }
.rvy-vshow-tab-ar svg{ width:18px; height:18px; }
.rvy-vshow-stage{ position:relative; }
.rvy-vshow-panel{ background:#fff; border:1px solid var(--border-l); border-radius:20px; overflow:hidden; box-shadow:0 20px 50px rgba(0,119,182,.12); }
.rvy-vshow-panel[hidden]{ display:none; }
.rvy-vshow-panel.is-active{ animation:rvy-fi .5s var(--ease) both; }
.rvy-vshow-media{ position:relative; aspect-ratio:16/10; overflow:hidden; }
.rvy-vshow-media img{ width:100%; height:100%; object-fit:cover; }
.rvy-vshow-tagimg{ position:absolute; top:14px; right:14px; background:var(--ac); color:#fff; padding:6px 16px; border-radius:999px; font-size:.78rem; font-weight:800; box-shadow:0 8px 20px color-mix(in srgb, var(--ac) 40%, transparent); }
.rvy-vshow-body{ padding:24px; }
.rvy-vshow-body h3{ font-size:1.35rem; font-weight:900; color:var(--on-light); margin-bottom:10px; }
.rvy-vshow-body p{ font-size:.92rem; color:var(--on-light-2); line-height:1.85; margin-bottom:16px; }
.rvy-vshow-feats{ list-style:none; margin:0 0 18px; padding:0; display:flex; flex-direction:column; gap:10px; }
.rvy-vshow-feats li{ position:relative; padding-right:26px; font-size:.88rem; color:var(--on-light-2); }
.rvy-vshow-feats li::before{ content:''; position:absolute; right:0; top:7px; width:14px; height:8px; border-right:2px solid var(--ac); border-bottom:2px solid var(--ac); transform:rotate(-45deg) scaleX(-1); }
.rvy-vshow-cta{ display:inline-flex; align-items:center; gap:8px; color:var(--ac); font-weight:800; font-size:.9rem; text-decoration:none; transition:gap .3s; }
.rvy-vshow-cta:hover{ gap:14px; }
.rvy-vshow-cta svg{ width:18px; height:18px; }
@media(min-width:960px){
  .rvy-villas{ padding:100px 0; }
  .rvy-vshow{ grid-template-columns:.85fr 1.15fr; gap:30px; align-items:start; }
  .rvy-vshow-body{ padding:32px; }
}

/* ━━━ WHY US ━━━ */
.rvy-why{ background:var(--light); padding:70px 0; }
.rvy-why2{ display:grid; grid-template-columns:1fr; gap:36px; }
.rvy-why2-feat .rvy-badge{ margin-bottom:18px; }
.rvy-why2-h{ font-size:clamp(1.7rem,5.5vw,2.6rem); font-weight:900; color:var(--on-light); line-height:1.2; margin-bottom:14px; }
.rvy-why2-h span{ color:var(--gold); }
.rvy-why2-p{ font-size:.95rem; color:var(--on-light-muted); line-height:1.85; margin-bottom:24px; }
.rvy-why2-badge{ display:inline-flex; align-items:center; gap:14px; background:linear-gradient(135deg,var(--c-org1),var(--c-org3)); color:#fff; border-radius:18px; padding:16px 24px; box-shadow:0 14px 34px rgba(255,133,0,.35); }
.rvy-why2-badge-n{ font-size:2.4rem; font-weight:900; line-height:1; }
.rvy-why2-badge-l{ font-size:.82rem; font-weight:700; line-height:1.4; }
.rvy-why2-list{ display:flex; flex-direction:column; gap:14px; }
.rvy-why2-item{ position:relative; display:flex; align-items:flex-start; gap:16px; background:#fff; border:1px solid var(--border-l); border-radius:16px; padding:20px; overflow:hidden; transition:all .3s var(--ease); }
.rvy-why2-item::before{ content:''; position:absolute; top:0; bottom:0; right:0; width:4px; background:var(--ac); transform:scaleY(0); transform-origin:top; transition:transform .3s var(--ease); }
.rvy-why2-item:hover{ transform:translateX(-6px); box-shadow:0 16px 40px rgba(0,119,182,.12); }
.rvy-why2-item:hover::before{ transform:scaleY(1); }
.rvy-why2-n{ font-size:1.3rem; font-weight:900; color:color-mix(in srgb, var(--ac) 30%, transparent); flex-shrink:0; }
.rvy-why2-ic{ width:50px; height:50px; border-radius:14px; background:color-mix(in srgb, var(--ac) 12%, transparent); color:var(--ac); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:all .3s; }
.rvy-why2-item:hover .rvy-why2-ic{ background:var(--ac); color:#fff; }
.rvy-why2-ic svg{ width:25px; height:25px; }
.rvy-why2-tx b{ display:block; font-size:1rem; font-weight:800; color:var(--on-light); margin-bottom:4px; }
.rvy-why2-tx small{ font-size:.84rem; color:var(--on-light-muted); line-height:1.7; }
@media(min-width:960px){
  .rvy-why{ padding:100px 0; }
  .rvy-why2{ grid-template-columns:.9fr 1.1fr; gap:50px; align-items:center; }
}

/* ━━━ PRICING ━━━ */
.rvy-pricing{ background:var(--ink); padding:70px 0; }
.rvy-pricing__header{ text-align:center; max-width:680px; margin:0 auto 44px; }
.rvy-pricing__grid{ display:grid; grid-template-columns:1fr; gap:18px; margin-bottom:36px; }
.rvy-price-card{ background:#fff; border:1px solid var(--border-l); border-radius:18px; padding:28px 24px; text-align:center; transition:all .3s var(--ease); }
.rvy-price-card:hover{ transform:translateY(-5px); box-shadow:0 20px 44px rgba(0,119,182,.14); border-color:var(--border-2); }
.rvy-price-icon{ font-size:2.4rem; display:block; margin-bottom:14px; }
.rvy-price-title{ font-size:1.15rem; font-weight:800; color:var(--on-light); margin-bottom:10px; }
.rvy-price-desc{ font-size:.88rem; color:var(--on-light-muted); line-height:1.8; }
.rvy-pricing__note{ background:linear-gradient(135deg,#0096c7,#0077b6); border-radius:22px; padding:34px 28px; text-align:center; box-shadow:0 24px 60px rgba(0,119,182,.25); }
.rvy-pricing__note p{ color:rgba(255,255,255,.95); font-size:1rem; line-height:1.9; max-width:640px; margin:0 auto 22px; }
@media(min-width:768px){ .rvy-pricing__grid{ grid-template-columns:repeat(3,1fr); } }
@media(min-width:960px){ .rvy-pricing{ padding:100px 0; } }

/* ━━━ AREAS / MAP ━━━ */
.rvy-areas{ background:var(--light); padding:70px 0; }
.rvy-areas__header{ text-align:center; max-width:680px; margin:0 auto 44px; }
.rvy-rmap2{ max-width:760px; margin:0 auto; }
.rvy-rmap2 svg{ width:100%; height:auto; display:block; }
.rvy-rmap2-reg .rm2-halo{ fill:var(--rc); opacity:.18; transform-origin:center; animation:rm2pulse 3s ease-in-out infinite; }
.rvy-rmap2-reg .rm2-pin{ fill:var(--rc); stroke:#fff; stroke-width:3; }
.rvy-rmap2-reg .rm2-star{ fill:#fff; }
.rvy-rmap2-reg .rm2-lbl rect{ fill:#fff; stroke:var(--rc); stroke-width:2; }
.rvy-rmap2-reg .rm2-lbl text{ fill:var(--on-light); font-size:15px; font-weight:800; font-family:'Cairo',sans-serif; text-anchor:middle; }
.rvy-rmap2-reg--hq .rm2-halo{ animation-duration:2s; }
@keyframes rm2pulse{0%,100%{transform:scale(1);opacity:.18}50%{transform:scale(1.25);opacity:.05}}
.rvy-rmap2-cap{ display:flex; align-items:center; justify-content:center; gap:10px; margin-top:20px; font-size:.9rem; font-weight:700; color:var(--on-light-2); }
.rvy-rmap-dot{ width:9px; height:9px; border-radius:50%; background:var(--c-org1); box-shadow:0 0 0 4px rgba(255,158,0,.2); }
.rvy-area2-banner{ display:grid; grid-template-columns:repeat(2,1fr); gap:0; background:#fff; border:1px solid var(--border-l); border-radius:20px; overflow:hidden; margin-top:36px; box-shadow:0 16px 40px rgba(0,119,182,.1); }
.rvy-area2-stat{ padding:24px 16px; text-align:center; }
.rvy-area2-stat b{ display:block; font-size:1.9rem; font-weight:900; color:var(--gold); line-height:1; }
.rvy-area2-stat small{ font-size:.8rem; font-weight:700; color:var(--on-light-muted); margin-top:6px; display:block; }
.rvy-area2-divider{ display:none; }
@media(min-width:768px){
  .rvy-area2-banner{ grid-template-columns:1fr auto 1fr auto 1fr auto 1fr; }
  .rvy-area2-divider{ display:block; width:1px; background:var(--border-l); }
}
@media(min-width:960px){ .rvy-areas{ padding:100px 0; } }

/* ━━━ PROCESS ━━━ */
.rvy-process{ background:var(--ink); padding:70px 0; }
.rvy-process__header{ text-align:center; max-width:680px; margin:0 auto 44px; }
.rvy-process__grid{ display:grid; grid-template-columns:1fr; gap:18px; }
.rvy-proc-card{ position:relative; background:#fff; border:1px solid var(--border-l); border-radius:18px; padding:28px 24px; text-align:center; transition:all .3s var(--ease); }
.rvy-proc-card:hover{ transform:translateY(-5px); box-shadow:0 20px 44px rgba(0,119,182,.14); }
.rvy-proc-num{ font-size:2.2rem; margin-bottom:10px; }
.rvy-proc-step{ display:inline-block; font-size:.72rem; font-weight:800; color:var(--gold); letter-spacing:1px; text-transform:uppercase; margin-bottom:8px; }
.rvy-proc-title{ font-size:1.15rem; font-weight:800; color:var(--on-light); margin-bottom:8px; }
.rvy-proc-desc{ font-size:.85rem; color:var(--on-light-muted); line-height:1.8; }
@media(min-width:768px){ .rvy-process__grid{ grid-template-columns:repeat(4,1fr); } }
@media(min-width:960px){ .rvy-process{ padding:100px 0; } }

/* ━━━ FAQ ━━━ */
.rvy-faq{ background:var(--light); padding:70px 0; }
.rvy-faq__container{ max-width:820px; margin:0 auto; padding:0 16px; }
.rvy-faq__header{ text-align:center; margin-bottom:44px; }
.rvy-faq-list{ display:flex; flex-direction:column; gap:14px; }
.rvy-faq-item{ background:#fff; border:1px solid var(--border-l); border-radius:16px; overflow:hidden; transition:all .3s var(--ease); }
.rvy-faq-item.open{ border-color:var(--border-2); box-shadow:0 14px 34px rgba(0,119,182,.1); }
.rvy-faq-q{ display:flex; align-items:center; justify-content:space-between; gap:16px; padding:20px 22px; cursor:pointer; }
.rvy-faq-q-text{ font-size:1rem; font-weight:800; color:var(--on-light); }
.rvy-faq-ico{ position:relative; width:22px; height:22px; flex-shrink:0; }
.rvy-faq-ico::before,.rvy-faq-ico::after{ content:''; position:absolute; background:var(--gold); border-radius:2px; transition:transform .3s var(--ease); }
.rvy-faq-ico::before{ top:10px; left:0; width:22px; height:2px; }
.rvy-faq-ico::after{ top:0; left:10px; width:2px; height:22px; }
.rvy-faq-item.open .rvy-faq-ico::after{ transform:rotate(90deg); opacity:0; }
.rvy-faq-a{ max-height:0; overflow:hidden; transition:max-height .35s var(--ease); }
.rvy-faq-item.open .rvy-faq-a{ max-height:400px; }
.rvy-faq-a-inner{ padding:0 22px 20px; font-size:.9rem; color:var(--on-light-2); line-height:1.9; }
@media(min-width:960px){ .rvy-faq{ padding:100px 0; } }

/* ━━━ CONTACT ━━━ */
.rvy-contact{ background:linear-gradient(135deg,#0096c7 0%,#0077b6 100%); padding:70px 0; position:relative; overflow:hidden; }
.rvy-contact::before{ content:''; position:absolute; inset:0; background:repeating-linear-gradient(45deg,rgba(255,255,255,.03) 0px,rgba(255,255,255,.03) 1px,transparent 1px,transparent 60px); pointer-events:none; }
.rvy-contact__container{ max-width:1000px; margin:0 auto; padding:0 16px; position:relative; z-index:2; }
.rvy-contact__header{ text-align:center; margin-bottom:36px; }
.rvy-contact__header .rvy-badge{ background:rgba(255,255,255,.16); border-color:rgba(255,255,255,.34); color:#fff; }
.rvy-contact__header .rvy-badge::before{ background:#fff; }
.rvy-contact__header .rvy-title{ color:#fff; }
.rvy-contact__header .rvy-title .hl{ color:var(--c-org1); }
.rvy-contact__header .rvy-sub{ color:rgba(255,255,255,.85); }
.rvy-contact__header .gold-line{ background:linear-gradient(90deg,transparent,var(--c-org1),transparent); }
.rvy-contact__info-row{ display:flex; flex-wrap:wrap; justify-content:center; gap:16px; margin-bottom:24px; }
.rvy-contact__info-item{ display:flex; align-items:center; gap:12px; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2); border-radius:14px; padding:14px 22px; color:#fff; font-weight:800; font-size:1rem; }
.rvy-contact__info-icon{ width:42px; height:42px; border-radius:11px; background:rgba(255,255,255,.14); display:flex; align-items:center; justify-content:center; }
.rvy-contact__info-icon svg{ width:22px; height:22px; stroke:#fff; }
.rvy-contact__btns{ display:flex; flex-direction:column; gap:14px; justify-content:center; max-width:560px; margin:0 auto 40px; }
.rvy-contact__btn-wa,.rvy-contact__btn-ph{ display:inline-flex; align-items:center; justify-content:center; gap:10px; padding:16px 28px; border-radius:12px; text-decoration:none; font-weight:800; font-size:1rem; transition:all .3s var(--ease); }
.rvy-contact__btn-wa{ background:#fff; color:var(--gold-3); box-shadow:0 10px 30px rgba(0,0,0,.14); }
.rvy-contact__btn-wa:hover{ transform:translateY(-3px); box-shadow:0 16px 40px rgba(0,0,0,.2); color:var(--gold-3); }
.rvy-contact__btn-wa svg{ width:22px; height:22px; fill:#25D366; }
.rvy-contact__btn-ph{ background:linear-gradient(135deg,var(--c-org1),var(--c-org3)); color:#fff; box-shadow:0 10px 30px rgba(255,133,0,.4); }
.rvy-contact__btn-ph:hover{ transform:translateY(-3px); box-shadow:0 16px 40px rgba(255,133,0,.55); color:#fff; }
.rvy-contact__btn-ph svg{ width:20px; height:20px; }
.rvy-contact__company{ display:grid; grid-template-columns:1fr; gap:24px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16); border-radius:20px; padding:28px; backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px); }
.rvy-co-group-title{ font-size:.95rem; font-weight:900; color:var(--c-org1); margin-bottom:14px; padding-bottom:10px; border-bottom:1px solid rgba(255,255,255,.16); }
.rvy-co-row{ display:flex; justify-content:space-between; gap:12px; padding:7px 0; font-size:.86rem; }
.rvy-co-label{ color:rgba(255,255,255,.65); flex-shrink:0; }
.rvy-co-val{ color:#fff; font-weight:700; text-align:left; word-break:break-word; }
@media(min-width:600px){ .rvy-contact__btns{ flex-direction:row; } }
@media(min-width:900px){ .rvy-contact__company{ grid-template-columns:repeat(3,1fr); gap:30px; } }
@media(min-width:960px){ .rvy-contact{ padding:100px 0; } }

/* ━━━ FOOTER ━━━ */
.roya-footer{ background:#062f43; color:rgba(255,255,255,.8); padding:56px 0 0; }
.roya-footer__grid{ display:grid; grid-template-columns:1fr; gap:32px; padding-bottom:36px; }
.roya-footer__logo{ font-size:1.5rem; font-weight:900; color:#fff; margin-bottom:14px; }
.roya-footer__logo span{ color:var(--c-org1); }
.roya-footer__about{ font-size:.88rem; line-height:1.85; color:rgba(255,255,255,.68); margin-bottom:16px; }
.roya-footer__contact{ display:flex; flex-direction:column; gap:6px; }
.roya-footer__contact a{ color:var(--c-org1); text-decoration:none; font-weight:700; font-size:.9rem; }
.roya-footer__title{ font-size:1.05rem; font-weight:800; color:#fff; margin-bottom:16px; }
.roya-footer__menu{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
.roya-footer__menu a{ color:rgba(255,255,255,.72); text-decoration:none; font-size:.9rem; transition:color .25s, padding .25s; }
.roya-footer__menu a:hover{ color:var(--c-org1); padding-right:6px; }
.roya-footer__info{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
.roya-footer__info li{ font-size:.86rem; color:rgba(255,255,255,.72); }
.roya-footer__info span{ color:rgba(255,255,255,.5); }
.roya-footer__bottom{ border-top:1px solid rgba(255,255,255,.1); padding:20px 0; text-align:center; }
.roya-footer__bottom p{ font-size:.84rem; color:rgba(255,255,255,.6); }
@media(min-width:768px){ .roya-footer__grid{ grid-template-columns:2fr 1fr 1.4fr; gap:40px; } }

/* ━━━ BLOG / PAGE / SINGLE ━━━ */
.roya-blog__list{ display:grid; grid-template-columns:1fr; gap:24px; margin-top:30px; }
.roya-post-card{ background:#fff; border:1px solid var(--border-l); border-radius:18px; overflow:hidden; transition:all .3s var(--ease); }
.roya-post-card:hover{ transform:translateY(-4px); box-shadow:0 20px 44px rgba(0,119,182,.14); }
.roya-post-card__thumb img{ width:100%; height:210px; object-fit:cover; }
.roya-post-card__body{ padding:22px; }
.roya-post-card__title{ font-size:1.2rem; font-weight:800; margin-bottom:8px; }
.roya-post-card__title a{ color:var(--on-light); text-decoration:none; }
.roya-post-card__title a:hover{ color:var(--gold); }
.roya-post-card__meta{ font-size:.8rem; color:var(--on-light-muted); margin-bottom:10px; }
.roya-post-card__excerpt{ font-size:.9rem; color:var(--on-light-2); line-height:1.8; margin-bottom:12px; }
.rvy-svc-link{ display:inline-flex; align-items:center; gap:6px; color:var(--gold); font-weight:800; text-decoration:none; font-size:.9rem; }
.rvy-svc-link svg{ width:16px; height:16px; }
.roya-pagination{ margin-top:36px; text-align:center; }
.roya-pagination .page-numbers{ display:inline-block; padding:8px 14px; margin:0 3px; border-radius:9px; background:#fff; border:1px solid var(--border-l); color:var(--on-light); text-decoration:none; font-weight:700; }
.roya-pagination .page-numbers.current{ background:var(--gold); color:#fff; border-color:var(--gold); }
.roya-page__content,.roya-single__content{ font-size:1rem; color:var(--on-light-2); line-height:1.9; max-width:760px; }
.roya-page__content h2,.roya-single__content h2{ color:var(--on-light); margin:24px 0 12px; font-weight:800; }
.roya-page__content a,.roya-single__content a{ color:var(--gold); }
.roya-single__thumb img{ width:100%; border-radius:18px; margin:20px 0; }
.roya-single__meta{ color:var(--on-light-muted); font-size:.85rem; margin-top:8px; }
@media(min-width:768px){ .roya-blog__list{ grid-template-columns:1fr 1fr; } }

/* ━━━ REDUCED MOTION ━━━ */
@media(prefers-reduced-motion:reduce){
  *{ animation:none !important; transition:none !important; }
}

/* ━━━ RICH ARTICLE CONTENT (entry-content) ━━━ */
.roya-article{ max-width:860px; margin:0 auto; padding:54px 16px 64px; }
.entry-content{ font-size:1.02rem; color:var(--on-light-2); line-height:1.95; }
.entry-content > p{ margin:0 0 18px; }
.entry-content > p:first-of-type{ font-size:1.1rem; color:var(--on-light); font-weight:500; }
.entry-content h2{ font-size:clamp(1.35rem,3.6vw,1.9rem); font-weight:900; color:var(--on-light); line-height:1.35; margin:40px 0 16px; padding-right:18px; position:relative; }
.entry-content h2::before{ content:''; position:absolute; right:0; top:6px; bottom:6px; width:5px; border-radius:4px; background:linear-gradient(180deg,var(--c-org1),var(--c-org3)); }
.entry-content h3{ font-size:clamp(1.1rem,3vw,1.35rem); font-weight:800; color:var(--gold-3); margin:28px 0 12px; display:flex; align-items:center; gap:10px; }
.entry-content h3::before{ content:''; width:10px; height:10px; border-radius:50%; background:var(--c-org1); flex-shrink:0; box-shadow:0 0 0 4px rgba(255,158,0,.16); }
.entry-content h4{ font-size:1.05rem; font-weight:800; color:var(--on-light); margin:20px 0 10px; }
.entry-content ul,.entry-content ol{ margin:0 0 18px; padding:0; list-style:none; }
.entry-content ul > li{ position:relative; padding:0 30px 0 0; margin:0 0 12px; }
.entry-content ul > li::before{ content:''; position:absolute; right:4px; top:9px; width:13px; height:8px; border-right:2.5px solid var(--gold); border-bottom:2.5px solid var(--gold); transform:rotate(-45deg) scaleX(-1); }
.entry-content ol{ counter-reset:ol; }
.entry-content ol > li{ position:relative; padding:0 42px 0 0; margin:0 0 14px; counter-increment:ol; }
.entry-content ol > li::before{ content:counter(ol); position:absolute; right:0; top:0; width:28px; height:28px; border-radius:8px; background:linear-gradient(135deg,var(--c-org1),var(--c-org3)); color:#fff; font-weight:800; font-size:.85rem; display:flex; align-items:center; justify-content:center; }
.entry-content ul ul{ margin:12px 0 6px; background:var(--light-2); border:1px solid var(--border-l); border-radius:14px; padding:16px 18px 16px 16px; }
.entry-content ul ul > li{ margin:0 0 8px; font-size:.94rem; }
.entry-content ul ul > li:last-child{ margin-bottom:0; }
.entry-content ul ul > li::before{ border-color:var(--c-org3); width:10px; height:7px; }
.entry-content strong{ color:var(--gold-3); font-weight:800; }
.entry-content a{ color:var(--gold); font-weight:700; text-decoration:underline; text-underline-offset:3px; text-decoration-thickness:1px; }
.entry-content a:hover{ color:var(--gold-3); }
.entry-content hr{ border:none; height:1px; background:linear-gradient(90deg,transparent,var(--border-2),transparent); margin:38px 0; }
.entry-content img{ border-radius:16px; margin:20px 0; box-shadow:0 16px 40px rgba(0,119,182,.14); }
.entry-content blockquote{ border-right:4px solid var(--gold); background:var(--light-2); border-radius:12px; padding:16px 20px; margin:20px 0; color:var(--on-light-2); }

.roya-article__figure{ margin:0 0 30px; border-radius:18px; overflow:hidden; box-shadow:0 20px 50px rgba(0,119,182,.16); }
.roya-article__figure img{ width:100%; display:block; border-radius:0; margin:0; box-shadow:none; }

/* article tags */
.roya-article__tags{ display:flex; flex-wrap:wrap; gap:8px; margin-top:34px; padding-top:24px; border-top:1px solid var(--border-l); }
.roya-article__tags a{ font-size:.8rem; font-weight:700; color:var(--gold-3); background:rgba(0,150,199,.08); border:1px solid var(--border); border-radius:999px; padding:6px 14px; text-decoration:none; }
.roya-article__tags a:hover{ background:var(--gold); color:#fff; border-color:var(--gold); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICE PAGE TOP (distinctive hero stack)
   ترويسة → صورة → عناصر سكيما → وصف
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* 1) الترويسة المميزة */
.roya-shero{ position:relative; background:linear-gradient(135deg,#00a6d6 0%,#0088c4 45%,#025f92 100%); overflow:hidden; padding:128px 0 128px; }
.roya-shero__deco{ position:absolute; inset:0; z-index:0; pointer-events:none; }
.roya-shero__deco::before,.roya-shero__deco::after{ content:''; position:absolute; border-radius:50%; }
.roya-shero__deco::before{ width:420px; height:420px; top:-160px; left:-120px; background:radial-gradient(circle,rgba(255,158,0,.28),transparent 70%); }
.roya-shero__deco::after{ width:360px; height:360px; bottom:-140px; right:-100px; background:radial-gradient(circle,rgba(255,255,255,.14),transparent 70%); }
.roya-shero__grid{ position:absolute; inset:0; z-index:0; opacity:.5;
  background:repeating-linear-gradient(45deg,rgba(255,255,255,.04) 0,rgba(255,255,255,.04) 1px,transparent 1px,transparent 58px),
             repeating-linear-gradient(-45deg,rgba(255,158,0,.05) 0,rgba(255,158,0,.05) 1px,transparent 1px,transparent 78px); }
.roya-shero__inner{ position:relative; z-index:2; text-align:center; max-width:920px; margin:0 auto; padding:0 16px; }
.roya-shero .rvy-badge{ background:rgba(255,255,255,.18); border-color:rgba(255,255,255,.4); color:#fff; }
.roya-shero .rvy-badge::before{ background:var(--c-org1); }
.roya-shero__title{ font-size:clamp(1.75rem,5.2vw,2.9rem); font-weight:900; color:#fff; line-height:1.28; margin:18px auto 14px; text-shadow:0 4px 24px rgba(0,40,70,.3); }
.roya-shero__title .hl{ color:var(--c-org1); }
.roya-shero__crumb{ display:inline-flex; flex-wrap:wrap; justify-content:center; gap:9px; font-size:.84rem; color:rgba(255,255,255,.85); background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2); padding:8px 18px; border-radius:999px; }
.roya-shero__crumb a{ color:#fff; text-decoration:none; }
.roya-shero__crumb a:hover{ color:var(--c-org1); }
.roya-shero__crumb span{ opacity:.55; }

/* 2) الصورة المميزة (عائمة فوق الترويسة) */
.roya-shero-media{ max-width:1040px; margin:-96px auto 0; padding:0 16px; position:relative; z-index:6; }
.roya-shero-media__frame{ position:relative; border-radius:26px; overflow:hidden; border:5px solid #fff; box-shadow:0 34px 80px rgba(0,60,90,.34); aspect-ratio:16/7; background:#dff1f8; }
.roya-shero-media__frame img{ width:100%; height:100%; object-fit:cover; display:block; }
.roya-shero-media__frame::after{ content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(0,50,80,.42),transparent 55%); }
.roya-shero-media__tag{ position:absolute; z-index:2; bottom:18px; right:18px; display:inline-flex; align-items:center; gap:10px; background:rgba(255,255,255,.95); backdrop-filter:blur(6px); border-radius:14px; padding:10px 16px; box-shadow:0 12px 30px rgba(0,0,0,.18); }
.roya-shero-media__tag .stars{ color:var(--c-org1); font-size:1rem; letter-spacing:1px; }
.roya-shero-media__tag b{ color:var(--on-light); font-weight:900; font-size:1.05rem; }
.roya-shero-media__tag small{ color:var(--on-light-muted); font-weight:700; font-size:.75rem; }
.roya-shero-media__pin{ position:absolute; z-index:2; top:18px; right:18px; display:inline-flex; align-items:center; gap:7px; background:linear-gradient(135deg,var(--c-org1),var(--c-org3)); color:#fff; font-weight:800; font-size:.82rem; padding:8px 15px; border-radius:999px; box-shadow:0 10px 24px rgba(255,133,0,.4); }
.roya-shero-media__pin svg{ width:15px; height:15px; }

/* 4) الوصف المميز */
.roya-lead{ max-width:900px; margin:40px auto 0; padding:0 16px; }
.roya-lead__box{ position:relative; background:linear-gradient(135deg,#f4fbfd,#eaf6fb); border:1px solid var(--border); border-right:5px solid var(--gold); border-radius:18px; padding:30px 34px 30px 30px; box-shadow:0 14px 40px rgba(0,119,182,.08); }
.roya-lead__box::before{ content:'“'; position:absolute; top:-6px; left:20px; font-family:'Playfair Display',serif; font-size:5rem; color:rgba(0,150,199,.16); line-height:1; }
.roya-lead__box p{ font-size:1.12rem; line-height:2.05; color:var(--on-light); margin:0; font-weight:500; position:relative; z-index:1; }
.roya-lead__box strong{ color:var(--gold-3); font-weight:800; }
.roya-lead__box p + p{ margin-top:14px; }
@media(min-width:820px){ .roya-lead__box{ padding:34px 40px; } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICE USP (مميزاتنا) — distinctive feature cards
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.roya-usp{ max-width:1160px; margin:46px auto 0; padding:0 16px; }
.roya-usp__head{ text-align:center; margin-bottom:28px; }
.roya-usp__head h2{ font-size:clamp(1.35rem,3.6vw,1.9rem); font-weight:900; color:var(--on-light); margin-bottom:8px; }
.roya-usp__head h2 .hl{ color:var(--gold); }
.roya-usp__head p{ font-size:.92rem; color:var(--on-light-muted); }
.roya-usp__grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(210px,1fr)); gap:18px; }

.roya-usp-card{ position:relative; background:#fff; border:1px solid var(--border-l); border-radius:22px; padding:30px 22px 26px; text-align:center; overflow:hidden; transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
.roya-usp-card::before{ content:''; position:absolute; top:-40px; left:50%; transform:translateX(-50%); width:120px; height:120px; border-radius:50%; background:radial-gradient(circle, color-mix(in srgb, var(--uc,var(--gold)) 20%, transparent), transparent 70%); opacity:0; transition:opacity .35s; }
.roya-usp-card:hover{ transform:translateY(-8px); box-shadow:0 26px 56px rgba(0,119,182,.18); border-color:color-mix(in srgb, var(--uc,var(--gold)) 45%, transparent); }
.roya-usp-card:hover::before{ opacity:1; }
.roya-usp-card__ic{ position:relative; z-index:1; width:70px; height:70px; margin:0 auto 16px; border-radius:20px; display:flex; align-items:center; justify-content:center; color:#fff; background:linear-gradient(135deg, var(--uc,var(--gold)), color-mix(in srgb, var(--uc,var(--gold)) 62%, #000 8%)); box-shadow:0 14px 30px color-mix(in srgb, var(--uc,var(--gold)) 42%, transparent); transition:transform .35s var(--ease); }
.roya-usp-card:hover .roya-usp-card__ic{ transform:rotate(-8deg) scale(1.06); }
.roya-usp-card__ic svg{ width:34px; height:34px; }
.roya-usp-card h4{ position:relative; z-index:1; font-size:1.12rem; font-weight:900; color:var(--on-light); margin-bottom:8px; }
.roya-usp-card p{ position:relative; z-index:1; font-size:.85rem; line-height:1.75; color:var(--on-light-muted); }

/* بطاقة VIP المميّزة */
.roya-usp-card.is-vip{ background:linear-gradient(150deg,#06344c 0%,#0a4f6e 70%,#0b5c81 100%); border-color:transparent; box-shadow:0 20px 46px rgba(6,52,76,.34); }
.roya-usp-card.is-vip::after{ content:''; position:absolute; inset:0; background:repeating-linear-gradient(45deg,rgba(255,210,122,.05) 0,rgba(255,210,122,.05) 1px,transparent 1px,transparent 46px); pointer-events:none; }
.roya-usp-card.is-vip h4{ color:#fff; }
.roya-usp-card.is-vip p{ color:rgba(255,255,255,.78); }
.roya-usp-card.is-vip .roya-usp-card__ic{ background:linear-gradient(135deg,#ffe0a3,#ff9e00); box-shadow:0 14px 32px rgba(255,158,0,.5); color:#06344c; }
.roya-usp-card__ribbon{ position:absolute; z-index:2; top:14px; left:-32px; transform:rotate(-45deg); background:linear-gradient(135deg,#ffd27a,#ff9e00); color:#06344c; font-weight:900; font-size:.7rem; letter-spacing:1px; padding:5px 40px; box-shadow:0 6px 14px rgba(0,0,0,.2); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RELATED SERVICES (خدمات تهمّك)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.roya-rel{ background:var(--light); padding:64px 0; }
.roya-rel__head{ text-align:center; max-width:660px; margin:0 auto 36px; }
.roya-rel__grid{ max-width:1160px; margin:0 auto; padding:0 16px; display:grid; grid-template-columns:1fr; gap:18px; }
.roya-rel-card{ position:relative; background:#fff; border:1px solid var(--border-l); border-radius:20px; padding:26px 24px; text-decoration:none; display:flex; flex-direction:column; overflow:hidden; transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
.roya-rel-card::before{ content:''; position:absolute; top:0; right:0; left:0; height:4px; background:var(--ac,var(--gold)); transform:scaleX(0); transform-origin:right; transition:transform .35s var(--ease); }
.roya-rel-card:hover{ transform:translateY(-6px); box-shadow:0 24px 50px rgba(0,119,182,.16); border-color:color-mix(in srgb, var(--ac,var(--gold)) 40%, transparent); }
.roya-rel-card:hover::before{ transform:scaleX(1); }
.roya-rel-card__ic{ width:58px; height:58px; border-radius:16px; display:flex; align-items:center; justify-content:center; color:#fff; background:linear-gradient(135deg, var(--ac,var(--gold)), color-mix(in srgb, var(--ac,var(--gold)) 62%, #000 6%)); box-shadow:0 12px 26px color-mix(in srgb, var(--ac,var(--gold)) 40%, transparent); margin-bottom:16px; transition:transform .35s var(--ease); }
.roya-rel-card:hover .roya-rel-card__ic{ transform:rotate(-6deg) scale(1.06); }
.roya-rel-card__ic svg{ width:28px; height:28px; }
.roya-rel-card h3{ font-size:1.12rem; font-weight:800; color:var(--on-light); margin-bottom:8px; }
.roya-rel-card p{ font-size:.86rem; line-height:1.75; color:var(--on-light-muted); margin-bottom:16px; flex:1; }
.roya-rel-card__go{ display:inline-flex; align-items:center; gap:7px; color:var(--ac,var(--gold)); font-weight:800; font-size:.88rem; }
.roya-rel-card__go svg{ width:16px; height:16px; transition:transform .3s; }
.roya-rel-card:hover .roya-rel-card__go svg{ transform:translateX(-5px); }
.roya-rel__more{ text-align:center; margin-top:34px; }
.roya-rel__more a{ display:inline-flex; align-items:center; gap:10px; padding:14px 32px; border-radius:12px; background:linear-gradient(135deg,#0096c7,#0077b6); color:#fff; font-weight:800; text-decoration:none; box-shadow:0 12px 30px rgba(0,119,182,.28); transition:transform .3s, box-shadow .3s; }
.roya-rel__more a:hover{ transform:translateY(-3px); box-shadow:0 18px 40px rgba(0,119,182,.4); color:#fff; }
.roya-rel__more a svg{ width:18px; height:18px; }
@media(min-width:640px){ .roya-rel__grid{ grid-template-columns:1fr 1fr; } }
@media(min-width:980px){ .roya-rel__grid{ grid-template-columns:repeat(3,1fr); } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BOOKING FORM (فورم يحوّل للواتساب)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.roya-book{ position:relative; background:linear-gradient(135deg,#0096c7 0%,#0077b6 100%); padding:64px 0; overflow:hidden; }
.roya-book::before{ content:''; position:absolute; inset:0; background:repeating-linear-gradient(45deg,rgba(255,255,255,.03) 0,rgba(255,255,255,.03) 1px,transparent 1px,transparent 58px),radial-gradient(circle at 15% 20%,rgba(255,158,0,.18),transparent 40%); pointer-events:none; }
.roya-book__grid{ position:relative; z-index:2; max-width:1080px; margin:0 auto; padding:0 16px; display:grid; grid-template-columns:1fr; gap:32px; align-items:center; }
.roya-book__intro .rvy-badge{ background:rgba(255,255,255,.16); border-color:rgba(255,255,255,.36); color:#fff; }
.roya-book__intro .rvy-badge::before{ background:var(--c-org1); }
.roya-book__intro h2{ font-size:clamp(1.5rem,4.5vw,2.3rem); font-weight:900; color:#fff; line-height:1.3; margin:16px 0 12px; }
.roya-book__intro h2 .hl{ color:var(--c-org1); }
.roya-book__intro p{ font-size:.98rem; color:rgba(255,255,255,.9); line-height:1.9; margin-bottom:22px; }
.roya-book__points{ list-style:none; margin:0 0 24px; padding:0; display:flex; flex-direction:column; gap:12px; }
.roya-book__points li{ position:relative; padding-right:30px; color:#fff; font-weight:600; font-size:.95rem; }
.roya-book__points li svg{ position:absolute; right:0; top:2px; width:20px; height:20px; color:var(--c-org1); }
.roya-book__phone{ display:inline-flex; align-items:center; gap:10px; color:#fff; font-weight:800; font-size:1.15rem; text-decoration:none; }
.roya-book__phone svg{ width:22px; height:22px; }
.roya-book__phone span{ background:rgba(255,255,255,.14); padding:4px 10px; border-radius:8px; }
.roya-book textarea.rvy-finput{ min-height:84px; resize:vertical; font-family:'Cairo',sans-serif; }
@media(min-width:900px){ .roya-book__grid{ grid-template-columns:1.05fr .95fr; gap:44px; } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   AUDIENCES (لمن نقدّم خدماتنا) — premium target segments
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.roya-aud{ position:relative; background:linear-gradient(160deg,#06344c 0%,#0a4f6e 55%,#0b5c81 100%); padding:74px 0; overflow:hidden; }
.roya-aud::before{ content:''; position:absolute; inset:0; pointer-events:none;
  background:repeating-linear-gradient(45deg,rgba(255,255,255,.03) 0,rgba(255,255,255,.03) 1px,transparent 1px,transparent 60px),
            radial-gradient(circle at 85% 12%,rgba(255,158,0,.16),transparent 40%),
            radial-gradient(circle at 10% 90%,rgba(72,202,228,.12),transparent 42%); }
.roya-aud__inner{ position:relative; z-index:2; max-width:1160px; margin:0 auto; padding:0 16px; }
.roya-aud__head{ text-align:center; max-width:680px; margin:0 auto 42px; }
.roya-aud__head .rvy-badge{ background:rgba(255,255,255,.14); border-color:rgba(255,255,255,.32); color:#fff; }
.roya-aud__head .rvy-badge::before{ background:var(--c-org1); }
.roya-aud__head h2{ font-size:clamp(1.6rem,4.6vw,2.5rem); font-weight:900; color:#fff; line-height:1.28; margin:16px 0 12px; }
.roya-aud__head h2 .hl{ color:var(--c-org1); }
.roya-aud__head p{ font-size:.98rem; color:rgba(255,255,255,.82); line-height:1.85; }
.roya-aud__grid{ display:grid; grid-template-columns:1fr; gap:18px; }

.roya-aud-card{ position:relative; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14); border-radius:20px; padding:30px 24px; text-align:center; overflow:hidden; backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px); transition:transform .35s var(--ease), background .35s, border-color .35s; }
.roya-aud-card::before{ content:''; position:absolute; top:-50px; left:50%; transform:translateX(-50%); width:130px; height:130px; border-radius:50%; background:radial-gradient(circle, color-mix(in srgb, var(--ac,var(--c-org1)) 30%, transparent), transparent 70%); opacity:0; transition:opacity .35s; }
.roya-aud-card:hover{ transform:translateY(-8px); background:rgba(255,255,255,.1); border-color:color-mix(in srgb, var(--ac,var(--c-org1)) 55%, transparent); }
.roya-aud-card:hover::before{ opacity:1; }
.roya-aud-card__ic{ position:relative; z-index:1; width:66px; height:66px; margin:0 auto 16px; border-radius:18px; display:flex; align-items:center; justify-content:center; color:#fff; background:linear-gradient(135deg, var(--ac,var(--c-org1)), color-mix(in srgb, var(--ac,var(--c-org1)) 60%, #000 10%)); box-shadow:0 14px 30px color-mix(in srgb, var(--ac,var(--c-org1)) 40%, transparent); transition:transform .35s var(--ease); }
.roya-aud-card:hover .roya-aud-card__ic{ transform:rotate(-7deg) scale(1.07); }
.roya-aud-card__ic svg{ width:32px; height:32px; }
.roya-aud-card h3{ position:relative; z-index:1; font-size:1.15rem; font-weight:900; color:#fff; margin-bottom:8px; }
.roya-aud-card p{ position:relative; z-index:1; font-size:.85rem; line-height:1.75; color:rgba(255,255,255,.72); }

/* بطاقة VIP المميّزة */
.roya-aud-card.is-vip{ background:linear-gradient(150deg,#ffd27a 0%,#ff9e00 60%,#ff8500 100%); border-color:transparent; box-shadow:0 22px 48px rgba(255,133,0,.4); }
.roya-aud-card.is-vip::after{ content:''; position:absolute; inset:0; background:repeating-linear-gradient(45deg,rgba(255,255,255,.12) 0,rgba(255,255,255,.12) 1px,transparent 1px,transparent 42px); pointer-events:none; }
.roya-aud-card.is-vip .roya-aud-card__ic{ background:linear-gradient(135deg,#06344c,#0a4f6e); color:#ffd27a; box-shadow:0 14px 30px rgba(6,52,76,.4); }
.roya-aud-card.is-vip h3{ color:#06344c; }
.roya-aud-card.is-vip p{ color:rgba(6,52,76,.82); font-weight:500; }
.roya-aud-card__crown{ position:absolute; z-index:2; top:14px; left:-30px; transform:rotate(-45deg); background:#06344c; color:#ffd27a; font-weight:900; font-size:.68rem; letter-spacing:1px; padding:5px 38px; }

@media(min-width:600px){ .roya-aud__grid{ grid-template-columns:1fr 1fr; } }
@media(min-width:980px){ .roya-aud__grid{ grid-template-columns:repeat(3,1fr); } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CREDIT BAR (أسفل الفوتر) — تصميم وتطوير
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.roya-credit{ position:relative; background:#04222f; padding:16px 0; }
.roya-credit::before{ content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg,transparent,#10b981,#2dd4bf,#10b981,transparent); }
.roya-credit__inner{ display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:8px; text-align:center; font-size:.82rem; color:rgba(255,255,255,.55); }
.roya-credit__gem{ display:inline-flex; align-items:center; color:#2dd4bf; }
.roya-credit__gem svg{ width:16px; height:16px; }
.roya-credit__inner a{ display:inline-flex; align-items:center; gap:5px; color:#34d399; font-weight:800; text-decoration:none; transition:color .25s, transform .25s; }
.roya-credit__inner a:hover{ color:#6ee7b7; transform:translateY(-1px); }
.roya-credit__sep{ color:rgba(255,255,255,.25); }
.roya-credit__tags{ color:rgba(255,255,255,.42); font-weight:700; letter-spacing:.4px; }
.roya-credit__tags bdi{ unicode-bidi:isolate; }
@media(max-width:560px){ .roya-credit__inner{ font-size:.76rem; gap:6px; } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LUXURY SERVICE SLIDER (سلايدر فاخر)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.roya-slider{ position:relative; min-height:82vh; display:flex; align-items:center; overflow:hidden; background:#052f45; }
.roya-slider__slides{ position:absolute; inset:0; z-index:0; }
.roya-slider__slide{ position:absolute; inset:0; opacity:0; transform:scale(1.08); transition:opacity 1.1s var(--ease), transform 6s linear; }
.roya-slider__slide.is-active{ opacity:1; transform:scale(1); }
.roya-slider__slide img{ width:100%; height:100%; object-fit:cover; }
.roya-slider__slide::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg,rgba(3,40,60,.92) 0%,rgba(4,52,76,.5) 24%,rgba(4,52,76,.48) 55%,rgba(3,40,60,.8) 100%),linear-gradient(120deg,rgba(3,40,60,.5) 0%,rgba(0,150,199,.22) 100%); }
.roya-slider__deco{ position:absolute; inset:0; z-index:1; pointer-events:none; background:repeating-linear-gradient(45deg,rgba(255,255,255,.03) 0,rgba(255,255,255,.03) 1px,transparent 1px,transparent 60px); }
.roya-slider__inner{ position:relative; z-index:3; max-width:1240px; margin:0 auto; padding:120px 20px 90px; width:100%; }
.roya-slider__eyebrow{ display:flex; align-items:center; gap:10px; margin-bottom:18px; }
.roya-slider .rvy-badge{ background:rgba(255,255,255,.16); border-color:rgba(255,255,255,.36); color:#fff; }
.roya-slider .rvy-badge::before{ background:var(--c-org1); }
.roya-slider__crumb{ font-size:.82rem; color:rgba(255,255,255,.7); }
.roya-slider__crumb a{ color:#fff; text-decoration:none; }
.roya-slider__crumb span{ opacity:.5; margin:0 6px; }
.roya-slider__title{ font-size:clamp(2rem,6vw,3.6rem); font-weight:900; color:#fff; line-height:1.2; max-width:16ch; margin-bottom:18px; text-shadow:0 6px 30px rgba(0,30,50,.4); }
.roya-slider__title .hl{ color:var(--c-org1); }
.roya-slider__sub{ font-size:clamp(.95rem,2vw,1.1rem); color:rgba(255,255,255,.86); max-width:52ch; line-height:1.9; margin-bottom:28px; }
.roya-slider__ctas{ display:flex; flex-wrap:wrap; gap:14px; align-items:center; }
.roya-slider__phone{ display:inline-flex; align-items:center; gap:10px; color:#fff; font-weight:900; font-size:1.15rem; text-decoration:none; }
.roya-slider__phone svg{ width:22px; height:22px; color:var(--c-org1); }
.roya-slider__phone b{ letter-spacing:.5px; }
.roya-slider__dots{ position:absolute; bottom:26px; left:50%; transform:translateX(-50%); z-index:4; display:flex; gap:10px; }
.roya-slider__dot{ width:11px; height:11px; border-radius:50%; border:2px solid rgba(255,255,255,.6); background:transparent; cursor:pointer; padding:0; transition:all .3s; }
.roya-slider__dot.is-active{ background:var(--c-org1); border-color:var(--c-org1); width:30px; border-radius:6px; }
.roya-slider__badge{ position:absolute; z-index:4; bottom:24px; right:24px; display:none; align-items:center; gap:10px; background:rgba(255,255,255,.95); border-radius:14px; padding:10px 16px; box-shadow:0 12px 30px rgba(0,0,0,.2); }
.roya-slider__badge .stars{ color:var(--c-org1); letter-spacing:1px; }
.roya-slider__badge b{ color:var(--on-light); font-weight:900; }
.roya-slider__badge small{ color:var(--on-light-muted); font-weight:700; font-size:.72rem; }
@media(min-width:900px){ .roya-slider__badge{ display:inline-flex; } }
@media(max-width:640px){
  .roya-slider{ min-height:auto; }
  .roya-slider__inner{ padding:108px 16px 64px; }
}

/* ━━━ SERVICE FEATURES (عناصر موزعة: طواقم/أجهزة/عمالة/أسعار) ━━━ */
.roya-sf{ background:var(--light); padding:60px 0; }
.roya-sf__head{ text-align:center; max-width:640px; margin:0 auto 36px; }
.roya-sf__grid{ max-width:1160px; margin:0 auto; padding:0 16px; display:grid; grid-template-columns:1fr; gap:16px; }
.roya-sf-card{ position:relative; background:#fff; border:1px solid var(--border-l); border-radius:18px; padding:26px 22px; overflow:hidden; transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
.roya-sf-card::before{ content:''; position:absolute; inset:0 auto 0 0; width:5px; background:var(--ac,var(--gold)); }
.roya-sf-card:hover{ transform:translateY(-6px); box-shadow:0 22px 48px rgba(0,119,182,.16); border-color:color-mix(in srgb,var(--ac,var(--gold)) 40%,transparent); }
.roya-sf-card__ic{ width:56px; height:56px; border-radius:15px; display:flex; align-items:center; justify-content:center; color:#fff; background:linear-gradient(135deg,var(--ac,var(--gold)),color-mix(in srgb,var(--ac,var(--gold)) 62%,#000 6%)); box-shadow:0 12px 26px color-mix(in srgb,var(--ac,var(--gold)) 40%,transparent); margin-bottom:14px; }
.roya-sf-card__ic svg{ width:28px; height:28px; }
.roya-sf-card h3{ font-size:1.1rem; font-weight:800; color:var(--on-light); margin-bottom:7px; }
.roya-sf-card p{ font-size:.85rem; line-height:1.7; color:var(--on-light-muted); }
@media(min-width:600px){ .roya-sf__grid{ grid-template-columns:1fr 1fr; } }
@media(min-width:980px){ .roya-sf__grid{ grid-template-columns:repeat(3,1fr); } }

/* ━━━ BIG CONTACT BAR (اتصل بنا + رقم كبير) ━━━ */
.roya-callbar{ position:relative; background:linear-gradient(135deg,#06344c 0%,#0a4f6e 60%,#0077b6 100%); padding:60px 0; overflow:hidden; text-align:center; }
.roya-callbar::before{ content:''; position:absolute; inset:0; background:radial-gradient(circle at 20% 20%,rgba(255,158,0,.18),transparent 42%),repeating-linear-gradient(45deg,rgba(255,255,255,.03) 0,rgba(255,255,255,.03) 1px,transparent 1px,transparent 58px); pointer-events:none; }
.roya-callbar__inner{ position:relative; z-index:2; max-width:820px; margin:0 auto; padding:0 16px; }
.roya-callbar .rvy-badge{ background:rgba(255,255,255,.16); border-color:rgba(255,255,255,.34); color:#fff; }
.roya-callbar .rvy-badge::before{ background:var(--c-org1); }
.roya-callbar h2{ font-size:clamp(1.5rem,4.5vw,2.3rem); font-weight:900; color:#fff; margin:16px 0 6px; }
.roya-callbar p{ color:rgba(255,255,255,.82); font-size:.98rem; margin-bottom:22px; }
.roya-callbar__phone{ display:inline-flex; align-items:center; gap:14px; text-decoration:none; color:#fff; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.2); border-radius:20px; padding:18px 34px; margin-bottom:24px; transition:transform .3s, box-shadow .3s, background .3s; }
.roya-callbar__phone:hover{ transform:translateY(-3px); background:rgba(255,255,255,.14); box-shadow:0 18px 40px rgba(0,0,0,.25); color:#fff; }
.roya-callbar__phone-ic{ width:56px; height:56px; border-radius:16px; background:linear-gradient(135deg,var(--c-org1),var(--c-org3)); display:flex; align-items:center; justify-content:center; flex-shrink:0; box-shadow:0 10px 24px rgba(255,133,0,.45); }
.roya-callbar__phone-ic svg{ width:28px; height:28px; color:#fff; }
.roya-callbar__phone-tx{ display:flex; flex-direction:column; align-items:flex-start; line-height:1.2; }
.roya-callbar__phone-tx small{ font-size:.8rem; color:rgba(255,255,255,.7); font-weight:700; }
.roya-callbar__phone-tx b{ font-size:clamp(1.8rem,6vw,2.8rem); font-weight:900; letter-spacing:1px; direction:ltr; }
.roya-callbar__btns{ display:flex; flex-wrap:wrap; gap:12px; justify-content:center; }
@media(max-width:520px){ .roya-callbar__phone{ padding:14px 20px; gap:10px; } .roya-callbar__phone-ic{ width:46px; height:46px; } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICES GRID (مبهر) — يربط صفحات الخدمات
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.rvy-srv3{ display:grid; grid-template-columns:1fr; gap:20px; }
.rvy-srv3-card{ position:relative; background:#fff; border:1px solid var(--border-l); border-radius:22px; padding:30px 26px 26px; overflow:hidden; text-decoration:none; display:block; transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; }
.rvy-srv3-card::before{ content:''; position:absolute; top:-60px; right:-60px; width:170px; height:170px; border-radius:50%; background:radial-gradient(circle, color-mix(in srgb,var(--ac,var(--gold)) 22%,transparent), transparent 70%); transition:transform .55s var(--ease); }
.rvy-srv3-card::after{ content:''; position:absolute; left:0; right:0; bottom:0; height:4px; background:linear-gradient(90deg,var(--ac,var(--gold)),transparent); transform:scaleX(0); transform-origin:right; transition:transform .45s var(--ease); }
.rvy-srv3-card:hover{ transform:translateY(-10px); box-shadow:0 30px 62px rgba(0,119,182,.2); border-color:color-mix(in srgb,var(--ac,var(--gold)) 45%,transparent); }
.rvy-srv3-card:hover::before{ transform:scale(1.55); }
.rvy-srv3-card:hover::after{ transform:scaleX(1); }
.rvy-srv3-top{ position:relative; z-index:1; display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; }
.rvy-srv3-ic{ width:64px; height:64px; border-radius:18px; display:flex; align-items:center; justify-content:center; color:#fff; background:linear-gradient(135deg,var(--ac,var(--gold)),color-mix(in srgb,var(--ac,var(--gold)) 60%,#000 8%)); box-shadow:0 14px 30px color-mix(in srgb,var(--ac,var(--gold)) 40%,transparent); transition:transform .4s var(--ease); }
.rvy-srv3-card:hover .rvy-srv3-ic{ transform:rotate(-8deg) scale(1.08); }
.rvy-srv3-ic svg{ width:32px; height:32px; }
.rvy-srv3-no{ font-size:2.7rem; font-weight:900; line-height:1; color:color-mix(in srgb,var(--ac,var(--gold)) 18%,transparent); }
.rvy-srv3-title{ position:relative; z-index:1; font-size:1.2rem; font-weight:900; color:var(--on-light); margin-bottom:8px; }
.rvy-srv3-desc{ position:relative; z-index:1; font-size:.88rem; line-height:1.75; color:var(--on-light-muted); margin-bottom:16px; }
.rvy-srv3-go{ position:relative; z-index:1; display:inline-flex; align-items:center; gap:7px; color:var(--ac,var(--gold)); font-weight:800; font-size:.9rem; }
.rvy-srv3-go svg{ width:16px; height:16px; transition:transform .3s; }
.rvy-srv3-card:hover .rvy-srv3-go svg{ transform:translateX(-5px); }
.rvy-srv3-more{ text-align:center; margin-top:38px; }
.rvy-srv3-more a{ display:inline-flex; align-items:center; gap:10px; padding:15px 34px; border-radius:12px; background:linear-gradient(135deg,var(--c-org1),var(--c-org3)); color:#fff; font-weight:800; text-decoration:none; box-shadow:0 12px 30px rgba(255,133,0,.35); transition:transform .3s, box-shadow .3s; }
.rvy-srv3-more a:hover{ transform:translateY(-3px); box-shadow:0 18px 40px rgba(255,133,0,.5); color:#fff; }
.rvy-srv3-more a svg{ width:18px; height:18px; }
@media(min-width:640px){ .rvy-srv3{ grid-template-columns:1fr 1fr; } }
@media(min-width:980px){ .rvy-srv3{ grid-template-columns:repeat(3,1fr); } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICES SLIDER (كاروسيل فاخر للخدمات)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.rvy-srv-slider{ position:relative; margin-top:8px; }
.rvy-srv-track{ display:flex; gap:22px; overflow-x:auto; scroll-snap-type:x mandatory; scroll-behavior:smooth; padding:12px 4px 26px; scrollbar-width:none; -ms-overflow-style:none; }
.rvy-srv-track::-webkit-scrollbar{ display:none; }
.rvy-srv-track > .rvy-srv3-card{ flex:0 0 calc((100% - 44px) / 3); scroll-snap-align:start; }
@media(max-width:900px){ .rvy-srv-track > .rvy-srv3-card{ flex:0 0 calc((100% - 22px) / 2); } }
@media(max-width:600px){ .rvy-srv-track > .rvy-srv3-card{ flex:0 0 87%; } }

.rvy-srv-nav{ display:flex; align-items:center; justify-content:center; gap:18px; margin-top:6px; }
.rvy-srv-arrow{ width:52px; height:52px; border-radius:50%; border:1.5px solid var(--border-2); background:#fff; color:var(--gold-3); display:flex; align-items:center; justify-content:center; cursor:pointer; padding:0; transition:transform .3s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .3s; box-shadow:0 6px 18px rgba(0,119,182,.1); }
.rvy-srv-arrow:hover{ background:linear-gradient(135deg,var(--c-org1),var(--c-org3)); color:#fff; border-color:transparent; transform:translateY(-2px); box-shadow:0 12px 26px rgba(255,133,0,.35); }
.rvy-srv-arrow:active{ transform:scale(.94); }
.rvy-srv-arrow svg{ width:22px; height:22px; }
.rvy-srv-dots{ display:flex; align-items:center; gap:8px; }
.rvy-srv-dot{ width:9px; height:9px; border-radius:50%; border:none; background:var(--border-2); cursor:pointer; padding:0; transition:width .3s var(--ease), background .3s; }
.rvy-srv-dot.is-active{ width:28px; border-radius:5px; background:linear-gradient(90deg,var(--c-org1),var(--c-org3)); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FLOATING BUTTONS (واتساب + اتصال عائم)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.roya-float{ position:fixed; bottom:20px; left:20px; z-index:990; display:flex; flex-direction:column; gap:14px; }
.roya-float__btn{ position:relative; width:58px; height:58px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; text-decoration:none; box-shadow:0 10px 26px rgba(0,0,0,.24); transition:transform .3s var(--ease), box-shadow .3s var(--ease), width .35s var(--ease), border-radius .35s var(--ease); overflow:hidden; }
.roya-float__btn svg{ width:28px; height:28px; flex-shrink:0; z-index:2; }
.roya-float__wa{ background:linear-gradient(135deg,#25D366,#128C7E); }
.roya-float__ph{ background:linear-gradient(135deg,var(--c-org1),var(--c-org3)); }
.roya-float__btn:hover{ transform:translateY(-3px); box-shadow:0 16px 34px rgba(0,0,0,.32); color:#fff; }
.roya-float__label{ display:none; }

/* نبضة تنبيه على زر الواتساب */
.roya-float__pulse{ position:absolute; inset:0; border-radius:50%; background:#25D366; z-index:1; animation:royaPulse 2.2s ease-out infinite; }
@keyframes royaPulse{ 0%{ transform:scale(1); opacity:.55; } 70%{ transform:scale(1.75); opacity:0; } 100%{ opacity:0; } }

/* توسّع مع إظهار النص على الشاشات الأكبر */
@media(min-width:768px){
  .roya-float__btn{ width:58px; padding:0; justify-content:center; }
  .roya-float__btn:hover{ width:190px; border-radius:32px; justify-content:flex-start; padding:0 18px; gap:10px; }
  .roya-float__btn:hover .roya-float__label{ display:inline-block; font-weight:800; font-size:.95rem; white-space:nowrap; z-index:2; }
}
@media(prefers-reduced-motion:reduce){ .roya-float__pulse{ animation:none; display:none; } }

/* شعار مصوّر (عند اختيار «شعار مصوّر» من التخصيص) */
.roya-header__logo-img{ max-height:56px; width:auto; display:block; }
@media(max-width:600px){ .roya-header__logo-img{ max-height:46px; } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO DECORATIONS (فقاعات + لمعات نظافة)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.rvy-hero__deco{ position:absolute; inset:0; z-index:2; pointer-events:none; overflow:hidden; }
.rvy-bubble{ position:absolute; bottom:-40px; border-radius:50%;
  background:radial-gradient(circle at 32% 28%, rgba(255,255,255,.55), rgba(255,255,255,.10) 42%, rgba(255,255,255,0) 68%);
  box-shadow:inset 0 0 8px rgba(255,255,255,.25), 0 0 12px rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  animation:rvyFloat linear infinite; opacity:0; }
@keyframes rvyFloat{
  0%{ transform:translateY(0) scale(.85); opacity:0; }
  15%{ opacity:.7; }
  85%{ opacity:.55; }
  100%{ transform:translateY(-115vh) scale(1.12); opacity:0; }
}
.rvy-spark{ position:absolute; color:rgba(255,210,122,.85); animation:rvyTwinkle ease-in-out infinite; opacity:0; }
.rvy-spark svg{ width:100%; height:100%; display:block; filter:drop-shadow(0 0 6px rgba(255,190,90,.5)); }
@keyframes rvyTwinkle{
  0%,100%{ transform:scale(.5) rotate(0deg); opacity:.15; }
  50%{ transform:scale(1) rotate(18deg); opacity:.9; }
}
.rvy-spark.blue{ color:rgba(180,235,255,.8); }
@media(prefers-reduced-motion:reduce){ .rvy-bubble,.rvy-spark{ animation:none; opacity:.35; } }
