/* ═══════════════════════════════════════════════════════════
   مصنع الأحلام للمطابخ والنجارة
   هوية بصرية كاملة — النسخة الديناميكية Laravel
   الألوان الأساسية: ذهبي #C9A96E | داكن #2E2E2E | كريمي #F5E6D3
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

/* ══ Variables ══ */
:root {
  --gold:       #C9A96E;
  --gold-hover: #B8956A;
  --gold-dark:  #8B5E3C;
  --gold-pale:  #F5E6D3;
  --dark:       #2E2E2E;
  --dark-2:     #1E1E1E;
  --dark-3:     #3E3E3E;
  --white:      #FFFFFF;
  --gray-100:   #F9F9F9;
  --gray-200:   #F1F1F1;
  --gray-300:   #E5E5E5;
  --gray-400:   #D1D1D1;
  --gray-500:   #9E9E9E;
  --gray-600:   #6B6B6B;
  --gray-700:   #4A4A4A;
  --whatsapp:   #25D366;
  --whatsapp-h: #20BA5A;

  --font:     'Cairo', sans-serif;
  --nav-h:    120px;
  --nav-h-sm: 70px;
  --r:        8px;
  --r-lg:     12px;
  --r-xl:     16px;
  --r-full:   999px;

  --sh-sm: 0 1px 6px rgba(0,0,0,.08);
  --sh:    0 4px 20px rgba(0,0,0,.10);
  --sh-lg: 0 10px 40px rgba(0,0,0,.15);
  --sh-xl: 0 20px 60px rgba(0,0,0,.20);
  --sh-gold: 0 4px 20px rgba(201,169,110,.35);

  --ease: cubic-bezier(.4,0,.2,1);
  --t: .3s;
}

/* ══ Reset ══ */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { font-size:16px; scroll-behavior:smooth; direction:rtl; }
body { font-family:var(--font); background:var(--white); color:var(--dark); line-height:1.7; overflow-x:hidden; -webkit-font-smoothing:antialiased; }
img { max-width:100%; height:auto; display:block; }
a  { color:inherit; text-decoration:none; }
ul { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }

/* Custom scrollbar */
::-webkit-scrollbar { width:10px; }
::-webkit-scrollbar-track { background:var(--gray-200); }
::-webkit-scrollbar-thumb { background:var(--gold); border-radius:5px; }
::-webkit-scrollbar-thumb:hover { background:var(--gold-hover); }

/* ══ Typography ══ */
h1 { font-size:clamp(2rem,5vw,3.5rem); font-weight:800; line-height:1.2; }
h2 { font-size:clamp(1.6rem,3.5vw,2.4rem); font-weight:700; line-height:1.3; }
h3 { font-size:clamp(1.1rem,2vw,1.4rem); font-weight:700; }

/* ══ Layout ══ */
.container { max-width:1280px; margin:0 auto; padding:0 1.5rem; }
.section    { padding:5rem 0; }
.section-pale { background:var(--gold-pale); }
.section-dark { background:var(--dark); }
.section-dark2 { background:linear-gradient(135deg,var(--dark),var(--dark-2)); }

/* ══ Section Header ══ */
.section-header { text-align:center; margin-bottom:3rem; }
.section-header h2 { color:var(--dark); margin-bottom:.75rem; }
.section-header h2 span { color:var(--gold); }
.section-header.on-dark h2 { color:var(--white); }
.section-header p { color:var(--gray-600); font-size:1.05rem; }
.section-header.on-dark p { color:rgba(255,255,255,.7); }

/* Gold divider line */
.gold-line {
  width:60px; height:3px;
  background:linear-gradient(90deg,var(--gold),var(--gold-dark));
  margin:.75rem auto; border-radius:var(--r-full);
}

