/* ══════════════════════════════════════════════════════════════
   رؤيا الأجيال — Responsive CSS
   Mobile-First: 320px → 480px → 640px → 768px → 1024px → 1280px+
   ══════════════════════════════════════════════════════════════ */

/* ── BASE MOBILE-FIRST RESETS ─────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;-webkit-tap-highlight-color:transparent}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{overflow-x:hidden;min-width:320px}
img,video{max-width:100%;height:auto;display:block}
button,input,select,textarea{font-family:inherit;font-size:inherit}
input,select,textarea{width:100%}

/* ── CONTAINER ─────────────────────────────────────────────── */
.container{
  width:100%;
  max-width:1380px;
  margin:0 auto;
  padding:0 1rem;      /* mobile */
}
@media(min-width:480px){.container{padding:0 1.25rem}}
@media(min-width:768px){.container{padding:0 1.75rem}}
@media(min-width:1024px){.container{padding:0 2rem}}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.75rem 1rem;
  gap:.75rem;
}

/* Logo — always visible */
.logo{display:flex;align-items:center;gap:.6rem;flex-shrink:0;min-width:0}
.logo-img-wrap{width:44px;height:44px;flex-shrink:0}
.logo-text-wrap{display:flex;flex-direction:column;gap:1px;min-width:0}
.logo-name-main{
  font-size:clamp(.9rem,2.5vw,1.25rem);
  font-weight:800;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.logo-sub{font-size:.6rem;white-space:nowrap}

/* Desktop links — hidden on mobile */
.nav-links{display:none}
.nav-links a{
  padding:.55rem .85rem;
  font-size:.85rem;
  white-space:nowrap;
}

/* Language switch button — universal */
.lang-switch{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  padding:.45rem .9rem;
  border:1.5px solid rgba(196,154,108,.45);
  border-radius:8px;
  color:var(--gold);
  font-weight:700;
  font-size:.82rem;
  white-space:nowrap;
  transition:.3s;
  background:transparent;
  cursor:pointer;
  text-decoration:none;
  flex-shrink:0;
}
.lang-switch:hover{
  background:rgba(196,154,108,.12);
  border-color:var(--gold);
}
.lang-switch svg{width:14px;height:14px;flex-shrink:0}

/* Nav end */
.nav-end{
  display:flex;
  align-items:center;
  gap:.5rem;
  flex-shrink:0;
}
.nav-phone{display:none}          /* hidden on mobile */
.nav-cta{
  padding:.6rem 1rem;
  font-size:.82rem;
  gap:.3rem;
}
.nav-cta svg{width:13px;height:13px}

/* Hamburger */
.menu-toggle{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  width:40px;
  height:40px;
  padding:8px;
  border-radius:8px;
  cursor:pointer;
  flex-shrink:0;
}
.hb{width:20px;height:2px;background:var(--black);border-radius:2px;display:block;transition:.3s}

/* ≥ 640px — show phone number */
@media(min-width:640px){
  .nav-phone{display:flex}
  .nav-cta{padding:.65rem 1.3rem;font-size:.88rem}
  .lang-switch{padding:.5rem 1rem;font-size:.85rem}
}

/* ≥ 1024px — show full desktop nav, hide hamburger */
@media(min-width:1024px){
  .nav-inner{padding:.9rem 2rem;gap:1.5rem}
  .nav-links{display:flex;gap:.1rem}
  .menu-toggle{display:none}
  .logo-img-wrap{width:52px;height:52px}
  .nav-phone{display:flex}
  .nav-cta{padding:.7rem 1.6rem;font-size:.9rem}
  .lang-switch{padding:.55rem 1.1rem;font-size:.88rem}
}

/* ── SIDEBAR (mobile menu) ──────────────────────────────────── */
.sidebar{
  position:fixed;
  top:0;
  right:-100%;
  width:min(320px,90vw);
  height:100vh;
  background:linear-gradient(160deg,var(--black),var(--dark));
  z-index:1200;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  transition:right .35s cubic-bezier(.4,0,.2,1);
  display:flex;
  flex-direction:column;
}
.sidebar.open{right:0}

/* LTR support for sidebar */
html[dir="ltr"] .sidebar{right:auto;left:-100%}
html[dir="ltr"] .sidebar.open{left:0}
html[dir="ltr"] .sb-close{left:auto;right:1rem}
html[dir="ltr"] .sb-link{border-right:none;border-left:3px solid transparent}
html[dir="ltr"] .sb-link:hover,
html[dir="ltr"] .sb-link.active{border-left-color:var(--gold)}

.sb-close{
  position:absolute;
  top:1rem;
  left:1rem;
  width:36px;height:36px;
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.7);
  border-radius:8px;
  cursor:pointer;
  transition:.25s;
  z-index:1;
  min-height:44px;min-width:44px;
}
.sb-close:hover{color:#fff;background:rgba(255,255,255,.1)}

.sb-head{
  padding:3.5rem 1.5rem 1.5rem;
  text-align:center;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.sb-logo-img{
  width:70px;height:70px;
  margin:0 auto .75rem;
  object-fit:contain;
  border-radius:14px;
  border:1.5px solid rgba(196,154,108,.35);
  padding:5px;
  background:rgba(255,255,255,.05);
}
.sb-tagline{color:#fff;font-weight:800;font-size:1.05rem;margin-bottom:.2rem}
.sb-sub{color:var(--gold);font-size:.72rem;letter-spacing:.05em}

.sb-nav{padding:.5rem 0;flex:1}
.sb-link{
  display:flex;
  align-items:center;
  gap:.85rem;
  padding:1rem 1.5rem;
  color:rgba(255,255,255,.75);
  font-size:.9rem;
  font-weight:500;
  transition:.25s;
  border-right:3px solid transparent;
  min-height:44px;
  text-decoration:none;
}
.sb-link:hover,.sb-link.active{
  color:#fff;
  background:rgba(196,154,108,.1);
  border-right-color:var(--gold);
}

/* Language switch in sidebar */
.sb-lang-btn{
  display:flex;
  align-items:center;
  gap:.75rem;
  margin:0 1rem .75rem;
  padding:.75rem 1rem;
  border:1.5px solid rgba(196,154,108,.35);
  border-radius:10px;
  color:var(--gold);
  font-weight:700;
  font-size:.88rem;
  text-decoration:none;
  transition:.25s;
  min-height:44px;
}
.sb-lang-btn:hover{background:rgba(196,154,108,.1);border-color:var(--gold)}
.sb-lang-btn svg{width:16px;height:16px;flex-shrink:0}

.sb-foot{
  padding:1.25rem;
  border-top:1px solid rgba(255,255,255,.1);
  display:flex;
  flex-direction:column;
  gap:.65rem;
}
.sb-cta{
  display:flex;align-items:center;justify-content:center;gap:.5rem;
  padding:.9rem;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  color:#fff;font-weight:700;border-radius:10px;font-size:.9rem;
  text-decoration:none;min-height:44px;
}
.sb-phone{
  display:flex;align-items:center;justify-content:center;gap:.5rem;
  padding:.75rem;
  border:1.5px solid rgba(255,255,255,.2);
  color:rgba(255,255,255,.8);border-radius:10px;font-size:.88rem;
  text-decoration:none;min-height:44px;
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero{min-height:100svh;min-height:100vh}
.hero-content{
  padding:calc(var(--nav-h,90px) + 3rem) 1rem 2rem;
  max-width:900px;
  margin:0 auto;
}
.hero-badge{
  padding:.65rem 1.25rem;
  font-size:.82rem;
  margin-bottom:1.25rem;
}
.hero-badge svg,.hero-badge i{width:15px;height:15px}

/* Typography scaling */
h1,.hero-main-title{font-size:clamp(2rem,8vw,6.5rem)}
.hero-sub-title{font-size:clamp(1.2rem,4vw,3rem)}
.hero-subtitle{font-size:clamp(1rem,3vw,1.5rem)}
.hero-en-subtitle{font-size:.88rem;letter-spacing:.12em;margin:1rem 0 2rem}

.hero-services-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.6rem;
  margin:1.25rem 0;
}
.hero-service-tag{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  padding:.35rem .8rem;
  border:1px solid rgba(196,154,108,.3);
  border-radius:20px;
  color:var(--gold);
  font-size:.8rem;
  font-weight:600;
}
.hero-service-tag svg{width:12px;height:12px}

.hero-buttons,.hero-btns{
  display:flex;
  flex-direction:column;
  gap:.75rem;
  margin-bottom:2.5rem;
}
.hero-btn,.btn-primary-lg,.btn-outline-lg{
  width:100%;
  justify-content:center;
  padding:1rem 1.5rem;
  font-size:.95rem;
}

/* Stats row */
.hero-stats{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.75rem;
  max-width:600px;
  margin:0 auto;
}
.hero-stat,.stat-item{
  padding:1.25rem .75rem;
  border-radius:14px;
  text-align:center;
}
.hero-stat-number,.stat-number{font-size:clamp(1.8rem,5vw,3.2rem);line-height:1}
.hero-stat-label,.stat-label{font-size:.78rem;margin-top:.35rem}

/* ≥ 480px */
@media(min-width:480px){
  .hero-buttons,.hero-btns{flex-direction:row;justify-content:center;flex-wrap:wrap}
  .hero-btn,.btn-primary-lg,.btn-outline-lg{width:auto}
  .hero-service-tag{font-size:.85rem}
}
/* ≥ 768px */
@media(min-width:768px){
  .hero-content{padding:calc(var(--nav-h,90px) + 4rem) 2rem 3rem}
  .hero-stats{grid-template-columns:repeat(4,1fr);gap:1.25rem;max-width:1000px}
  .hero-stat{padding:1.75rem 1.25rem}
  .hero-stat-number,.stat-number{font-size:clamp(2.2rem,4vw,3.2rem)}
  .hero-badge{font-size:.95rem;padding:.75rem 2rem}
}

/* ── SECTIONS ──────────────────────────────────────────────── */
.section{padding:3.5rem 0}
@media(min-width:768px){.section{padding:4.5rem 0}}
@media(min-width:1024px){.section{padding:5rem 0}}

.section-header{margin-bottom:2.5rem}
.section-header h2{font-size:clamp(1.6rem,4vw,2.8rem)}
.section-tag{
  display:inline-block;
  padding:.3rem .9rem;
  background:rgba(196,154,108,.12);
  border:1px solid rgba(196,154,108,.25);
  border-radius:20px;
  color:var(--gold);
  font-size:.8rem;
  font-weight:700;
  margin-bottom:.75rem;
}
@media(min-width:768px){
  .section-header{margin-bottom:3.5rem}
}

/* ── GRIDS — all responsive ────────────────────────────────── */

/* Services */
.services-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:1.5rem;
}
@media(min-width:580px){
  .services-grid{grid-template-columns:repeat(2,1fr)}
}
@media(min-width:1024px){
  .services-grid{grid-template-columns:repeat(3,1fr);gap:2rem}
}

/* Service card */
.service-card{border-radius:var(--radius);overflow:hidden}
.service-card-img{height:200px}
@media(min-width:768px){.service-card-img{height:240px}}

/* Service list (services index) */
.services-list-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:1.5rem;
}
@media(min-width:768px){
  .services-list-grid{grid-template-columns:repeat(2,1fr)}
}
.slc-img{height:200px;overflow:hidden;border-radius:var(--radius) var(--radius) 0 0}
.slc-img img{width:100%;height:100%;object-fit:cover}
.slc-body{padding:1.25rem}
.slc-price{
  display:inline-block;
  padding:.3rem .9rem;
  background:rgba(196,154,108,.12);
  border-radius:20px;
  color:var(--gold);
  font-weight:700;
  font-size:.85rem;
  margin-bottom:1rem;
}

/* Service detail */
.service-detail-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:2rem;
}
@media(min-width:1024px){
  .service-detail-grid{grid-template-columns:1fr 340px;align-items:start}
}
.service-detail-img{
  width:100%;
  max-height:400px;
  object-fit:cover;
  border-radius:var(--radius-lg);
  margin-bottom:1.5rem;
}
.features-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:.6rem;
  margin-bottom:1.5rem;
}
@media(min-width:480px){.features-grid{grid-template-columns:1fr 1fr}}
.feature-item{
  display:flex;
  align-items:center;
  gap:.5rem;
  font-size:.9rem;
  color:var(--gray-600);
  padding:.5rem;
  background:var(--gray-100);
  border-radius:8px;
}
.feature-item svg{flex-shrink:0;width:16px;height:16px}
.service-features{display:flex;flex-direction:column;gap:.45rem;margin-bottom:1rem}
.service-features li{display:flex;align-items:flex-start;gap:.5rem;font-size:.88rem;color:var(--gray-600)}
.service-features li svg{flex-shrink:0;margin-top:.15rem;width:14px;height:14px}

