/* =========================================================
   Continental Stone — Stylesheet
   ========================================================= */

:root {
  --navy: #2f2216;
  --navy-dark: #14100b;
  --gold: #96692c;
  --gold-light: #c2985c;
  --coral: #74392a;
  --stone-50: #f6f1ea;
  --stone-100: #ede3d5;
  --stone-200: #ddccb3;
  --stone-300: #c7ac86;
  --charcoal: #2a2019;
  --text-muted: #75695c;
  --white: #ffffff;
  --radius: 10px;
  --shadow-sm: 0 2px 10px rgba(20, 20, 20, 0.06);
  --shadow-md: 0 10px 30px rgba(20, 20, 20, 0.10);
  --shadow-lg: 0 20px 50px rgba(20, 20, 20, 0.16);
  --container: 1200px;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-ar: 'Cairo', 'Tahoma', sans-serif;
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--stone-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
html[lang="ar"] body { font-family: var(--font-ar); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; margin: 0 0 .5em; color: var(--navy-dark); line-height: 1.2; }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4 { font-family: var(--font-ar); font-weight: 800; }
p { margin: 0 0 1em; color: var(--text-muted); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }
.section-tight { padding: 56px 0; }

.tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(150, 105, 44, .12);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.section-head p { font-size: 17px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: var(--navy-dark); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy-dark); }
.btn-outline-dark { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1fb355; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: var(--stone-50);
  border-bottom: 1px solid var(--stone-200);
}
.header-top {
  background: var(--navy-dark);
  color: var(--stone-100);
  font-size: 13px;
}
.header-top .container { display: flex; justify-content: space-between; align-items: center; padding-top: 8px; padding-bottom: 8px; }
.header-top-links { display: flex; gap: 20px; align-items: center; }
.header-top-links a { display: flex; align-items: center; gap: 6px; color: var(--stone-100); }
.header-top-links a:hover { color: var(--gold-light); }
.header-top-links svg { width: 14px; height: 14px; }
.lang-switch { display: flex; gap: 2px; background: rgba(255,255,255,.08); border-radius: 999px; padding: 3px; }
.lang-btn { border: none; background: transparent; color: var(--stone-100); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px; cursor: pointer; }
.lang-btn.active { background: var(--gold); color: var(--navy-dark); }

.header-main { height: var(--header-h); display: flex; align-items: center; }
.header-main .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .brand-icon { height: 46px; width: auto; flex-shrink: 0; }
.brand .brand-text { display: flex; flex-direction: column; line-height: 1.15; white-space: nowrap; }
.brand .brand-text b { font-family: var(--font-heading); font-size: 20px; font-weight: 800; color: var(--navy-dark); letter-spacing: .01em; }
.brand .brand-text span { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
@media (max-width: 420px) { .brand .brand-text b { font-size: 17px; } .brand .brand-text span { font-size: 9px; } }
@media (max-width: 340px) { .header-main .brand .brand-text span { display: none; } }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.main-nav a.nav-link {
  padding: 10px 16px; font-weight: 600; font-size: 15px; color: var(--charcoal);
  border-radius: 999px; transition: all .2s ease; display: flex; align-items: center; gap: 4px;
}
.main-nav a.nav-link:hover, .main-nav a.nav-link.active { background: var(--stone-200); color: var(--navy-dark); }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 0; margin-top: 8px;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 200px; padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s ease; border: 1px solid var(--stone-200);
}
html[dir="rtl"] .dropdown { left: auto; right: 0; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 14px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--charcoal); }
.dropdown a:hover { background: var(--stone-100); color: var(--navy); }

.header-ctas { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--stone-200); color: var(--navy-dark); transition: all .2s ease;
}
.icon-btn:hover { background: var(--gold); color: var(--navy-dark); }
.icon-btn svg { width: 19px; height: 19px; }