/* ══ Animations ══ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes pulse {
  0%,100% { transform:scale(1); }
  50%      { transform:scale(1.08); }
}
@keyframes scrollDot {
  0%   { transform:translateY(0); opacity:1; }
  80%  { transform:translateY(14px); opacity:0; }
  100% { transform:translateY(0); opacity:1; }
}

.fade-in { animation:fadeUp .6s var(--ease) both; }

/* Scroll reveal */
.rv { opacity:0; transform:translateY(24px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
.rv.in { opacity:1; transform:none; }
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}.d4{transition-delay:.4s}

/* ══ Buttons ══ */
.btn {
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.85rem 1.75rem; border-radius:var(--r);
  font-family:var(--font); font-size:.95rem; font-weight:600;
  transition:all var(--t) var(--ease); white-space:nowrap;
  border:2px solid transparent; cursor:pointer;
}
.btn-gold    { background:var(--gold); color:var(--white); border-color:var(--gold); }
.btn-gold:hover { background:var(--gold-hover); border-color:var(--gold-hover); transform:translateY(-2px); box-shadow:var(--sh-gold); }
.btn-dark    { background:var(--dark); color:var(--white); border-color:var(--dark); }
.btn-dark:hover { background:var(--dark-3); border-color:var(--dark-3); transform:translateY(-2px); box-shadow:var(--sh); }
.btn-white   { background:var(--white); color:var(--dark); border-color:var(--white); }
.btn-white:hover { background:var(--gray-100); transform:translateY(-2px); box-shadow:var(--sh); }
.btn-outline-gold { background:transparent; color:var(--gold); border-color:var(--gold); }
.btn-outline-gold:hover { background:var(--gold); color:var(--white); transform:translateY(-2px); }
.btn-outline-white { background:transparent; color:var(--white); border-color:rgba(255,255,255,.6); }
.btn-outline-white:hover { background:var(--white); color:var(--dark); transform:translateY(-2px); }
.btn-whatsapp { background:var(--whatsapp); color:var(--white); border-color:var(--whatsapp); }
.btn-whatsapp:hover { background:var(--whatsapp-h); border-color:var(--whatsapp-h); transform:translateY(-2px); box-shadow:0 4px 20px rgba(37,211,102,.35); }
.btn-lg { padding:1rem 2.25rem; font-size:1.05rem; }
.btn-sm { padding:.55rem 1.25rem; font-size:.88rem; }

/* ════════════════════════════════════
   TOP BAR
   ════════════════════════════════════ */
.top-bar {
  background:var(--dark);
  color:var(--white);
  padding:.55rem 0;
  font-size:.85rem;
}
.top-bar-inner {
  display:flex; align-items:center; justify-content:space-between;
  max-width:1280px; margin:0 auto; padding:0 1.5rem;
}
.top-bar-phone {
  display:flex; align-items:center; gap:.5rem;
  color:var(--white); font-weight:600;
}
.top-bar-phone svg { color:var(--gold); }
.top-bar-center { color:rgba(255,255,255,.75); }

/* ════════════════════════════════════
   NAVBAR
   ════════════════════════════════════ */
.navbar-wrap {
  position:fixed; top:0; right:0; left:0; z-index:1000;
  transition:box-shadow var(--t) var(--ease);
}
.navbar-wrap.scrolled { box-shadow:var(--sh-lg); }

.top-bar-wrap { transition:all var(--t) var(--ease); }
.navbar-wrap.scrolled .top-bar-wrap { display:none; }

.navbar {
  background:var(--white);
  border-bottom:1px solid var(--gray-300);
  transition:all var(--t) var(--ease);
}

.nav-inner {
  display:flex; align-items:center; justify-content:space-between;
  max-width:1280px; margin:0 auto; padding:0 1.5rem;
  height:72px; transition:height var(--t) var(--ease);
}
.navbar-wrap.scrolled .nav-inner { height:62px; }

/* Logo */
.logo { display:flex; align-items:center; gap:.75rem; flex-shrink:0; }
.logo-icon {
  width:46px; height:46px; border-radius:var(--r);
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; box-shadow:0 2px 10px rgba(201,169,110,.3);
}
.logo-icon img { width:100%; height:100%; object-fit:cover; border-radius:var(--r); }
.logo-icon-letter { color:var(--white); font-size:1.4rem; font-weight:900; }
.logo-text { display:flex; flex-direction:column; line-height:1.2; }
.logo-name { font-size:1.05rem; font-weight:800; color:var(--dark); }
.logo-sub  { font-size:.72rem; color:var(--gold); font-weight:600; }

/* Desktop Nav Links */
.nav-links { display:flex; align-items:center; gap:1.75rem; }
.nav-links a {
  color:var(--dark); font-size:.9rem; font-weight:600;
  position:relative; padding:.35rem 0;
  transition:color var(--t) var(--ease);
}
.nav-links a::after {
  content:''; position:absolute; bottom:-2px; right:0; left:0;
  height:2px; background:var(--gold); border-radius:var(--r-full);
  transform:scaleX(0); transition:transform var(--t) var(--ease);
}
.nav-links a:hover, .nav-links a.active { color:var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform:scaleX(1); }

/* Nav Actions */
.nav-actions { display:flex; align-items:center; gap:.6rem; }

/* Hamburger */
.menu-toggle {
  display:none; flex-direction:column; justify-content:center; align-items:center;
  width:40px; height:40px; gap:5px; border-radius:var(--r);
  border:1.5px solid var(--gray-300); background:transparent; cursor:pointer;
}
.hb { width:22px; height:2px; background:var(--dark); border-radius:2px; transition:all var(--t) var(--ease); }

/* ════════════════════════════════════
   MOBILE MENU
   ════════════════════════════════════ */
.mobile-menu {
  max-height:0; overflow:hidden;
  transition:max-height .4s var(--ease);
  background:var(--white);
  border-top:1px solid var(--gray-200);
  box-shadow:var(--sh);
}
.mobile-menu.active { max-height:600px; }
.mobile-menu-inner { max-width:1280px; margin:0 auto; padding:1rem 1.5rem; }
.mobile-menu nav { display:flex; flex-direction:column; gap:.25rem; margin-bottom:1rem; }
.mobile-menu nav a {
  display:block; padding:.75rem 1rem; border-radius:var(--r);
  color:var(--dark); font-weight:600; font-size:.95rem;
  transition:all var(--t) var(--ease);
}
.mobile-menu nav a:hover,.mobile-menu nav a.active { color:var(--gold); background:var(--gold-pale); }
.mobile-menu-actions { display:flex; flex-direction:column; gap:.65rem; padding-top:1rem; border-top:1px solid var(--gray-200); }

/* ════════════════════════════════════
   HERO
   ════════════════════════════════════ */
.hero {
  position:relative; min-height:calc(100vh - var(--nav-h));
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,var(--dark),var(--dark-2));
  overflow:hidden; margin-top:var(--nav-h);
}
.hero-bg {
  position:absolute; inset:0; z-index:0;
}
.hero-bg img { width:100%; height:100%; object-fit:cover; opacity:.2; }
.hero-overlay { position:absolute; inset:0; z-index:1; background:linear-gradient(135deg,rgba(46,46,46,.85) 0%,rgba(30,30,30,.7) 100%); }
.hero-content {
  position:relative; z-index:2;
  max-width:800px; margin:0 auto; padding:4rem 1.5rem;
  text-align:center;
}
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:.5rem;
  background:rgba(201,169,110,.15); border:1px solid rgba(201,169,110,.4);
  color:var(--gold); font-size:.82rem; font-weight:700;
  padding:.4rem 1.1rem; border-radius:var(--r-full); margin-bottom:1.5rem;
  letter-spacing:.06em; text-transform:uppercase;
}
.hero-eyebrow::before { content:''; width:6px; height:6px; background:var(--gold); border-radius:50%; animation:pulse 2s infinite; }
.hero h1 { color:var(--white); margin-bottom:1.25rem; font-size:clamp(2.2rem,5vw,3.8rem); }
.hero h1 span { color:var(--gold); }
.hero-sub { color:rgba(255,255,255,.78); font-size:1.1rem; line-height:1.85; max-width:580px; margin:0 auto 2.5rem; }
.hero-actions { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.hero-scroll {
  position:absolute; bottom:2rem; left:50%; transform:translateX(-50%);
  z-index:3; opacity:.7;
}
.hero-scroll-inner { width:24px; height:42px; border:2px solid rgba(201,169,110,.5); border-radius:12px; display:flex; align-items:flex-start; justify-content:center; padding-top:5px; }
.hero-scroll-dot { width:4px; height:8px; background:var(--gold); border-radius:2px; animation:scrollDot 2s infinite; }

/* ════════════════════════════════════
   STATS BAR
   ════════════════════════════════════ */
.stats-bar { background:var(--dark); padding:2.5rem 0; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
.stat-item { text-align:center; padding:1.5rem 1rem; border:1px solid rgba(201,169,110,.2); border-radius:var(--r-lg); transition:all var(--t) var(--ease); }
.stat-item:hover { border-color:rgba(201,169,110,.5); background:rgba(201,169,110,.05); transform:translateY(-3px); }
.stat-number { font-size:2.2rem; font-weight:900; color:var(--gold); line-height:1; margin-bottom:.4rem; }
.stat-label  { color:rgba(255,255,255,.65); font-size:.88rem; font-weight:500; }

/* ════════════════════════════════════
   SERVICE CARDS
   ════════════════════════════════════ */
.services-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:1.5rem; }
.service-card {
  background:var(--white); border-radius:var(--r-xl);
  border:1px solid var(--gray-200); overflow:hidden;
  box-shadow:var(--sh-sm);
  transition:all var(--t) var(--ease);
}
.service-card:hover { box-shadow:var(--sh-xl); border-color:var(--gold); transform:translateY(-6px); }
.service-card-img { height:200px; overflow:hidden; position:relative; background:var(--gray-200); }
.service-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.service-card:hover .service-card-img img { transform:scale(1.08); }
.service-card-body { padding:1.5rem; }
.service-card-body h3 { font-size:1.1rem; font-weight:700; color:var(--dark); margin-bottom:.4rem; }
.service-card-body p  { color:var(--gray-600); font-size:.88rem; margin-bottom:1rem; line-height:1.65; }
.service-features { display:flex; flex-direction:column; gap:.4rem; margin-bottom:1.1rem; }
.service-features li { display:flex; align-items:center; gap:.5rem; font-size:.85rem; color:var(--gray-700); }
.service-features li svg { color:var(--gold); flex-shrink:0; width:14px; height:14px; }
.service-price { border-top:1px solid var(--gray-200); padding-top:1rem; color:var(--gold); font-weight:700; font-size:.95rem; }

/* ════════════════════════════════════
   WHY CHOOSE US
   ════════════════════════════════════ */
.why-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(250px,1fr)); gap:1.25rem; }
.why-card {
  background:var(--white); border-radius:var(--r-xl); padding:1.75rem 1.5rem;
  box-shadow:var(--sh-sm); border:1px solid var(--gray-200);
  transition:all var(--t) var(--ease);
}
.why-card:hover { box-shadow:var(--sh-lg); border-color:var(--gold); transform:translateY(-4px); }
.why-icon {
  width:50px; height:50px; border-radius:var(--r-lg); margin-bottom:1rem;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 3px 12px rgba(201,169,110,.3);
}
.why-icon svg { color:var(--white); width:22px; height:22px; }
.why-card h3 { font-size:1rem; font-weight:700; color:var(--dark); margin-bottom:.4rem; }
.why-card p  { color:var(--gray-600); font-size:.88rem; line-height:1.65; }