/* Sidebar (service / post) */
.sidebar-card{
  background:var(--white);
  border:1.5px solid var(--gray-200);
  border-radius:var(--radius-lg);
  padding:1.25rem;
  margin-bottom:1rem;
}
.sidebar-card h4{font-size:1rem;font-weight:800;margin-bottom:.85rem}
.sidebar-link{
  display:block;
  padding:.6rem 0;
  border-bottom:1px solid var(--gray-100);
  font-size:.88rem;
  color:var(--gray-600);
  transition:.25s;
  text-decoration:none;
}
.sidebar-link:last-child{border-bottom:none}
.sidebar-link:hover{color:var(--gold)}
.price-card{background:linear-gradient(135deg,var(--black),var(--dark));color:#fff}
.price-label{font-size:.82rem;color:rgba(255,255,255,.6);margin-bottom:.3rem}
.price-value{font-size:2rem;font-weight:900;color:var(--gold);margin-bottom:.2rem}
.price-note{font-size:.82rem;color:rgba(255,255,255,.5);margin-bottom:1.25rem}
.cta-card{background:linear-gradient(135deg,var(--black),var(--dark));color:#fff}
.cta-card h4{color:#fff;margin-bottom:.5rem}
.cta-card p{font-size:.85rem;color:rgba(255,255,255,.7);margin-bottom:1rem}

/* Projects */
.projects-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:1.5rem;
}
@media(min-width:580px){.projects-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.projects-grid{grid-template-columns:repeat(3,1fr);gap:2rem}}

.project-card{display:block;text-decoration:none;border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow);transition:.3s;background:var(--white)}
.project-card:hover{transform:translateY(-6px);box-shadow:0 12px 40px rgba(196,154,108,.2)}
.project-img{position:relative;height:200px;overflow:hidden;background:var(--gray-100)}
.project-img img{width:100%;height:100%;object-fit:cover;transition:.6s ease}
.project-card:hover .project-img img{transform:scale(1.08)}
.project-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(25,25,25,.75),transparent 60%);
  display:flex;align-items:flex-end;
  padding:.85rem 1rem;
}
.project-cat{
  display:inline-block;
  background:var(--gold);
  color:#fff;
  padding:.25rem .75rem;
  border-radius:20px;
  font-size:.75rem;
  font-weight:700;
}
.project-info{padding:1rem 1.25rem}
.project-info h3{font-size:1rem;font-weight:800;margin-bottom:.4rem;color:var(--black)}
.project-location{
  display:flex;align-items:center;gap:.35rem;
  font-size:.82rem;color:var(--gray-500);
  text-decoration:none;
}
.project-location svg{width:13px;height:13px;flex-shrink:0;color:var(--gold)}