.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 8px; border: none; background: var(--stone-200); align-items: center; justify-content: center; cursor: pointer; }
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Mobile nav ---------- */
@media (max-width: 960px) {
  .main-nav { position: fixed; inset: 0; top: 0; background: var(--white); flex-direction: column; align-items: stretch;
    padding: 100px 24px 24px; transform: translateX(-100%); transition: transform .3s ease; z-index: 600; overflow-y: auto; }
  html[dir="rtl"] .main-nav { transform: translateX(100%); }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav a.nav-link { padding: 14px 16px; font-size: 17px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; display: none; margin-top: 0; padding-left: 16px; }
  .has-dropdown.open .dropdown { display: block; }
  .nav-toggle { display: flex; }
  .nav-close { display: flex; position: absolute; top: 24px; right: 24px; width: 40px; height: 40px; border-radius: 50%; background: var(--stone-100); border: none; align-items: center; justify-content: center; }
  html[dir="rtl"] .nav-close { right: auto; left: 24px; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 550; opacity: 0; visibility: hidden; transition: all .3s ease; }
  .nav-overlay.open { opacity: 1; visibility: visible; }
  .header-top .container { flex-wrap: wrap; gap: 8px; row-gap: 4px; }
  .header-ctas .icon-btn { display: none; }
}
@media (min-width: 961px) { .nav-close, .nav-overlay { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 640px; display: flex; align-items: center;
  background: var(--navy-dark);
  color: var(--white); overflow: hidden;
}
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slideshow img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; animation: heroSlideFade 60s infinite;
}
.hero-slideshow img:nth-child(1) { animation-delay: 0s; }
.hero-slideshow img:nth-child(2) { animation-delay: 6s; }
.hero-slideshow img:nth-child(3) { animation-delay: 12s; }
.hero-slideshow img:nth-child(4) { animation-delay: 18s; }
.hero-slideshow img:nth-child(5) { animation-delay: 24s; }
.hero-slideshow img:nth-child(6) { animation-delay: 30s; }
.hero-slideshow img:nth-child(7) { animation-delay: 36s; }
.hero-slideshow img:nth-child(8) { animation-delay: 42s; }
.hero-slideshow img:nth-child(9) { animation-delay: 48s; }
.hero-slideshow img:nth-child(10) { animation-delay: 54s; }
@keyframes heroSlideFade {
  0%, 100% { opacity: 0; }
  1% { opacity: 1; }
  8.5% { opacity: 1; }
  9.5% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slideshow img { animation: none; opacity: 0; }
  .hero-slideshow img:first-child { opacity: 1; }
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background-image: linear-gradient(160deg, rgba(20,16,11,.72) 0%, rgba(33,24,15,.62) 55%, rgba(47,34,22,.52) 100%),
                     radial-gradient(circle at 20% 20%, rgba(150,105,44,.16), transparent 40%),
                     radial-gradient(circle at 85% 75%, rgba(116,57,42,.16), transparent 45%);
}
.hero .container { position: relative; z-index: 2; max-width: 760px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  padding: 8px 18px; border-radius: 999px; font-size: 13px; font-weight: 600; letter-spacing: .04em; margin-bottom: 24px; color: var(--gold-light); }
.hero-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero h1 { color: var(--white); font-size: clamp(34px, 5.5vw, 58px); margin-bottom: 20px; text-shadow: 0 2px 16px rgba(0,0,0,.55); }
.hero p { color: rgba(255,255,255,.9); font-size: 18px; max-width: 560px; margin-bottom: 36px; text-shadow: 0 1px 10px rgba(0,0,0,.5); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stripe { position: absolute; bottom: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--coral) 50%, var(--navy) 100%); }

