/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: #0a0e1a; font-family: 'Tajawal', sans-serif; color: #e8dfc8; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
button { font-family: 'Tajawal', sans-serif; cursor: pointer; }
img { display: block; max-width: 100%; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0e1a; }
::-webkit-scrollbar-thumb { background: #c9a84c; border-radius: 3px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(28px);} to { opacity:1; transform:translateY(0);} }
@keyframes fadeIn   { from { opacity:0;} to { opacity:1;} }
@keyframes shimmer  { 0%{background-position:-600px 0} 100%{background-position:600px 0} }
@keyframes pulse    { 0%,100%{opacity:1} 50%{opacity:.4} }
.fade-up  { animation: fadeUp  .6s ease both; }
.fade-in  { animation: fadeIn  .5s ease both; }
.delay-1  { animation-delay:.1s; }
.delay-2  { animation-delay:.2s; }
.delay-3  { animation-delay:.3s; }
.delay-4  { animation-delay:.4s; }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button { opacity:1; }

/* ── VARIABLES ── */
:root {
  --gold: #c9a84c;
  --gold-dark: #a07830;
  --bg: #0a0e1a;
  --bg2: #0f1525;
  --bg-card: #12192e;
  --border: rgba(201,168,76,.14);
  --text: #e8dfc8;
  --muted: #8898aa;
}

/* ── NAV ── */
.nav {
  position: fixed; top:0; left:0; right:0; z-index: 200;
  background: rgba(10,14,26,.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 70px; display: flex; align-items: center; gap: 6px;
}
.logo { display:flex; align-items:center; gap:10px; margin-right:auto; }
.logo-arabic { font-family:serif; font-size:30px; color:var(--gold); line-height:1; }
.logo-main   { font-size:17px; font-weight:700; letter-spacing:4px; color:var(--gold); }
.logo-sub    { font-size:9px; letter-spacing:3px; color:var(--muted); margin-top:-2px; }
.nav-links   { display:flex; gap:2px; }
.nav-link    {
  background:none; border:none; color:var(--muted);
  padding:8px 13px; font-size:13px; letter-spacing:1px;
  transition:color .2s; white-space:nowrap;
}
.nav-link:hover, .nav-link.active { color:var(--gold); }
.nav-cta {
  background:var(--gold); color:#0a0e1a; padding:8px 18px;
  border-radius:4px; font-size:12px; letter-spacing:1px; font-weight:700;
  margin-left:12px; white-space:nowrap; transition:opacity .2s;
}
.nav-cta:hover { opacity:.85; }
.hamburger {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; padding:8px;
}
.h-line { width:24px; height:2px; background:var(--gold); transition:transform .3s,opacity .3s; display:block; }
.mobile-menu { background:var(--bg2); border-top:1px solid var(--border); }
.mobile-link {
  display:block; width:100%; background:none; border:none; color:var(--text);
  padding:13px 24px; text-align:left; font-size:15px;
  border-bottom:1px solid rgba(201,168,76,.06);
}
.mobile-link:last-child { border-bottom:none; }

/* ── BUTTONS ── */
.btn-gold {
  display:inline-block; background:var(--gold); color:#0a0e1a; border:none;
  padding:13px 30px; font-size:12px; letter-spacing:2px; font-weight:700;
  border-radius:4px; transition:opacity .2s,transform .15s;
}
.btn-gold:hover { opacity:.87; transform:translateY(-1px); }
.btn-outline {
  display:inline-block; background:transparent; color:var(--gold);
  border:1px solid var(--gold); padding:13px 30px;
  font-size:12px; letter-spacing:2px; font-weight:700;
  border-radius:4px; transition:background .2s,color .2s;
}
.btn-outline:hover { background:rgba(201,168,76,.1); }

/* ── LAYOUT ── */
.container  { max-width:1200px; margin:0 auto; padding:0 24px; }
.page-wrap  { max-width:1200px; margin:0 auto; padding:80px 24px; }
.page-header { text-align:center; margin-bottom:56px; }
.eyebrow     { display:block; font-size:10px; letter-spacing:6px; color:var(--gold); margin-bottom:14px; text-transform:uppercase; }
.section-title { font-family:'Playfair Display',serif; font-size:clamp(26px,3.5vw,44px); font-weight:700; color:#fff; margin-bottom:14px; }
.section-desc  { font-size:15px; color:var(--muted); max-width:560px; margin:0 auto; line-height:1.85; }

/* ── HERO ── */
.hero {
  position:relative; height:100vh; min-height:620px;
  display:flex; align-items:center; overflow:hidden;
}
.hero-bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; }
.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(10,14,26,.93) 0%,rgba(10,14,26,.55) 65%,rgba(10,14,26,.35) 100%);
  z-index:1;
}
.hero-glow {
  position:absolute; inset:0; z-index:1;
  background:radial-gradient(ellipse at 15% 85%,rgba(201,168,76,.08) 0%,transparent 55%);
}
.hero-content { position:relative; z-index:2; max-width:720px; padding:0 48px; }
.hero-arabic  { font-family:serif; font-size:20px; color:var(--gold); letter-spacing:5px; margin-bottom:14px; opacity:.8; }
.hero-eyebrow { font-size:10px; letter-spacing:6px; color:var(--muted); margin-bottom:22px; text-transform:uppercase; }
.hero-title   { font-family:'Playfair Display',serif; font-size:clamp(36px,5.5vw,66px); font-weight:700; line-height:1.08; margin-bottom:22px; color:#fff; }
.hero-title span { color:var(--gold); display:block; }
.hero-desc    { font-size:15px; color:var(--muted); margin-bottom:38px; line-height:1.85; max-width:520px; }
.hero-btns    { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:52px; }
.hero-stats   { display:flex; gap:44px; }
.hero-stat-num { font-family:'Playfair Display',serif; font-size:26px; font-weight:700; color:var(--gold); display:block; }
.hero-stat-lbl { font-size:10px; color:var(--muted); letter-spacing:1px; margin-top:2px; display:block; }
.hero-scroll  { position:absolute; bottom:32px; right:44px; z-index:2; display:flex; flex-direction:column; align-items:center; gap:8px; }
.hero-scroll-line { width:1px; height:50px; background:linear-gradient(to bottom,var(--gold),transparent); }
.hero-scroll-text { font-size:8px; letter-spacing:5px; color:var(--muted); writing-mode:vertical-rl; }

/* ── BANNER ── */
.home-banner { position:relative; height:420px; display:flex; align-items:center; overflow:hidden; }
.home-banner-bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.home-banner-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to right,rgba(10,14,26,.96) 35%,rgba(10,14,26,.25) 100%);
  z-index:1;
}
.home-banner-content { position:relative; z-index:2; padding:0 80px; max-width:600px; }
.home-banner-title   { font-family:'Playfair Display',serif; font-size:clamp(28px,3.5vw,44px); font-weight:700; color:#fff; margin-bottom:16px; }
.home-banner-text    { font-size:15px; color:var(--muted); margin-bottom:28px; line-height:1.8; }

/* ── PRODUCT GRID ── */
.products-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:26px; }
.card {
  background:var(--bg-card); border-radius:13px; overflow:hidden;
  border:1px solid var(--border); transition:transform .3s,box-shadow .3s;
}
.card:hover { transform:translateY(-8px); box-shadow:0 28px 52px rgba(0,0,0,.55),0 0 0 1px rgba(201,168,76,.25); }
.card-img-wrap { position:relative; padding-top:68%; overflow:hidden; }
.card-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.card:hover .card-img { transform:scale(1.06); }
.card-overlay {
  position:absolute; inset:0; background:rgba(10,14,26,.6);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition:opacity .3s;
}
.card:hover .card-overlay { opacity:1; }
.view-btn {
  color:var(--gold); font-size:13px; letter-spacing:2px;
  border:1px solid var(--gold); padding:9px 22px; border-radius:4px;
}
.badge {
  position:absolute; top:12px; left:12px; background:var(--gold);
  color:#0a0e1a; font-size:10px; font-weight:700;
  padding:3px 10px; border-radius:3px; letter-spacing:1px; z-index:1;
}
.card-body   { padding:18px 20px 20px; }
.tag-row     { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:10px; }
.tag         {
  font-size:10px; letter-spacing:1px; color:var(--muted);
  background:rgba(201,168,76,.07); padding:3px 9px; border-radius:3px;
  border:1px solid rgba(201,168,76,.14);
}
.card-name   { font-size:14px; font-weight:600; color:var(--text); margin-bottom:14px; line-height:1.4; }
.card-footer { display:flex; align-items:center; justify-content:space-between; }
.card-price  { font-family:'Playfair Display',serif; font-size:22px; font-weight:700; color:var(--gold); }
.card-price span { font-family:'Tajawal',sans-serif; font-size:12px; color:var(--muted); }
.card-btn    {
  background:transparent; border:1px solid var(--gold); color:var(--gold);
  padding:6px 16px; font-size:11px; letter-spacing:1px; border-radius:4px;
  transition:background .2s;
}
.card-btn:hover { background:rgba(201,168,76,.12); }