@media(min-width:768px){
  .project-img{height:240px}
}

/* Project detail */
.project-detail-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:2rem;
}
@media(min-width:1024px){
  .project-detail-grid{grid-template-columns:1fr 320px;align-items:start}
}
.project-detail-img{
  width:100%;max-height:420px;
  object-fit:cover;
  border-radius:var(--radius-lg);
  margin-bottom:1.25rem;
}
.gallery-thumbs{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(80px,1fr));
  gap:.5rem;
  margin-bottom:1.5rem;
}
.gallery-thumbs img{
  width:100%;aspect-ratio:4/3;
  object-fit:cover;border-radius:8px;cursor:pointer;
  border:2px solid transparent;transition:.25s;
}
.gallery-thumbs img:hover{border-color:var(--gold)}
.detail-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:.75rem 0;
  border-bottom:1px solid var(--gray-100);
  font-size:.9rem;
  gap:.5rem;
}
.detail-row:last-child{border-bottom:none}
.detail-row span{color:var(--gray-500)}
.detail-row strong{text-align:start;font-weight:700}

/* Testimonials */
.testimonials-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:1.25rem;
}
@media(min-width:580px){.testimonials-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.testimonials-grid{grid-template-columns:repeat(3,1fr);gap:1.75rem}}

.testimonial-card{
  background:rgba(255,255,255,.06);
  border:1.5px solid rgba(255,255,255,.1);
  border-radius:var(--radius-lg);
  padding:1.5rem;
  transition:.3s;
}
.testimonial-card:hover{background:rgba(255,255,255,.1);transform:translateY(-4px)}
.testimonial-rating{display:flex;gap:2px;margin-bottom:.75rem}
.testimonial-rating svg{width:15px;height:15px}
.testimonial-content{
  color:rgba(255,255,255,.8);
  font-size:.9rem;
  line-height:1.8;
  margin-bottom:1.25rem;
  font-style:italic;
}
.testimonial-author{display:flex;align-items:center;gap:.75rem}
.author-avatar{
  width:44px;height:44px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:1rem;color:#fff;
  flex-shrink:0;overflow:hidden;
}
.author-img{width:44px;height:44px;border-radius:50%;object-fit:cover;flex-shrink:0}
.author-name{font-weight:700;color:#fff;font-size:.9rem}
.author-title{font-size:.78rem;color:var(--gold);margin-top:.1rem}

/* FAQ */
.faq-list{max-width:820px;margin:0 auto;display:flex;flex-direction:column;gap:.75rem}
.faq-item{
  background:var(--white);
  border:1.5px solid var(--gray-200);
  border-radius:var(--radius);
  overflow:hidden;
  transition:.25s;
}
.faq-item:hover{border-color:rgba(196,154,108,.4)}
.faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1rem 1.25rem;
  font-size:.92rem;
  font-weight:700;
  color:var(--black);
  text-align:right;
  gap:.75rem;
  cursor:pointer;
  transition:.25s;
  min-height:48px;
  background:none;
  border:none;
}
html[dir="ltr"] .faq-question{text-align:left}
.faq-question:hover,.faq-question.open{color:var(--gold)}
.faq-icon{
  font-size:1.4rem;font-weight:300;
  color:var(--gold);flex-shrink:0;
  line-height:1;transition:transform .3s;
}
.faq-question.open .faq-icon{transform:rotate(45deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .4s ease,padding .3s ease}
.faq-answer.open{max-height:500px;padding:0 1.25rem 1rem}
.faq-answer p{color:var(--gray-500);line-height:1.8;font-size:.9rem}

/* Blog */
.blog-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:1.5rem;
}
@media(min-width:580px){.blog-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.blog-grid{grid-template-columns:repeat(3,1fr);gap:2rem}}