.page-hero {
  position: relative; overflow: hidden;
  color: var(--white); padding: 64px 0 56px; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background-image: linear-gradient(160deg, rgba(20,16,11,.76) 0%, rgba(33,24,15,.66) 55%, rgba(47,34,22,.56) 100%),
                     radial-gradient(circle at 20% 20%, rgba(150,105,44,.16), transparent 40%),
                     radial-gradient(circle at 85% 75%, rgba(116,57,42,.16), transparent 45%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .tag { background: rgba(150,105,44,.22); }
.page-hero h1 { color: var(--white); font-size: clamp(30px, 4.5vw, 44px); margin-bottom: 14px; text-shadow: 0 2px 14px rgba(0,0,0,.55); }
.page-hero p { color: rgba(255,255,255,.9); max-width: 640px; margin: 0 auto; text-shadow: 0 1px 10px rgba(0,0,0,.5); }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ---------- About teaser / cards ---------- */
.about-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-teaser-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.about-teaser-media img { width: 100%; height: 100%; object-fit: cover; }
.stat-row { display: flex; gap: 32px; margin-top: 28px; flex-wrap: wrap; }
.stat { }
.stat b { display: block; font-family: var(--font-heading); font-size: 30px; color: var(--navy); }
.stat span { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }

@media (max-width: 880px) {
  .about-teaser { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Category cards (home) ---------- */
.cats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden; height: 420px;
  box-shadow: var(--shadow-md); display: flex; align-items: flex-end;
}
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cat-card:hover img { transform: scale(1.08); }
.cat-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,16,11,0) 30%, rgba(20,16,11,.94) 100%); }
.cat-card-body { position: relative; z-index: 2; padding: 28px; color: var(--white); }
.cat-card-body .count { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-light); font-weight: 700; margin-bottom: 6px; display: block; }
.cat-card-body h3 { color: var(--white); font-size: 24px; margin-bottom: 8px; }
.cat-card-body p { color: rgba(255,255,255,.82); font-size: 14px; margin-bottom: 14px; }
.cat-card-body .link-arrow { display: inline-flex; align-items: center; gap: 6px; color: var(--gold-light); font-weight: 700; font-size: 14px; }
@media (max-width: 900px) { .cats-grid { grid-template-columns: 1fr; } .cat-card { height: 340px; } }

/* ---------- Why-us grid ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { background: var(--white); border: 1px solid var(--stone-200); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: all .25s ease; }
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.why-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--stone-100); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; color: var(--navy); }
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 17px; margin-bottom: 8px; }
.why-card p { font-size: 14px; margin: 0; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band { background: var(--stone-200); text-align: center; }
.cta-band h2 { font-size: clamp(24px, 3.5vw, 34px); }
.cta-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* ---------- Product grid ---------- */
.filter-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 32px; }
.result-count { font-size: 14px; color: var(--text-muted); font-weight: 600; }
.notice-noprice { background: var(--stone-100); border: 1px dashed var(--stone-300); border-radius: var(--radius); padding: 14px 20px; font-size: 14px; color: var(--text-muted); margin-bottom: 40px; text-align: center; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--stone-200);
  cursor: pointer; transition: all .25s ease; display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.product-card .thumb { aspect-ratio: 1/1; overflow: hidden; background: var(--stone-100); position: relative; }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .thumb img { transform: scale(1.06); }
.product-card .thumb .zoom-hint {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(20,16,11,0); transition: background .25s ease; opacity: 0;
}
.product-card:hover .thumb .zoom-hint { opacity: 1; background: rgba(20,16,11,.2); }
.product-card .thumb .zoom-hint svg { width: 34px; height: 34px; color: var(--white); filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }
.product-card .info { padding: 16px 18px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.product-card .info h4 { font-size: 15px; margin: 0; font-family: var(--font-body); font-weight: 700; color: var(--navy-dark); }
.product-card .info .code { font-size: 12px; color: var(--text-muted); }

@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .product-grid { grid-template-columns: repeat(2, 1fr); } gap: 16px; }
@media (max-width: 460px) { .product-grid { gap: 12px; } .product-card .info { padding: 10px 12px; } }