/* ════════════════════════════════════
   PRODUCTS / KITCHENS GRID
   ════════════════════════════════════ */
.products-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:1.5rem; }
.product-card {
  background:var(--white); border-radius:var(--r-xl); overflow:hidden;
  border:1px solid var(--gray-200); box-shadow:var(--sh-sm);
  transition:all var(--t) var(--ease);
}
.product-card:hover { box-shadow:var(--sh-xl); border-color:var(--gold); transform:translateY(-5px); }
.product-img { position:relative; height:230px; overflow:hidden; background:var(--gray-200); }
.product-img img { width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.product-card:hover .product-img img { transform:scale(1.06); }
.product-badge {
  position:absolute; top:.75rem; right:.75rem;
  background:var(--gold); color:var(--white);
  font-size:.72rem; font-weight:700; padding:.3rem .75rem;
  border-radius:var(--r-full);
}
.product-body { padding:1.25rem; }
.product-body h3 { font-size:1rem; font-weight:700; color:var(--dark); margin-bottom:.35rem; }
.product-body p  { color:var(--gray-600); font-size:.85rem; line-height:1.6; margin-bottom:.75rem; }
.product-price { color:var(--gold); font-weight:700; font-size:.95rem; margin-bottom:.85rem; display:block; }
.product-btn {
  display:flex; align-items:center; justify-content:center;
  background:var(--gold-pale); color:var(--dark); font-size:.85rem; font-weight:700;
  padding:.6rem; border-radius:var(--r); transition:all var(--t) var(--ease);
}
.product-card:hover .product-btn { background:var(--gold); color:var(--white); }

/* ════════════════════════════════════
   PACKAGES / PRICING
   ════════════════════════════════════ */
.packages-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:1.5rem; }
.package-card {
  background:rgba(255,255,255,.05); border:1px solid rgba(201,169,110,.2);
  border-radius:var(--r-xl); padding:2rem 1.75rem;
  transition:all var(--t) var(--ease); position:relative;
}
.package-card:hover { border-color:rgba(201,169,110,.5); background:rgba(201,169,110,.06); transform:translateY(-4px); }
.package-card.popular {
  border-color:var(--gold);
  background:rgba(201,169,110,.08);
  box-shadow:0 0 0 1px var(--gold),var(--sh-gold);
}
.package-badge {
  position:absolute; top:-13px; right:50%; transform:translateX(50%);
  background:var(--gold); color:var(--white); font-size:.75rem; font-weight:700;
  padding:.35rem 1rem; border-radius:var(--r-full); white-space:nowrap;
}
.package-card h3  { color:var(--white); font-size:1.2rem; font-weight:700; margin-bottom:1rem; margin-top:.5rem; }
.package-price    { color:var(--gold); font-size:2rem; font-weight:900; line-height:1; }
.package-price span { font-size:1rem; font-weight:600; opacity:.8; }
.package-note     { color:rgba(255,255,255,.5); font-size:.8rem; margin-top:.25rem; margin-bottom:1.25rem; }
.package-items    { display:flex; flex-direction:column; gap:.6rem; margin-bottom:1.75rem; }
.package-items li { display:flex; align-items:center; gap:.55rem; color:rgba(255,255,255,.8); font-size:.88rem; }
.package-items li svg { color:var(--gold); flex-shrink:0; width:14px; height:14px; }