.blog-card{
  display:block;
  text-decoration:none;
  background:var(--white);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:.3s;
}
.blog-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md)}
.blog-img{height:190px;overflow:hidden;background:var(--gray-100)}
.blog-img img{width:100%;height:100%;object-fit:cover;transition:.6s}
.blog-card:hover .blog-img img{transform:scale(1.06)}
.blog-body{padding:1.25rem}
.blog-meta{
  display:flex;gap:.75rem;flex-wrap:wrap;
  font-size:.78rem;color:var(--gray-400);
  margin-bottom:.65rem;
}
.blog-body h3{
  font-size:1rem;font-weight:800;
  color:var(--black);margin-bottom:.5rem;
  line-height:1.45;transition:.25s;
}
.blog-card:hover h3{color:var(--gold)}
.blog-body p{font-size:.85rem;color:var(--gray-500);line-height:1.65;margin-bottom:.75rem}
.read-more{
  color:var(--gold);font-weight:700;font-size:.85rem;
  display:inline-flex;align-items:center;gap:.3rem;transition:.25s;
}
.read-more:hover{gap:.55rem}

/* Post detail */
.post-layout{
  display:grid;
  grid-template-columns:1fr;
  gap:2rem;
}
@media(min-width:1100px){
  .post-layout{grid-template-columns:1fr 300px;align-items:start}
}
.post-main{}
.post-sidebar{display:flex;flex-direction:column;gap:1.25rem}
.post-meta{
  display:flex;gap:1rem;flex-wrap:wrap;
  font-size:.82rem;color:var(--gray-400);margin-bottom:1.25rem;
}
.post-meta span{display:flex;align-items:center;gap:.3rem}
.post-hero-img{
  width:100%;max-height:420px;object-fit:cover;
  border-radius:var(--radius-lg);margin-bottom:1.75rem;
}
.post-content{color:var(--gray-600);line-height:1.95;font-size:.97rem}
.post-content h1,.post-content h2,.post-content h3{
  color:var(--black);font-weight:800;margin:1.5rem 0 .75rem;
  font-size:clamp(1.1rem,3vw,1.6rem);
}
.post-content p{margin-bottom:1.15rem}
.post-content img{border-radius:var(--radius);margin:1.25rem 0;max-width:100%}
.post-tags{
  display:flex;align-items:center;gap:.4rem;flex-wrap:wrap;
  margin-top:1.75rem;padding-top:1.25rem;border-top:1px solid var(--gray-200);
}
.tag{
  padding:.3rem .8rem;background:var(--beige);
  color:var(--black);border-radius:20px;font-size:.78rem;font-weight:600;
}
.post-share{display:flex;align-items:center;gap:.65rem;margin-top:1.25rem}
.post-share span{font-weight:700;font-size:.88rem}
.share-btn{
  width:34px;height:34px;border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-size:.82rem;font-weight:700;transition:.25s;text-decoration:none;
}
.share-wa{background:#25D366}.share-tw{background:#1DA1F2}
.share-btn:hover{transform:translateY(-2px);opacity:.85}
.sidebar-post{
  display:flex;gap:.65rem;padding:.6rem 0;
  border-bottom:1px solid var(--gray-100);
  text-decoration:none;transition:.25s;
  align-items:flex-start;
}
.sidebar-post:last-child{border-bottom:none}
.sidebar-post:hover{opacity:.75}
.sidebar-post img{width:60px;height:48px;object-fit:cover;border-radius:7px;flex-shrink:0}
.sidebar-post p{font-size:.82rem;font-weight:600;color:var(--black);line-height:1.4}

/* Packages */
.packages-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:1.5rem;
  align-items:start;
}
@media(min-width:580px){.packages-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.packages-grid{grid-template-columns:repeat(3,1fr);gap:2rem}}