/* ---------- Lightbox modal ---------- */
.lightbox-overlay {
  position: fixed; inset: 0; background: rgba(11,17,31,.86); z-index: 1000;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; visibility: hidden; transition: all .25s ease;
}
.lightbox-overlay.open { opacity: 1; visibility: visible; }
.lightbox-box {
  background: var(--white); border-radius: var(--radius); overflow: hidden; max-width: 920px; width: 100%;
  display: grid; grid-template-columns: 1.2fr 1fr; max-height: 86vh;
  transform: scale(.96); transition: transform .25s ease;
}
.lightbox-overlay.open .lightbox-box { transform: scale(1); }
.lightbox-media { background: var(--stone-100); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.lightbox-media img { width: 100%; height: 100%; object-fit: cover; max-height: 86vh; }
.lightbox-info { padding: 40px 36px; display: flex; flex-direction: column; overflow-y: auto; }
.lightbox-info .cat-label { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); font-weight: 700; margin-bottom: 10px; }
.lightbox-info h3 { font-size: 28px; margin-bottom: 6px; }
.lightbox-info .code { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.lightbox-info .divider { height: 1px; background: var(--stone-200); margin: 20px 0; }
.lightbox-actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.lightbox-close {
  position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer;
  z-index: 5;
}
html[dir="rtl"] .lightbox-close { right: auto; left: 18px; }
.lightbox-close svg { width: 18px; height: 18px; }
.lightbox-wrap { position: relative; }

@media (max-width: 760px) {
  .lightbox-box { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
  .lightbox-media img { max-height: 46vh; }
  .lightbox-info { padding: 26px 22px; }
}

/* ---------- Locations / Contact ---------- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 56px; }
.info-card { background: var(--white); border: 1px solid var(--stone-200); border-radius: var(--radius); padding: 28px; }
.info-card .icon { width: 48px; height: 48px; border-radius: 50%; background: var(--stone-100); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--navy); }
.info-card .icon svg { width: 22px; height: 22px; }
.info-card h3 { font-size: 16px; margin-bottom: 8px; }
.info-card p { font-size: 14px; margin-bottom: 14px; }
@media (max-width: 900px) { .info-grid { grid-template-columns: 1fr; } }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--stone-200); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.contact-card { background: var(--white); border: 1px solid var(--stone-200); border-radius: var(--radius); padding: 32px 28px; text-align: center; }
.contact-card .icon { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.contact-card .icon svg { width: 26px; height: 26px; }
.contact-card.wa .icon { background: rgba(37,211,102,.12); color: #1fb355; }
.contact-card.call .icon { background: rgba(47,34,22,.12); color: var(--navy); }
.contact-card.visit .icon { background: rgba(150,105,44,.15); color: var(--gold); }
.contact-card.email .icon { background: rgba(116,57,42,.15); color: var(--coral); }
.contact-card h3 { font-size: 17px; }
.contact-card p { font-size: 14px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.75); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand .brand-icon { height: 44px; }
.footer-brand .brand-text b { color: var(--white); }
.footer-brand .brand-text span { color: var(--gold-light); }
.footer-brand p { color: rgba(255,255,255,.65); font-size: 14px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--gold); color: var(--navy-dark); }
.footer-social svg { width: 17px; height: 17px; }
.site-footer h4 { color: var(--white); font-size: 15px; font-family: var(--font-body); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 20px; }
.site-footer ul li { margin-bottom: 12px; }
.site-footer ul a { color: rgba(255,255,255,.65); font-size: 14px; }
.site-footer ul a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 14px; color: rgba(255,255,255,.7); }
.footer-contact-item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--gold-light); }
.footer-contact-item a { color: inherit; word-break: break-all; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom { padding: 22px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,.5); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 400;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,.5);
  animation: pulse 2.4s infinite;
}
html[dir="rtl"] .wa-float { right: auto; left: 24px; }
.wa-float svg { width: 30px; height: 30px; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- About page extras ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }

.about-hero-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); margin-top: -110px; position: relative; z-index: 5; aspect-ratio: 21/9; }
.about-hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* Utility */
.bg-white { background: var(--white); }
.bg-stone { background: var(--stone-100); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.reveal { opacity: 0; transform: translateY(24px); transition: all .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