/* ════════════════════════════════════
   PROJECTS GALLERY
   ════════════════════════════════════ */
.projects-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:1.25rem; }
.project-card { border-radius:var(--r-xl); overflow:hidden; cursor:pointer; display:block; }
.project-img  { position:relative; height:260px; overflow:hidden; background:var(--gray-200); }
.project-img img { width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.project-card:hover .project-img img { transform:scale(1.08); }
.project-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top,rgba(46,46,46,.9) 0%,transparent 55%);
  display:flex; flex-direction:column; align-items:flex-start; justify-content:flex-end;
  padding:1.25rem; opacity:0; transition:opacity var(--t) var(--ease);
}
.project-card:hover .project-overlay { opacity:1; }
.project-cat   { background:var(--gold); color:var(--white); font-size:.72rem; font-weight:700; padding:.25rem .7rem; border-radius:var(--r-full); margin-bottom:.5rem; }
.project-title { color:var(--white); font-weight:700; font-size:1rem; }

/* ════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════ */
.testimonials-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:1.5rem; }
.testimonial-card {
  background:var(--white); border-radius:var(--r-xl); padding:1.75rem;
  border:1px solid var(--gray-200); box-shadow:var(--sh-sm);
  transition:all var(--t) var(--ease);
}
.testimonial-card:hover { box-shadow:var(--sh-lg); border-color:var(--gold); transform:translateY(-4px); }
.t-stars { display:flex; gap:.2rem; margin-bottom:1rem; }
.t-stars svg { width:18px; height:18px; color:var(--gold); fill:var(--gold); }
.t-text { color:var(--gray-700); font-size:.92rem; line-height:1.8; margin-bottom:1.25rem; font-style:italic; }
.t-author { display:flex; align-items:center; gap:.85rem; padding-top:1rem; border-top:1px solid var(--gray-200); }
.t-avatar {
  width:44px; height:44px; border-radius:50%; overflow:hidden;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  display:flex; align-items:center; justify-content:center;
  color:var(--white); font-weight:700; font-size:.95rem; flex-shrink:0;
}
.t-avatar img { width:100%; height:100%; object-fit:cover; }
.t-name { color:var(--dark); font-weight:700; font-size:.9rem; }
.t-role { color:var(--gray-500); font-size:.78rem; }

/* ════════════════════════════════════
   FAQ
   ════════════════════════════════════ */