/* ── PRODUCT DETAIL ── */
.detail-wrap  { max-width:1200px; margin:0 auto; padding:24px 24px 80px; }
.back-btn     {
  display:inline-flex; align-items:center; gap:6px;
  background:none; border:none; color:var(--muted);
  font-size:13px; letter-spacing:1px; margin-bottom:32px;
  padding:8px 0; transition:color .2s;
}
.back-btn:hover { color:var(--gold); }
.detail-grid  { display:grid; grid-template-columns:1fr 1fr; gap:64px; margin-bottom:80px; align-items:start; }
.detail-img-wrap {
  border-radius:16px; overflow:hidden; position:relative;
  padding-top:76%; background:var(--bg-card);
}
.detail-img   { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.detail-badge {
  position:absolute; top:16px; left:16px; background:var(--gold);
  color:#0a0e1a; font-size:11px; font-weight:700;
  padding:4px 14px; border-radius:4px; letter-spacing:1px;
}
.detail-category { font-size:9px; letter-spacing:6px; color:var(--gold); margin-bottom:12px; }
.detail-title    { font-family:'Playfair Display',serif; font-size:clamp(22px,3vw,34px); font-weight:700; color:#fff; margin-bottom:16px; line-height:1.2; }
.detail-tag-row  { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:20px; }
.detail-tag      {
  font-size:11px; letter-spacing:1px; color:var(--gold);
  background:rgba(201,168,76,.09); padding:4px 12px;
  border-radius:20px; border:1px solid rgba(201,168,76,.22);
}
.detail-desc     { font-size:15px; color:var(--muted); line-height:1.85; margin-bottom:24px; }
.detail-price-row{
  display:flex; align-items:baseline; gap:8px; margin-bottom:24px;
  padding-bottom:24px; border-bottom:1px solid var(--border);
}
.price-label { font-size:12px; color:var(--muted); }
.price-num   { font-family:'Playfair Display',serif; font-size:38px; font-weight:700; color:var(--gold); }
.price-unit  { font-size:14px; color:var(--muted); }
.detail-btns { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:24px; }
.btn-wa {
  display:inline-flex; align-items:center; gap:8px;
  background:#25d366; color:#fff; padding:13px 22px;
  border-radius:6px; font-size:13px; font-weight:700; letter-spacing:.5px;
  transition:opacity .2s;
}
.btn-wa:hover { opacity:.88; }
.btn-call {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--bg-card); color:var(--text);
  padding:13px 20px; border-radius:6px; font-size:13px;
  border:1px solid var(--border); transition:border-color .2s;
}
.btn-call:hover { border-color:rgba(201,168,76,.4); }
.feature-chips { display:flex; flex-wrap:wrap; gap:8px; }
.feature-chip  {
  font-size:12px; color:var(--muted); background:rgba(201,168,76,.05);
  padding:6px 14px; border-radius:4px; border:1px solid var(--border);
}
.feature-chip strong { color:var(--gold); margin-right:4px; }

/* ── PRICE CALC ── */
.calc-box   {
  background:rgba(201,168,76,.04); border:1px solid rgba(201,168,76,.2);
  border-radius:10px; padding:20px 24px; margin-bottom:24px;
}
.calc-title { font-size:12px; font-weight:700; color:var(--gold); margin-bottom:16px; letter-spacing:1px; }
.calc-row   { display:flex; align-items:center; justify-content:space-between; margin-bottom:12px; gap:12px; }
.calc-label { font-size:13px; color:var(--muted); }
.calc-input {
  width:110px; background:var(--bg2); border:1px solid rgba(201,168,76,.2);
  border-radius:6px; padding:8px 12px; color:var(--text); font-size:14px;
  font-family:'Tajawal',sans-serif; outline:none; transition:border-color .2s;
}
.calc-input:focus { border-color:rgba(201,168,76,.5); }
.calc-result {
  display:flex; align-items:center; justify-content:space-between;
  padding-top:14px; border-top:1px solid var(--border); margin-top:4px;
}
.calc-m2    { color:#a08030; font-size:14px; }
.calc-price { font-family:'Playfair Display',serif; font-size:28px; font-weight:700; color:var(--gold); }
.calc-note  { font-size:11px; color:#666; margin-top:6px; }

/* ── RELATED ── */
.related-section { border-top:1px solid var(--border); padding-top:60px; }
.related-grid    { display:grid; grid-template-columns:repeat(auto-fill,minmax(210px,1fr)); gap:18px; margin-top:30px; }
.related-card    {
  background:var(--bg-card); border-radius:10px; overflow:hidden;
  border:1px solid var(--border); transition:transform .2s,border-color .2s;
}
.related-card:hover { transform:translateY(-4px); border-color:rgba(201,168,76,.3); }
.related-img     { width:100%; aspect-ratio:4/3; object-fit:cover; }
.related-name    { padding:10px 14px 4px; font-size:13px; color:var(--text); font-weight:600; line-height:1.3; }
.related-price   { padding:0 14px 12px; font-size:13px; color:var(--gold); font-weight:700; }

/* ── ABOUT ── */
.about-grid      { display:grid; grid-template-columns:1fr 1fr; gap:64px; margin-bottom:80px; align-items:center; }
.about-img-col   { position:relative; }
.about-img       { width:100%; border-radius:16px; }
.about-img-decor {
  position:absolute; top:-16px; left:-16px; right:16px; bottom:16px;
  border:1px solid rgba(201,168,76,.25); border-radius:16px; z-index:-1;
}
.about-text-col  { display:flex; flex-direction:column; gap:26px; }
.about-item      { padding-left:20px; border-left:2px solid var(--gold); }
.about-item-title{ font-family:'Playfair Display',serif; font-size:17px; font-weight:700; color:#fff; margin-bottom:8px; }
.about-item-text { font-size:14px; color:var(--muted); line-height:1.85; }
.features-section{ border-top:1px solid var(--border); padding-top:60px; }
.features-grid   { display:grid; grid-template-columns:repeat(auto-fill,minmax(190px,1fr)); gap:18px; margin-top:32px; }
.feature-card    {
  background:var(--bg-card); border-radius:12px; padding:26px 20px;
  border:1px solid var(--border); text-align:center; transition:border-color .2s;
}
.feature-card:hover{ border-color:rgba(201,168,76,.3); }
.feature-icon    { font-size:24px; margin-bottom:14px; }
.feature-title   { font-size:15px; font-weight:700; color:#fff; margin-bottom:8px; }
.feature-desc    { font-size:13px; color:var(--muted); line-height:1.75; }

/* ── FAQ ── */
.faq-wrap        { max-width:780px; margin:0 auto; }
.faq-item        {
  background:var(--bg-card); border-radius:10px; margin-bottom:10px;
  overflow:hidden; border:1px solid var(--border); transition:border-color .2s;
}
.faq-item:hover  { border-color:rgba(201,168,76,.28); }
.faq-q           {
  display:flex; justify-content:space-between; align-items:center;
  padding:18px 24px; color:var(--text); font-size:15px; font-weight:600;
  gap:16px; cursor:pointer; user-select:none;
}
.faq-arrow       { color:var(--gold); font-size:11px; transition:transform .3s; flex-shrink:0; }
.faq-a           { max-height:0; overflow:hidden; transition:max-height .38s ease,opacity .38s ease; opacity:0; }
.faq-a.open      { opacity:1; }
.faq-a-inner     { padding:0 24px 18px; color:var(--muted); font-size:14px; line-height:1.8; }

/* ── CONTACT ── */
.contact-grid  { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
.contact-left  { display:flex; flex-direction:column; gap:14px; }
.contact-card  {
  background:var(--bg-card); border-radius:10px; padding:18px 20px;
  display:flex; align-items:flex-start; gap:16px; border:1px solid var(--border);
}
.contact-icon       { font-size:22px; flex-shrink:0; margin-top:2px; }
.contact-card-title { font-size:10px; letter-spacing:3px; color:var(--gold); margin-bottom:5px; }
.contact-card-line  { font-size:14px; color:var(--muted); margin-bottom:2px; }
.wa-btn {
  display:flex; align-items:center; justify-content:center; gap:10px;
  background:#25d366; color:#fff; padding:14px 24px; border-radius:8px;
  font-weight:700; font-size:14px; margin-top:4px; transition:opacity .2s;
}
.wa-btn:hover { opacity:.88; }
.contact-right  { display:flex; flex-direction:column; gap:18px; }
.map-embed      { border-radius:12px; overflow:hidden; border:1px solid var(--border); }
.social-row     { display:flex; gap:10px; }
.social-btn     {
  flex:1; background:var(--bg-card); border:1px solid var(--border);
  color:var(--muted); padding:10px 0; border-radius:8px;
  font-size:12px; text-align:center; letter-spacing:1px;
  transition:border-color .2s,color .2s;
}
.social-btn:hover { border-color:rgba(201,168,76,.35); color:var(--gold); }

/* ── FOOTER ── */
.footer      { background:var(--bg2); border-top:1px solid var(--border); padding-top:48px; }
.footer-inner{
  max-width:1200px; margin:0 auto; padding:0 24px 40px;
  display:grid; grid-template-columns:auto 1fr auto; gap:40px; align-items:start;
}
.footer-logo   { display:flex; align-items:center; gap:10px; }
.footer-links  { display:flex; flex-wrap:wrap; gap:4px; justify-content:center; align-items:center; }
.footer-link   {
  background:none; border:none; color:var(--muted); padding:6px 12px;
  font-size:13px; transition:color .2s;
}
.footer-link:hover { color:var(--gold); }
.footer-contact{ display:flex; flex-direction:column; gap:8px; text-align:right; }
.footer-contact-line{ color:var(--muted); font-size:13px; }
.footer-bottom { border-top:1px solid rgba(201,168,76,.08); text-align:center; padding:16px 24px; color:#445; font-size:12px; letter-spacing:1px; }

/* ── SECTION DIVIDER ── */
.section-divider { border:none; border-top:1px solid var(--border); margin:0; }

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .nav-links,.nav-cta { display:none; }
  .hamburger          { display:flex !important; }
  .detail-grid,.about-grid,.contact-grid { grid-template-columns:1fr; gap:36px; }
  .footer-inner       { grid-template-columns:1fr; }
  .footer-contact     { text-align:left; }
  .footer-links       { justify-content:flex-start; }
  .home-banner-content{ padding:0 36px; }
}
@media(max-width:600px){
  .hero-content { padding:0 24px; }
  .hero-stats   { gap:24px; }
  .page-wrap    { padding:60px 16px 60px; }
  .hero-scroll  { display:none; }
}