.package-card{
  position:relative;
  border:1.5px solid var(--gray-200);
  border-radius:var(--radius-lg);
  padding:1.75rem 1.5rem;
  background:var(--white);
  box-shadow:var(--shadow);
  transition:.3s;
}
.package-card:hover{transform:translateY(-6px);border-color:rgba(196,154,108,.4);box-shadow:0 12px 40px rgba(196,154,108,.2)}
.package-card.popular{border-color:var(--gold);box-shadow:0 8px 30px rgba(196,154,108,.25)}
.pkg-badge{
  position:absolute;top:-12px;
  right:50%;transform:translateX(50%);
  color:#fff;padding:.3rem 1.1rem;
  border-radius:20px;font-size:.78rem;font-weight:700;
  white-space:nowrap;
}
.pkg-header{margin-bottom:1rem}
.pkg-header h3{font-size:1.2rem;font-weight:800;margin-bottom:.4rem;color:var(--black)}
.pkg-header p{font-size:.85rem;color:var(--gray-500);line-height:1.6}
.pkg-price{
  display:flex;align-items:baseline;gap:.4rem;
  margin-bottom:.3rem;flex-wrap:wrap;
}
.pkg-old-price{font-size:.9rem;color:var(--gray-400);text-decoration:line-through}
.pkg-amount{font-size:2rem;font-weight:900;color:var(--gold);line-height:1}
.pkg-currency{font-size:.9rem;font-weight:600;color:var(--gray-500)}
.pkg-note{font-size:.78rem;color:var(--gray-400);margin-bottom:1.25rem}
.pkg-features{
  display:flex;flex-direction:column;gap:.5rem;
  margin-bottom:1.5rem;padding-bottom:1.5rem;
  border-bottom:1px solid var(--gray-200);
}
.pkg-features li{
  display:flex;align-items:flex-start;gap:.5rem;
  font-size:.86rem;color:var(--gray-600);line-height:1.5;
}
.pkg-features li svg{flex-shrink:0;width:15px;height:15px;margin-top:.15rem;color:var(--gold)}

/* Branches */
.branches-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:1.5rem;
}
@media(min-width:580px){.branches-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1100px){.branches-grid{grid-template-columns:repeat(4,1fr)}}

.branch-card{
  background:var(--white);
  border:1.5px solid var(--gray-200);
  border-radius:var(--radius-lg);
  padding:1.5rem;
  transition:.3s;
  position:relative;
}
.branch-card:hover{border-color:rgba(196,154,108,.45);transform:translateY(-5px);box-shadow:0 10px 30px rgba(196,154,108,.15)}
.branch-badge{
  display:inline-block;
  padding:.25rem .8rem;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  color:#fff;border-radius:20px;
  font-size:.72rem;font-weight:700;
  margin-bottom:.65rem;
}
.branch-card h3{font-size:1.05rem;font-weight:800;margin-bottom:1rem;color:var(--black)}
.branch-details{display:flex;flex-direction:column;gap:.65rem;margin-bottom:1rem}
.branch-details>div{
  display:flex;align-items:flex-start;gap:.6rem;
  font-size:.85rem;color:var(--gray-500);line-height:1.5;
}
.branch-details svg{flex-shrink:0;width:16px;height:16px;color:var(--gold);margin-top:.1rem}
.branch-details a{color:var(--gray-500);text-decoration:none;transition:.2s}
.branch-details a:hover{color:var(--gold)}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:2rem;
  max-width:1100px;
  margin:0 auto;
}
@media(min-width:1024px){
  .contact-grid{grid-template-columns:1fr 1fr;gap:3rem}
}
.contact-info{background:linear-gradient(135deg,var(--black),var(--dark));color:#fff;padding:2rem;border-radius:var(--radius-lg)}
.contact-info h2{font-size:1.6rem;font-weight:900;color:var(--gold);margin-bottom:.65rem}
.contact-info>p{font-size:.9rem;color:rgba(255,255,255,.75);line-height:1.7;margin-bottom:1.75rem}
.contact-item{
  display:flex;align-items:flex-start;gap:1rem;
  padding:1rem;
  background:rgba(255,255,255,.06);
  border-radius:10px;margin-bottom:.75rem;transition:.25s;
}
.contact-item:hover{background:rgba(196,154,108,.1)}
.contact-item svg{flex-shrink:0;width:22px;height:22px;color:var(--gold);margin-top:.1rem}
.contact-item strong{display:block;font-size:.88rem;color:var(--gold);margin-bottom:.2rem}
.contact-item span,.contact-item a{color:rgba(255,255,255,.8);font-size:.88rem;line-height:1.6;text-decoration:none}
.contact-item a:hover{color:var(--gold)}

.contact-form-wrap{background:var(--white);padding:1.75rem;border-radius:var(--radius-lg);box-shadow:var(--shadow-md)}
.contact-form-wrap h2{font-size:1.5rem;font-weight:900;margin-bottom:1.5rem}

/* Forms — universal */
.form-group{margin-bottom:1.1rem}
.form-group label{
  display:block;margin-bottom:.45rem;
  font-weight:600;font-size:.88rem;color:var(--black);
}
.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  padding:.85rem 1rem;
  border:2px solid var(--gray-200);
  border-radius:10px;
  font-size:.92rem;
  background:var(--white);
  color:var(--black);
  transition:.25s;
  appearance:none;
  -webkit-appearance:none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline:none;
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(196,154,108,.12);
}
.form-group textarea{resize:vertical;min-height:120px}
.form-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:1rem;
}
.form-grid .full{grid-column:1/-1}
@media(min-width:580px){
  .form-grid{grid-template-columns:1fr 1fr}
}