.faq-list { display:flex; flex-direction:column; gap:.85rem; max-width:820px; margin:0 auto; }
.faq-item { background:var(--white); border:1px solid var(--gray-200); border-radius:var(--r-lg); overflow:hidden; transition:border-color var(--t) var(--ease); }
.faq-item:hover { border-color:var(--gold); }
.faq-q {
  width:100%; display:flex; align-items:center; justify-content:space-between;
  gap:1rem; padding:1.2rem 1.5rem; text-align:right;
  font-family:var(--font); font-size:.95rem; font-weight:700; color:var(--dark);
  cursor:pointer; transition:color var(--t) var(--ease); background:none; border:none;
}
.faq-q:hover,.faq-q.open { color:var(--gold); }
.faq-q-icon {
  width:28px; height:28px; flex-shrink:0; border-radius:50%;
  background:var(--gold-pale); display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; color:var(--gold); transition:all var(--t) var(--ease); font-weight:700;
}
.faq-q.open .faq-q-icon { background:var(--gold); color:var(--white); transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.faq-a.open { max-height:400px; }
.faq-a p { padding:.25rem 1.5rem 1.5rem; color:var(--gray-600); font-size:.92rem; line-height:1.8; }

/* ════════════════════════════════════
   BLOG
   ════════════════════════════════════ */
.blog-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:1.5rem; }
.blog-card {
  background:var(--white); border-radius:var(--r-xl); overflow:hidden;
  border:1px solid var(--gray-200); box-shadow:var(--sh-sm);
  transition:all var(--t) var(--ease);
}
.blog-card:hover { box-shadow:var(--sh-xl); border-color:var(--gold); transform:translateY(-5px); }
.blog-img { position:relative; height:210px; overflow:hidden; background:var(--gray-200); }
.blog-img img { width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.blog-card:hover .blog-img img { transform:scale(1.06); }
.blog-cat { position:absolute; top:.75rem; right:.75rem; background:var(--dark); color:var(--white); font-size:.72rem; font-weight:700; padding:.3rem .7rem; border-radius:var(--r-full); }
.blog-body { padding:1.35rem; }
.blog-meta { display:flex; gap:1rem; color:var(--gray-500); font-size:.78rem; margin-bottom:.6rem; }
.blog-body h3 { font-size:1rem; font-weight:700; color:var(--dark); margin-bottom:.4rem; line-height:1.45; }
.blog-body p  { color:var(--gray-600); font-size:.88rem; line-height:1.65; margin-bottom:.85rem; }
.blog-link { color:var(--gold); font-size:.85rem; font-weight:700; transition:color .15s; }
.blog-link:hover { color:var(--gold-hover); }
.blog-layout { display:grid; grid-template-columns:1fr 320px; gap:2.5rem; align-items:start; }
.blog-sidebar { display:flex; flex-direction:column; gap:1.5rem; position:sticky; top:calc(var(--nav-h-sm) + 1rem); }
.sidebar-widget { background:var(--white); border:1px solid var(--gray-200); border-radius:var(--r-xl); padding:1.5rem; }
.sidebar-widget h3 { font-size:1rem; font-weight:700; margin-bottom:1rem; padding-bottom:.75rem; border-bottom:2px solid var(--gold-pale); color:var(--dark); }
.sidebar-post { display:flex; gap:.8rem; padding:.75rem 0; border-bottom:1px solid var(--gray-100); }
.sidebar-post:last-child { border-bottom:none; }
.sidebar-post img { width:62px; height:48px; object-fit:cover; border-radius:var(--r); flex-shrink:0; }
.sidebar-post h4 { font-size:.82rem; font-weight:700; line-height:1.4; color:var(--dark); margin-bottom:.2rem; }
.sidebar-post span { font-size:.74rem; color:var(--gray-500); }
.post-tag { display:inline-flex; align-items:center; padding:.3rem .75rem; background:var(--gold-pale); color:var(--dark); font-size:.78rem; font-weight:600; border-radius:var(--r-full); transition:all .15s; }
.post-tag:hover { background:var(--gold); color:var(--white); }

/* Post Detail */
.post-detail h1 { font-size:clamp(1.5rem,3.5vw,2.3rem); font-weight:800; margin-bottom:1rem; color:var(--dark); line-height:1.35; }
.post-meta { display:flex; flex-wrap:wrap; gap:1.25rem; color:var(--gray-500); font-size:.85rem; margin-bottom:1.5rem; padding-bottom:1rem; border-bottom:1px solid var(--gray-200); }
.post-feat-img { border-radius:var(--r-lg); overflow:hidden; margin-bottom:2rem; }
.post-feat-img img { width:100%; }
.post-body { color:var(--gray-700); font-size:.96rem; line-height:1.95; }
.post-body h2,.post-body h3 { color:var(--dark); margin:1.75rem 0 .75rem; font-weight:700; }
.post-body p { margin-bottom:1.25rem; }
.post-body img { border-radius:var(--r-lg); margin:1.5rem 0; }
.post-tags { display:flex; flex-wrap:wrap; gap:.5rem; margin-top:2rem; padding-top:1.5rem; border-top:1px solid var(--gray-200); }
.share-btns { display:flex; align-items:center; gap:.75rem; margin-top:1.5rem; flex-wrap:wrap; }
.share-btns span { font-size:.88rem; font-weight:600; color:var(--gray-600); }
.share-btn { padding:.4rem .85rem; border-radius:var(--r); font-size:.82rem; font-weight:700; transition:all .15s; border:none; cursor:pointer; font-family:var(--font); }
.share-btn.tw { background:#000; color:#fff; }
.share-btn.wa { background:#25D366; color:#fff; }
.share-btn.cp { background:var(--gray-200); color:var(--dark); }
.share-btn:hover { transform:translateY(-1px); box-shadow:var(--sh-sm); }

/* ════════════════════════════════════
   PAGE HEADER
   ════════════════════════════════════ */
.page-header {
  position:relative; background:linear-gradient(135deg,var(--dark),var(--dark-2));
  text-align:center; padding:calc(var(--nav-h) + 3rem) 1.5rem 3.5rem; overflow:hidden;
  margin-top:0;
}
.page-header-img { position:absolute; inset:0; }
.page-header-img img { width:100%; height:100%; object-fit:cover; opacity:.15; }
.page-header-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(46,46,46,.9),rgba(30,30,30,.75)); }
.page-header-content { position:relative; z-index:1; }
.page-header h1 { color:var(--white); margin-bottom:.6rem; }
.page-header p  { color:rgba(255,255,255,.75); font-size:1.05rem; }
.breadcrumb { display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:.45rem; margin-top:1.25rem; }
.breadcrumb a    { color:rgba(201,169,110,.9); font-size:.85rem; font-weight:600; transition:color .15s; }
.breadcrumb a:hover { color:var(--gold); }
.breadcrumb span { color:rgba(255,255,255,.45); font-size:.82rem; }

/* ════════════════════════════════════
   FILTER BAR
   ════════════════════════════════════ */
.filter-bar { display:flex; flex-wrap:wrap; gap:.65rem; margin-bottom:2rem; }
.filter-btn {
  padding:.5rem 1.2rem; border-radius:var(--r-full); font-size:.85rem; font-weight:700;
  border:1.5px solid var(--gray-300); color:var(--gray-600);
  transition:all .15s; cursor:pointer; background:var(--white);
}
.filter-btn:hover,.filter-btn.active { background:var(--dark); color:var(--white); border-color:var(--dark); }

/* Kitchen Finder */
.kitchen-finder { background:var(--white); border:1px solid var(--gray-200); border-radius:var(--r-xl); padding:2rem; margin-bottom:2.5rem; box-shadow:var(--sh-sm); }
.kitchen-finder h3 { font-size:1.05rem; font-weight:700; margin-bottom:1.25rem; color:var(--dark); }
.finder-fields { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:.75rem; }
.finder-fields select,.finder-fields input {
  width:100%; padding:.75rem 1rem; border:1.5px solid var(--gray-300);
  border-radius:var(--r); font-family:var(--font); font-size:.9rem;
  color:var(--dark); background:var(--gray-100); transition:border-color .15s; outline:none;
}
.finder-fields select:focus,.finder-fields input:focus { border-color:var(--gold); background:var(--white); }
.finder-actions { display:flex; gap:.75rem; flex-wrap:wrap; align-items:center; margin-top:.75rem; }

/* ════════════════════════════════════
   CONTACT
   ════════════════════════════════════ */
.contact-wrapper { display:grid; grid-template-columns:1fr 360px; gap:2.5rem; align-items:start; }
.contact-form { background:var(--white); border:1px solid var(--gray-200); border-radius:var(--r-xl); padding:2.5rem; box-shadow:var(--sh-sm); }
.contact-form h3 { font-size:1.2rem; font-weight:700; margin-bottom:1.75rem; color:var(--dark); }
.form-group { margin-bottom:1.25rem; }
.form-group label { display:block; font-size:.88rem; font-weight:700; color:var(--gray-700); margin-bottom:.45rem; }
.form-group input,.form-group select,.form-group textarea {
  width:100%; padding:.82rem 1rem; border:1.5px solid var(--gray-300);
  border-radius:var(--r); font-family:var(--font); font-size:.92rem;
  color:var(--dark); background:var(--gray-100); transition:all .15s; outline:none; resize:vertical;
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus {
  border-color:var(--gold); background:var(--white); box-shadow:0 0 0 3px rgba(201,169,110,.12);
}
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.contact-info { background:linear-gradient(135deg,var(--dark),var(--dark-2)); border-radius:var(--r-xl); padding:2.25rem; color:var(--white); }
.contact-info h3 { color:var(--white); font-size:1.15rem; font-weight:700; margin-bottom:1.5rem; padding-bottom:1rem; border-bottom:1px solid rgba(201,169,110,.25); }
.contact-info-item { display:flex; align-items:flex-start; gap:.75rem; margin-bottom:1.25rem; font-size:.9rem; }
.contact-info-item svg { color:var(--gold); flex-shrink:0; margin-top:.1rem; }
.contact-info-item span,.contact-info-item a { color:rgba(255,255,255,.8); line-height:1.55; }
.contact-info-item a:hover { color:var(--gold); }
.contact-info-item strong { color:var(--white); font-weight:700; display:block; margin-bottom:.15rem; font-size:.85rem; }

/* ════════════════════════════════════
   BOOKING
   ════════════════════════════════════ */
.booking-wrapper { display:grid; grid-template-columns:1fr 360px; gap:2.5rem; align-items:start; }
.booking-sidebar { background:linear-gradient(135deg,var(--dark),var(--dark-2)); border-radius:var(--r-xl); padding:2.25rem; position:sticky; top:calc(var(--nav-h-sm) + 1rem); }
.booking-sidebar h3 { color:var(--white); font-size:1.1rem; font-weight:700; margin-bottom:1.5rem; padding-bottom:1rem; border-bottom:1px solid rgba(201,169,110,.25); }
.booking-info-item { display:flex; align-items:flex-start; gap:.75rem; margin-bottom:1.25rem; font-size:.9rem; }
.booking-info-item svg { color:var(--gold); flex-shrink:0; margin-top:.1rem; }
.booking-info-item span { color:rgba(255,255,255,.8); line-height:1.55; }
.booking-info-item strong { color:var(--white); font-weight:700; display:block; margin-bottom:.15rem; font-size:.85rem; }

/* ════════════════════════════════════
   BRANCHES
   ════════════════════════════════════ */
.branches-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:1.5rem; }
.branch-card { background:var(--white); border:1px solid var(--gray-200); border-radius:var(--r-xl); padding:2rem; transition:all var(--t) var(--ease); }
.branch-card:hover { box-shadow:var(--sh); border-color:var(--gold); transform:translateY(-3px); }
.branch-card h3 { font-size:1.05rem; font-weight:700; color:var(--dark); margin-bottom:1rem; display:flex; align-items:center; gap:.5rem; }
.branch-card h3 svg { color:var(--gold); }
.branch-main-badge { display:inline-flex; align-items:center; gap:.35rem; background:var(--gold); color:var(--white); font-size:.72rem; font-weight:700; padding:.28rem .7rem; border-radius:var(--r-full); margin-bottom:.75rem; }
.branch-info { display:flex; flex-direction:column; gap:.6rem; }
.branch-info-item { display:flex; align-items:flex-start; gap:.6rem; font-size:.88rem; color:var(--gray-700); }
.branch-info-item svg { color:var(--gold); flex-shrink:0; margin-top:.1rem; width:15px; height:15px; }

/* ════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════ */
.cta-section { background:linear-gradient(135deg,var(--dark),var(--dark-2)); padding:5rem 1.5rem; text-align:center; position:relative; overflow:hidden; }
.cta-section::before { content:''; position:absolute; top:-40%; right:-5%; width:35%; height:180%; background:radial-gradient(ellipse,rgba(201,169,110,.08) 0%,transparent 70%); pointer-events:none; }
.cta-section .container { position:relative; z-index:1; }
.cta-section h2 { color:var(--white); margin-bottom:1rem; }
.cta-section p  { color:rgba(255,255,255,.72); font-size:1.05rem; max-width:520px; margin:0 auto 2rem; }
.cta-actions { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

/* ════════════════════════════════════
   NEWSLETTER
   ════════════════════════════════════ */
.newsletter { border-top:1px solid rgba(201,169,110,.2); margin-top:3rem; padding-top:3rem; }
.newsletter-inner { display:flex; align-items:center; justify-content:space-between; gap:2rem; flex-wrap:wrap; }
.newsletter-text h4 { color:var(--white); font-size:1.05rem; font-weight:700; margin-bottom:.3rem; }
.newsletter-text p  { color:rgba(255,255,255,.6); font-size:.88rem; }
.newsletter-form { display:flex; gap:.6rem; flex:1; min-width:260px; flex-wrap:wrap; }
.newsletter-input { flex:1; min-width:200px; padding:.75rem 1.1rem; border:1.5px solid rgba(201,169,110,.25); border-radius:var(--r-full); font-family:var(--font); font-size:.9rem; color:var(--white); background:rgba(255,255,255,.07); outline:none; transition:border-color .15s; }
.newsletter-input::placeholder { color:rgba(255,255,255,.4); }
.newsletter-input:focus { border-color:var(--gold); background:rgba(255,255,255,.1); }
.newsletter-btn { display:flex; align-items:center; gap:.45rem; background:var(--gold); color:var(--white); font-weight:700; font-size:.88rem; padding:.75rem 1.5rem; border-radius:var(--r-full); border:none; cursor:pointer; font-family:var(--font); transition:all .15s; white-space:nowrap; }
.newsletter-btn:hover { background:var(--gold-hover); transform:translateY(-1px); box-shadow:var(--sh-gold); }

/* ════════════════════════════════════
   FOOTER
   ════════════════════════════════════ */
.footer { background:var(--dark); color:rgba(255,255,255,.72); }
.footer-main { padding:3.5rem 0 2rem; }
.footer-grid { display:grid; grid-template-columns:1.7fr 1fr 1fr 1.2fr; gap:2.5rem; }
.footer-about { display:flex; flex-direction:column; gap:1rem; }
.footer-logo { display:flex; align-items:center; gap:.75rem; }
.footer-logo-icon { width:44px; height:44px; border-radius:var(--r); background:linear-gradient(135deg,var(--gold),var(--gold-dark)); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.footer-logo-icon img { width:100%; height:100%; object-fit:cover; border-radius:var(--r); }
.footer-logo-letter { color:var(--white); font-size:1.3rem; font-weight:900; }
.footer-logo-text { display:flex; flex-direction:column; line-height:1.2; }
.footer-logo-name { color:var(--white); font-weight:800; font-size:1rem; }
.footer-logo-sub  { color:var(--gold); font-size:.7rem; font-weight:600; }
.footer-about>p { color:rgba(255,255,255,.55); font-size:.88rem; line-height:1.8; max-width:300px; }
.social-links { display:flex; gap:.6rem; }
.social-link { width:36px; height:36px; border-radius:var(--r); background:var(--dark-3); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.65); transition:all .15s; border:1px solid rgba(255,255,255,.1); }
.social-link:hover { background:var(--gold); border-color:var(--gold); color:var(--white); }
.social-link svg { width:16px; height:16px; }
.footer h4 { color:var(--gold); font-size:.92rem; font-weight:700; margin-bottom:1.1rem; }
.footer-links { display:flex; flex-direction:column; gap:.45rem; }
.footer-links a { color:rgba(255,255,255,.6); font-size:.88rem; transition:color .15s; display:flex; align-items:center; gap:.4rem; }
.footer-links a:hover { color:var(--gold); }
.footer-contact-item { display:flex; align-items:flex-start; gap:.6rem; margin-bottom:.85rem; }
.footer-contact-item svg { color:var(--gold); flex-shrink:0; margin-top:.2rem; width:15px; height:15px; }
.footer-contact-item span,.footer-contact-item a { color:rgba(255,255,255,.6); font-size:.88rem; line-height:1.55; transition:color .15s; }
.footer-contact-item a:hover { color:var(--gold); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding:1.25rem 0; }
.footer-bottom-inner { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1rem; max-width:1280px; margin:0 auto; padding:0 1.5rem; }
.footer-bottom p { color:rgba(255,255,255,.4); font-size:.82rem; }
.footer-bottom-links { display:flex; gap:1.5rem; }
.footer-bottom-links a { color:rgba(255,255,255,.4); font-size:.82rem; transition:color .15s; }
.footer-bottom-links a:hover { color:var(--gold); }

/* ════════════════════════════════════
   FLOATING BUTTONS — نسخة مصلحة نهائية
   كل زر له لونه المستقل — لا تعارض
   ════════════════════════════════════ */
.floating-btns {
  position: fixed;
  left: 1.25rem;
  bottom: 1.75rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
}

/* Base — بدون لون هنا */
.float-btn {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  animation: none; /* منع تسرّب أي animation للأزرار غير واتساب */
}

/* ① واتساب — أخضر كبير 56px */
.float-btn.whatsapp {
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(37,211,102,.42);
  animation: wa-btn-pulse 2.5s ease-in-out infinite;
}
.float-btn.whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 8px 26px rgba(37,211,102,.55);
  animation: none;
}

/* ② الاتصال — داكن متوسط 48px */
.float-btn.phone {
  width: 48px;
  height: 48px;
  background: #2E2E2E;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
  animation: none;
}
.float-btn.phone:hover {
  background: #3E3E3E;
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 8px 22px rgba(0,0,0,.3);
}

/* ③ العودة للأعلى — أبيض صغير 42px — مختلف تماماً */
.float-btn.scroll-top {
  width: 42px;
  height: 42px;
  background: #ffffff;
  color: #2E2E2E;
  border: 2px solid #D4CEC8;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
  animation: none;
}
.float-btn.scroll-top:hover {
  border-color: #C9A96E;
  color: #C9A96E;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
}

@keyframes wa-btn-pulse {
  0%,  100% { box-shadow: 0 4px 18px rgba(37,211,102,.42); }
  50%        { box-shadow: 0 4px 26px rgba(37,211,102,.65), 0 0 0 5px rgba(37,211,102,.1); }
}

/* ════════════════════════════════════
   TOAST
   ════════════════════════════════════ */
.toast-overlay { position:fixed; inset:0; background:rgba(0,0,0,.55); backdrop-filter:blur(6px); z-index:9999; display:none; align-items:center; justify-content:center; padding:1rem; }
.toast-overlay.show { display:flex; }
.toast-box { background:var(--white); border-radius:var(--r-xl); padding:2.5rem 2rem; text-align:center; max-width:400px; width:100%; box-shadow:var(--sh-xl); }
.toast-icon { width:64px; height:64px; border-radius:50%; margin:0 auto 1.25rem; display:flex; align-items:center; justify-content:center; }
.toast-icon.success { background:#f0fdf4; color:#16a34a; }
.toast-icon.error   { background:#fef2f2; color:#dc2626; }
.toast-box h3 { font-size:1.1rem; font-weight:700; margin-bottom:.45rem; color:var(--dark); }
.toast-box p  { color:var(--gray-600); font-size:.92rem; margin-bottom:1.5rem; line-height:1.65; }
.toast-close { background:var(--dark); color:var(--white); font-weight:700; font-size:.9rem; padding:.7rem 2rem; border-radius:var(--r-full); border:none; cursor:pointer; font-family:var(--font); transition:background .15s; }
.toast-close:hover { background:var(--dark-3); }

/* ════════════════════════════════════
   EMPTY STATE
   ════════════════════════════════════ */
.empty-state { text-align:center; padding:4rem 2rem; color:var(--gray-500); }
.empty-state h3 { font-size:1.2rem; font-weight:700; margin-bottom:.5rem; color:var(--dark); }
.empty-state p  { font-size:.92rem; margin-bottom:1.5rem; }

/* Pagination */
.pagination { display:flex; justify-content:center; margin-top:3rem; }
.pagination a,.pagination span { min-width:36px; height:36px; display:flex; align-items:center; justify-content:center; border-radius:var(--r); border:1.5px solid var(--gray-200); font-size:.88rem; font-weight:600; transition:all .15s; color:var(--dark); padding:0 .5rem; }
.pagination a:hover { border-color:var(--gold); color:var(--gold); }
.pagination .active span,.pagination span[aria-current] { background:var(--dark); border-color:var(--dark); color:var(--white); }

/* ════════════════════════════════════
   PRODUCT / SERVICE DETAIL
   ════════════════════════════════════ */
.detail-grid { display:grid; grid-template-columns:1fr 1fr; gap:3rem; }
.detail-gallery-main { border-radius:var(--r-xl); overflow:hidden; background:var(--gray-200); margin-bottom:.75rem; }
.detail-gallery-main img { width:100%; }
.detail-gallery-thumbs { display:flex; gap:.5rem; flex-wrap:wrap; }
.detail-gallery-thumbs img { width:72px; height:56px; object-fit:cover; border-radius:var(--r); cursor:pointer; border:2px solid transparent; transition:border-color .15s; }
.detail-gallery-thumbs img.active,.detail-gallery-thumbs img:hover { border-color:var(--gold); }
.detail-info h1 { font-size:clamp(1.5rem,3vw,2.2rem); font-weight:800; margin-bottom:.75rem; }
.detail-price { font-size:1.6rem; font-weight:900; color:var(--gold); margin-bottom:1.25rem; }
.detail-specs { display:flex; flex-direction:column; gap:0; margin-bottom:1.75rem; border:1px solid var(--gray-200); border-radius:var(--r-lg); overflow:hidden; }
.detail-specs-row { display:flex; justify-content:space-between; padding:.65rem 1rem; font-size:.9rem; border-bottom:1px solid var(--gray-200); }
.detail-specs-row:last-child { border-bottom:none; }
.detail-specs-row:nth-child(even) { background:var(--gray-100); }
.detail-specs-key { font-weight:700; color:var(--dark); }
.detail-specs-val { color:var(--gray-600); }
.detail-actions { display:flex; gap:1rem; flex-wrap:wrap; margin-top:1.5rem; }

/* ════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════ */
@media(max-width:1100px){
  .footer-grid { grid-template-columns:1fr 1fr; gap:2rem; }
  .blog-layout  { grid-template-columns:1fr; }
  .blog-sidebar { position:static; }
}
@media(max-width:900px){
  .nav-links,.nav-actions { display:none; }
  .menu-toggle { display:flex; }
  :root { --nav-h:110px; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .contact-wrapper,.booking-wrapper { grid-template-columns:1fr; }
  .detail-grid { grid-template-columns:1fr !important; }
}
@media(max-width:640px){
  :root { --nav-h:100px; }
  .section { padding:3.5rem 0; }
  .container { padding:0 1rem; }
  .hero h1 { font-size:1.9rem; }
  .stats-grid { grid-template-columns:repeat(2,1fr); gap:.85rem; }
  .services-grid,.products-grid,.packages-grid,.why-grid,.testimonials-grid,.blog-grid,.projects-grid,.branches-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .form-grid { grid-template-columns:1fr; }
  .hero-actions { flex-direction:column; align-items:center; }
  .cta-actions  { flex-direction:column; align-items:center; }
  .newsletter-inner { flex-direction:column; gap:1.25rem; }
  .finder-fields { grid-template-columns:1fr; }
  .floating-btns       { left: .85rem; bottom: 1.25rem; gap: .5rem; }
  .float-btn.whatsapp  { width: 50px; height: 50px; }
  .float-btn.phone     { width: 44px; height: 44px; }
  .float-btn.scroll-top { width: 38px; height: 38px; }
  .footer-grid { gap:1.75rem; }
}