/* Submit button */
.form-group button[type="submit"],
button#submitBtn,
.booking-form-wrap button[type="submit"]{
  width:100%;
  padding:1rem;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  color:#fff;
  font-size:1rem;font-weight:700;
  border-radius:12px;
  border:none;cursor:pointer;
  box-shadow:var(--shadow-gold);
  transition:.3s;
  display:flex;align-items:center;justify-content:center;gap:.6rem;
  min-height:52px;
  font-family:inherit;
}
.form-group button[type="submit"]:hover,
button#submitBtn:hover{transform:translateY(-2px);box-shadow:0 10px 30px rgba(196,154,108,.45)}
.form-group button[type="submit"]:disabled,
button#submitBtn:disabled{opacity:.65;cursor:not-allowed;transform:none}

.alert-success{
  background:rgba(34,197,94,.1);
  border:1.5px solid rgba(34,197,94,.35);
  color:#15803d;
  padding:1rem 1.25rem;border-radius:10px;
  margin-bottom:1.25rem;font-weight:600;font-size:.92rem;
}

/* Booking */
.booking-form-wrap{
  background:var(--white);
  padding:1.75rem;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-md);
  max-width:760px;margin:0 auto;
}
.booking-form-wrap h2{font-size:1.5rem;font-weight:900;margin-bottom:1.5rem}

/* About */
.about-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:2.5rem;
  align-items:center;
}
@media(min-width:900px){
  .about-grid{grid-template-columns:1fr 1fr;gap:4rem}
}
.about-text .section-tag{margin-bottom:.65rem}
.about-text h2{font-size:clamp(1.6rem,4vw,2.5rem);font-weight:900;margin-bottom:1rem;line-height:1.3}
.about-text h2 span{color:var(--gold)}
.about-text>p{color:var(--gray-500);line-height:1.85;margin-bottom:1rem;font-size:.95rem}
.about-stats{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:.85rem;margin-top:1.5rem;
}
.about-stat{
  padding:1rem;
  background:var(--beige-light);
  border-radius:12px;text-align:center;
  border:1px solid rgba(196,154,108,.15);
}
.about-img{border-radius:var(--radius-lg);overflow:hidden}
.about-img img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:var(--radius-lg)}

/* Page Header */
.page-header{
  padding:5rem 0 3rem;
  text-align:center;
  background:linear-gradient(135deg,var(--black),var(--dark));
  color:#fff;
  position:relative;overflow:hidden;
}
.page-header h1{
  font-size:clamp(1.7rem,5vw,3rem);
  font-weight:900;
  position:relative;z-index:1;margin-bottom:.75rem;
}
.breadcrumb{
  display:flex;align-items:center;justify-content:center;
  gap:.5rem;font-size:.82rem;
  color:rgba(255,255,255,.6);flex-wrap:wrap;
  position:relative;z-index:1;
}
.breadcrumb a{color:rgba(255,255,255,.6);text-decoration:none;transition:.2s}
.breadcrumb a:hover{color:var(--gold)}
.breadcrumb span:last-child{color:var(--gold)}
@media(min-width:768px){
  .page-header{padding:7rem 0 4.5rem}
}

/* Filter bar */
.filter-bar{
  display:flex;gap:.5rem;flex-wrap:wrap;
  justify-content:center;margin-bottom:2rem;
}
.filter-btn{
  padding:.5rem 1.1rem;border-radius:25px;
  border:1.5px solid var(--gray-200);
  background:var(--white);color:var(--gray-500);
  font-weight:600;font-size:.82rem;cursor:pointer;transition:.25s;
  min-height:36px;
}
.filter-btn:hover{border-color:var(--gold);color:var(--gold)}
.filter-btn.active{
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  color:#fff;border-color:transparent;
  box-shadow:var(--shadow-gold);
}

/* CTA Section */
.cta-section{
  background:linear-gradient(135deg,var(--black),var(--dark));
  padding:4rem 0;text-align:center;
}
.cta-section h2{
  font-size:clamp(1.5rem,4vw,2.5rem);
  font-weight:900;color:#fff;margin-bottom:.85rem;
}
.cta-section p{
  font-size:.95rem;color:rgba(255,255,255,.7);
  max-width:560px;margin:0 auto 2rem;line-height:1.8;
}
.cta-buttons{
  display:flex;gap:.85rem;
  justify-content:center;flex-wrap:wrap;
}
@media(max-width:400px){
  .cta-buttons{flex-direction:column;align-items:stretch;max-width:280px;margin:0 auto}
}

/* Buttons — responsive */
.btn-primary,.btn-secondary,.btn-outline,.btn-white,.btn-gold{
  display:inline-flex;align-items:center;justify-content:center;
  gap:.5rem;
  padding:.8rem 1.75rem;
  font-size:.92rem;font-weight:700;
  border-radius:11px;transition:.3s;
  text-decoration:none;cursor:pointer;
  white-space:nowrap;min-height:44px;
}
.btn-primary{
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  color:#fff;box-shadow:var(--shadow-gold);border:none;
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 10px 35px rgba(196,154,108,.45)}
.btn-secondary{
  background:transparent;
  border:2px solid var(--gold);color:var(--gold);
}
.btn-secondary:hover{background:var(--gold);color:#fff;transform:translateY(-2px)}
.btn-outline{border:2px solid var(--gold);color:var(--gold);background:transparent}
.btn-outline:hover{background:var(--gold);color:#fff;transform:translateY(-2px)}
.btn-white{background:#fff;color:var(--black);border:none}
.btn-white:hover{background:var(--beige);transform:translateY(-2px)}
.btn-whatsapp{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.8rem 1.5rem;background:#25D366;color:#fff;
  font-weight:700;border-radius:10px;
  text-decoration:none;transition:.25s;min-height:44px;
}
.btn-whatsapp:hover{background:#128C7E;transform:translateY(-2px)}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer{background:var(--black)}
.footer-content{padding:3.5rem 0 2rem;border-bottom:1px solid rgba(255,255,255,.07)}
.footer-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:2.5rem;
}
@media(min-width:640px){.footer-grid{grid-template-columns:1fr 1fr;gap:2.5rem 2rem}}
@media(min-width:1100px){.footer-grid{grid-template-columns:1.4fr 1fr 1fr 1.1fr;gap:3rem}}

.footer-about p{color:rgba(255,255,255,.55);font-size:.86rem;line-height:1.8;margin:1rem 0 1.25rem}
.footer-logo{display:flex;align-items:center;gap:.75rem}
.footer-logo-img{width:44px;height:44px;object-fit:contain;border-radius:9px;background:rgba(255,255,255,.06);padding:3px;border:1.5px solid rgba(196,154,108,.25)}
.social-links{display:flex;gap:.6rem;flex-wrap:wrap}
.social-link{
  width:36px;height:36px;background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.1);border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.6);transition:.25s;text-decoration:none;
}
.social-link:hover{background:var(--gold);border-color:var(--gold);color:#fff;transform:translateY(-2px)}
.social-link svg{width:15px;height:15px}

.footer-grid>div>h4{
  color:#fff;font-size:.98rem;font-weight:700;
  margin-bottom:1.25rem;padding-bottom:.6rem;
  border-bottom:2px solid rgba(196,154,108,.3);
}
.footer-links{display:flex;flex-direction:column;gap:.5rem}
.footer-links a{
  display:flex;align-items:center;gap:.45rem;
  color:rgba(255,255,255,.55);font-size:.85rem;
  text-decoration:none;padding:.2rem 0;transition:.25s;
}
.footer-links a:hover{color:var(--gold)}
.footer-links a svg{width:12px;height:12px;color:var(--gold);opacity:.7;flex-shrink:0}
.footer-contact-item{
  display:flex;align-items:flex-start;gap:.65rem;
  color:rgba(255,255,255,.6);font-size:.85rem;
  margin-bottom:.8rem;line-height:1.6;
}
.footer-contact-item svg{width:16px;height:16px;color:var(--gold);flex-shrink:0;margin-top:.15rem}
.footer-contact-item a{color:rgba(255,255,255,.6);text-decoration:none;transition:.2s}
.footer-contact-item a:hover{color:var(--gold)}
.footer-bottom{padding:1.1rem 1rem}
.footer-bottom-inner{
  max-width:1380px;margin:0 auto;
  display:flex;flex-direction:column;align-items:center;
  gap:.6rem;text-align:center;
}
@media(min-width:640px){
  .footer-bottom-inner{flex-direction:row;justify-content:space-between;text-align:start}
}
.footer-bottom p{color:rgba(255,255,255,.4);font-size:.8rem}

/* ── FLOATING BUTTONS ───────────────────────────────────────── */
.float-wa,.float-call,.float-top{
  position:fixed;
  width:52px;height:52px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;transition:.3s;
  border:none;
  z-index:900;
}
.float-wa{
  bottom:5.5rem;
  right:1.25rem; /* RTL: right */
  background:linear-gradient(135deg,#25D366,#128C7E);
  color:#fff;
  box-shadow:0 4px 18px rgba(37,211,102,.4);
  animation:float 4s ease-in-out infinite;
  text-decoration:none;
}
html[dir="ltr"] .float-wa{right:auto;left:1.25rem}
.float-wa:hover{transform:scale(1.1);animation-play-state:paused}
.float-call{
  bottom:9.5rem;
  right:1.25rem;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  color:#fff;
  box-shadow:var(--shadow-gold);
  text-decoration:none;
}
html[dir="ltr"] .float-call{right:auto;left:1.25rem}
.float-call:hover{transform:scale(1.1);box-shadow:0 8px 25px rgba(196,154,108,.55)}
.float-top{
  bottom:1.25rem;
  right:1.25rem;
  background:var(--black);color:#fff;
  box-shadow:0 4px 15px rgba(0,0,0,.3);
  opacity:0;pointer-events:none;transition:opacity .3s,transform .3s;
}
html[dir="ltr"] .float-top{right:auto;left:1.25rem}
.float-top.show{opacity:1;pointer-events:auto}
.float-top:hover{transform:scale(1.1)}
.float-wa svg,.float-call svg,.float-top svg{width:22px;height:22px}

/* ── LANG SWITCH in header ──────────────────────────────────── */
.lang-switch{
  display:inline-flex;align-items:center;gap:.35rem;
  padding:.45rem .85rem;
  border:1.5px solid rgba(196,154,108,.4);
  border-radius:8px;color:var(--gold);
  font-weight:700;font-size:.8rem;
  white-space:nowrap;transition:.3s;
  text-decoration:none;background:transparent;cursor:pointer;
  flex-shrink:0;min-height:36px;
}
.lang-switch:hover{background:rgba(196,154,108,.12);border-color:var(--gold)}
.lang-switch svg{width:14px;height:14px;flex-shrink:0}

/* ── TOAST ──────────────────────────────────────────────────── */
.toast-overlay{
  position:fixed;inset:0;
  background:rgba(0,0,0,.65);
  z-index:9999;
  display:flex;align-items:center;justify-content:center;
  padding:1rem;
  opacity:0;pointer-events:none;transition:opacity .35s;
}
.toast-overlay.show{opacity:1;pointer-events:auto}
.toast-box{
  background:#fff;border-radius:var(--radius-lg);
  padding:2rem 1.5rem;
  width:100%;max-width:380px;
  text-align:center;
  box-shadow:0 15px 50px rgba(0,0,0,.25);
}
.toast-icon{
  width:64px;height:64px;border-radius:50%;
  margin:0 auto 1rem;
  display:flex;align-items:center;justify-content:center;
}
.toast-icon.success{background:linear-gradient(135deg,#22c55e,#16a34a);color:#fff}
.toast-icon.error{background:linear-gradient(135deg,#ef4444,#dc2626);color:#fff}
.toast-icon svg{width:28px;height:28px}
.toast-box h3{font-size:1.2rem;font-weight:800;margin-bottom:.4rem}
.toast-box p{color:var(--gray-500);margin-bottom:1.25rem;font-size:.9rem;line-height:1.6}
.toast-close{
  padding:.75rem 2rem;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  color:#fff;font-weight:700;border-radius:10px;font-size:.9rem;
  cursor:pointer;border:none;font-family:inherit;transition:.25s;
}
.toast-close:hover{transform:translateY(-2px);box-shadow:var(--shadow-gold)}

/* ── PAGINATION ─────────────────────────────────────────────── */
.pagination-wrap{
  display:flex;justify-content:center;
  margin-top:2.5rem;flex-wrap:wrap;gap:.35rem;
}
.pagination-wrap nav{display:flex;flex-wrap:wrap;gap:.35rem;justify-content:center}

/* ── SKIP LINK ──────────────────────────────────────────────── */
.skip-link{
  position:absolute;
  top:-100px;right:1rem;
  z-index:99999;
  background:var(--gold);color:#fff;
  padding:.5rem 1rem;border-radius:0 0 8px 8px;
  font-weight:700;transition:top .3s;text-decoration:none;
}
.skip-link:focus{top:0}

/* ── LTR (English) overrides ───────────────────────────────── */
html[dir="ltr"] body{direction:ltr;text-align:left}
html[dir="ltr"] .footer-grid>div>h4::after{right:auto;left:0}
html[dir="ltr"] .footer-links a:hover{padding-right:0;padding-left:.3rem}
html[dir="ltr"] .contact-item:hover{transform:translateX(4px)}
html[dir="ltr"] .sb-link{border-right:none;border-left:3px solid transparent}
html[dir="ltr"] .sb-link:hover,html[dir="ltr"] .sb-link.active{border-left-color:var(--gold)}
html[dir="ltr"] .breadcrumb svg{transform:scaleX(-1)}
html[dir="ltr"] .read-more svg{transform:none}

/* ── PRINT ──────────────────────────────────────────────────── */
@media print{
  .navbar,.sidebar,.sb-overlay,.float-wa,.float-call,.float-top,.cta-section,.footer{display:none!important}
  body{font-size:12pt;color:#000}
  a{color:#000;text-decoration:underline}
  .container{max-width:100%;padding:0}
}

/* ── DARK MODE (optional) ───────────────────────────────────── */
@media(prefers-color-scheme:dark){
  /* uncomment if you want dark mode support
  :root{
    --black:#fff;--white:#111;
    --gray-100:#1e1e1e;--gray-200:#2a2a2a;
    --gray-500:#9ca3af;--gray-600:#d1d5db;
  }
  */
}