/* ════════════════════════════════════════════════════════
   بُن الحرف — مقهى مختص (بني + كريمي)
   ════════════════════════════════════════════════════════ */

:root{
  --bg:#FAF5ED;
  --bg-2:#F2EBDA;
  --bg-3:#EBE2CC;
  --bg-cream:#F5EDE0;
  --bg-card:#FFFFFF;
  --bg-dark:#2A1F15;
  --bg-darker:#1F1610;
  --bg-medium:#4A2E1D;

  --primary:#4A2E1D;
  --primary-dark:#33200F;
  --primary-light:#6B4530;

  --accent:#A26B43;
  --accent-dark:#7E4F2D;
  --accent-light:#C99068;

  --cream:#E8D5B0;
  --cream-light:#F4E5C5;
  --cream-dark:#C9B189;

  --text:#2A1F15;
  --text-2:#5A4030;
  --text-3:#8A6F58;
  --text-4:#B89F85;
  --text-light:#FAF5ED;
  --text-light-2:#E0CDA9;

  --border:#E5D9BE;
  --border-2:#CDB892;
  --border-soft:#EDE3CC;

  --shadow-sm:0 2px 8px rgba(74,46,29,0.08);
  --shadow:0 12px 32px rgba(74,46,29,0.12);
  --shadow-lg:0 24px 60px rgba(74,46,29,0.18);

  --font:'Tajawal',sans-serif;
  --font-display:'Thmanyah Display','Tajawal',serif;
  --font-logo:'Thmanyah Display','Tajawal',serif;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:var(--font);
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
  font-size:15px;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit}
a{color:inherit;text-decoration:none}

.container{max-width:1300px;margin:auto;padding:0 32px}
.text-cream{color:var(--cream)}
.text-cream-light{color:var(--cream-light)}

/* الأزرار */
.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 36px;
  background:var(--primary);
  color:#fff;
  font-size:14px;
  font-weight:700;
  letter-spacing:0.5px;
  border:1px solid var(--primary);
  cursor:pointer;
  transition:all 0.3s;
  font-family:inherit;
}
.btn-primary:hover{
  background:var(--primary-dark);
  border-color:var(--primary-dark);
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(74,46,29,0.3);
}
.btn-primary:disabled{opacity:0.7;cursor:default;transform:none}

.btn-ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 32px;
  background:transparent;
  color:#fff;
  font-size:14px;
  font-weight:700;
  border:1px solid rgba(255,255,255,0.4);
  cursor:pointer;
  transition:all 0.3s;
  font-family:inherit;
}
.btn-ghost:hover{
  background:rgba(255,255,255,0.15);
  border-color:#fff;
}

/* شريط علوي */
.topbar{
  background:var(--primary-dark);
  color:var(--cream);
  padding:9px 0;
  font-size:13px;
  text-align:center;
  letter-spacing:0.3px;
}

/* الهيدر */
header{
  position:fixed;
  top:0;
  right:0;
  left:0;
  z-index:100;
  padding:18px 0;
  transition:all 0.4s;
  background:transparent;
}
header.scrolled{
  background:rgba(250,245,237,0.97);
  backdrop-filter:blur(15px);
  padding:12px 0;
  box-shadow:var(--shadow-sm);
  border-bottom:1px solid var(--border-soft);
}
header.scrolled .brand-name{color:var(--primary)}
header.scrolled .main-nav a{color:var(--text-2)}
header.scrolled .brand-icon{color:var(--accent)}
header.scrolled .brand-tag{color:var(--text-3)}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:0 32px;
}

.brand{display:flex;align-items:center;gap:12px}
.brand-icon{
  width:46px;
  height:46px;
  color:var(--cream);
  flex-shrink:0;
  transition:color 0.3s;
}
.brand-icon svg{width:100%;height:100%}
.brand-text{display:flex;flex-direction:column;line-height:1.1}
.brand-name{
  font-family:var(--font-logo);
  font-size:23px;
  font-weight:700;
  color:#fff;
  transition:color 0.3s;
  letter-spacing:0.3px;
}
.brand-tag{
  font-size:9px;
  letter-spacing:4px;
  color:rgba(255,255,255,0.6);
  margin-top:3px;
  font-weight:600;
}

.main-nav{display:flex;gap:6px}
.main-nav a{
  padding:10px 14px;
  font-size:14px;
  font-weight:600;
  color:#fff;
  transition:color 0.2s;
  position:relative;
}
.main-nav a:hover{color:var(--cream)}
header.scrolled .main-nav a:hover{color:var(--accent)}
.main-nav a::after{
  content:'';
  position:absolute;
  bottom:4px;
  right:50%;
  width:0;
  height:1.5px;
  background:var(--accent);
  transition:all 0.3s;
  transform:translateX(50%);
}
.main-nav a:hover::after{width:60%}

.header-cta{padding:11px 24px;font-size:13px}

.menu-toggle{
  display:none;
  width:42px;
  height:42px;
  background:rgba(255,255,255,0.15);
  color:#fff;
  font-size:22px;
  cursor:pointer;
  border:1px solid rgba(255,255,255,0.3);
}
header.scrolled .menu-toggle{
  background:var(--primary);
  border-color:var(--primary);
}

.mobile-menu{
  position:fixed;
  top:78px;
  right:0;
  left:0;
  background:var(--bg-card);
  padding:24px 32px;
  display:none;
  flex-direction:column;
  gap:6px;
  box-shadow:var(--shadow);
  border-bottom:1px solid var(--border);
}
.mobile-menu.open{display:flex}
.mobile-menu a{
  padding:14px 0;
  border-bottom:1px solid var(--border-soft);
  color:var(--text-2);
  font-weight:600;
}
.mobile-menu a:last-child{border:none}

/* الهيرو */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  text-align:center;
  padding:140px 0 100px;
  overflow:hidden;
}
.hero-bg{position:absolute;inset:0;z-index:0}
.hero-bg img{width:100%;height:100%;object-fit:cover}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(31,22,16,0.55) 0%,rgba(31,22,16,0.85) 100%);
}

.hero-content{position:relative;z-index:2;color:#fff;width:100%}

.hero-eyebrow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  font-size:13px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:var(--cream);
  margin-bottom:24px;
  font-weight:600;
}
.eb-line{width:50px;height:1px;background:var(--cream);opacity:0.6}

.hero-title{
  font-family:var(--font-display);
  font-size:clamp(36px,5.5vw,72px);
  font-weight:800;
  line-height:1.4;
  margin-bottom:28px;
}

.hero-desc{
  font-size:17px;
  line-height:1.95;
  color:var(--text-light-2);
  max-width:680px;
  margin:0 auto 44px;
}

.hero-actions{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:80px;
}

.hero-features{
  display:flex;
  justify-content:center;
  gap:50px;
  flex-wrap:wrap;
  padding-top:40px;
  border-top:1px solid rgba(255,255,255,0.15);
  max-width:800px;
  margin:0 auto;
}
.hf-item{
  display:flex;
  align-items:center;
  gap:14px;
  text-align:right;
}
.hf-icon{
  width:46px;
  height:46px;
  background:rgba(232,213,176,0.15);
  border:1px solid rgba(232,213,176,0.3);
  color:var(--cream);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  flex-shrink:0;
  border-radius:50%;
}
.hf-title{font-size:14px;color:#fff;font-weight:700;margin-bottom:3px}
.hf-sub{font-size:11px;color:var(--text-light-2);letter-spacing:1px}

.hero-scroll{
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  font-size:11px;
  letter-spacing:3px;
  color:var(--cream);
  text-transform:uppercase;
  opacity:0.7;
  z-index:2;
}
.scroll-arrow{
  width:1px;
  height:40px;
  background:linear-gradient(180deg,var(--cream) 0%,transparent 100%);
  animation:scrollDown 2s infinite;
}
@keyframes scrollDown{
  0%{transform:scaleY(0);transform-origin:top}
  50%{transform:scaleY(1);transform-origin:top}
  51%{transform:scaleY(1);transform-origin:bottom}
  100%{transform:scaleY(0);transform-origin:bottom}
}

@media(max-width:768px){
  .hero-features{gap:24px}
  .hf-item{flex-direction:column;text-align:center;gap:8px}
}

/* عناوين الأقسام */
.section-eyebrow{
  display:inline-block;
  padding:6px 18px;
  background:var(--accent);
  color:#fff;
  font-size:12px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:18px;
}
.section-eyebrow.light{
  background:rgba(232,213,176,0.2);
  color:var(--cream);
  border:1px solid rgba(232,213,176,0.4);
  backdrop-filter:blur(8px);
}
.section-title{
  font-family:var(--font-display);
  font-size:clamp(30px,4.2vw,52px);
  font-weight:800;
  line-height:1.4;
  color:var(--primary);
  margin-bottom:18px;
}
.section-title.light{color:#fff}
.section-sub{
  font-size:15px;
  line-height:1.9;
  color:var(--text-3);
  max-width:620px;
  margin:0 auto;
}
.section-head{text-align:center;margin-bottom:60px;padding:0 20px}

/* حكايتنا */
.story{padding:120px 0;background:var(--bg)}
.story-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:80px;
  align-items:center;
}
@media(max-width:1024px){
  .story-grid{grid-template-columns:1fr;gap:60px}
}

.story-images{position:relative;min-height:560px}
.si-1{
  width:78%;
  aspect-ratio:0.85;
  overflow:hidden;
  border:8px solid var(--bg-card);
  box-shadow:var(--shadow-lg);
}
.si-1 img{width:100%;height:100%;object-fit:cover}
.si-2{
  position:absolute;
  bottom:-30px;
  left:-20px;
  width:55%;
  aspect-ratio:0.9;
  overflow:hidden;
  border:8px solid var(--bg-card);
  box-shadow:var(--shadow);
}
.si-2 img{width:100%;height:100%;object-fit:cover}

.si-stamp{
  position:absolute;
  top:30px;
  left:0;
  width:130px;
  height:130px;
  background:var(--primary);
  color:#fff;
  border-radius:50%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  box-shadow:var(--shadow);
  z-index:2;
  border:4px solid var(--bg);
}
.stamp-num{
  font-family:var(--font-display);
  font-size:48px;
  font-weight:900;
  color:var(--cream);
  line-height:1;
}
.stamp-label{
  font-size:10px;
  letter-spacing:1.5px;
  text-align:center;
  margin-top:6px;
  font-weight:600;
}

.story-lead{
  font-size:17px;
  line-height:1.95;
  color:var(--text);
  margin-bottom:18px;
  font-weight:500;
}
.story-text{
  font-size:14px;
  line-height:1.95;
  color:var(--text-2);
  margin-bottom:36px;
}

.story-features{display:flex;flex-direction:column;gap:24px}
.sf{
  display:flex;
  gap:18px;
  align-items:flex-start;
  padding-bottom:20px;
  border-bottom:1px solid var(--border);
}
.sf:last-child{border:none;padding:0}
.sf-num{
  font-family:var(--font-display);
  font-size:32px;
  font-weight:900;
  color:var(--accent);
  line-height:1;
  flex-shrink:0;
  width:50px;
}
.sf strong{
  display:block;
  font-size:15px;
  font-weight:700;
  color:var(--primary);
  margin-bottom:6px;
  font-family:var(--font-display);
}
.sf span{font-size:13px;color:var(--text-3);line-height:1.7}

/* القائمة */
.menu{padding:120px 0;background:var(--bg-2)}
.menu-tabs{
  display:flex;
  justify-content:center;
  gap:6px;
  flex-wrap:wrap;
  margin-bottom:50px;
  padding-bottom:30px;
  border-bottom:1px solid var(--border);
}
.mt{
  padding:12px 24px;
  background:transparent;
  border:1px solid var(--border-2);
  color:var(--text-2);
  font-size:13px;
  font-weight:700;
  letter-spacing:0.5px;
  cursor:pointer;
  transition:all 0.3s;
  font-family:inherit;
}
.mt:hover{border-color:var(--accent);color:var(--accent)}
.mt.active{
  background:var(--primary);
  border-color:var(--primary);
  color:#fff;
}

.menu-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px 50px;
  margin-bottom:40px;
}
@media(max-width:768px){.menu-list{grid-template-columns:1fr}}

.m-item{padding:16px 0;border-bottom:1px solid var(--border-soft)}
.m-item:last-child{border:none}
.m-head{
  display:flex;
  align-items:baseline;
  gap:10px;
  margin-bottom:6px;
}
.m-head h3{
  font-family:var(--font-display);
  font-size:17px;
  font-weight:700;
  color:var(--primary);
  flex-shrink:0;
}
.m-badge{
  display:inline-block;
  padding:3px 9px;
  background:var(--accent);
  color:#fff;
  font-size:10px;
  font-weight:700;
  letter-spacing:0.5px;
  flex-shrink:0;
}
.m-dots{
  flex:1;
  border-bottom:1.5px dotted var(--border-2);
  margin-bottom:5px;
  min-width:30px;
}
.m-price{
  font-family:var(--font-display);
  font-size:18px;
  font-weight:800;
  color:var(--accent);
  flex-shrink:0;
  white-space:nowrap;
}
.m-price small{font-size:11px;color:var(--text-3);font-weight:500;margin-right:3px}
.m-item p{font-size:13px;color:var(--text-3);line-height:1.7}

.menu-note{
  text-align:center;
  font-size:13px;
  color:var(--text-3);
  padding:14px 24px;
  background:var(--bg-card);
  border:1px dashed var(--border-2);
  display:block;
  margin:0 auto;
  max-width:680px;
}

/* قهوة الموسم */
.featured{
  padding:120px 0;
  background:var(--bg-dark);
  color:#fff;
  position:relative;
  overflow:hidden;
}
.featured::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 70% 30%,rgba(162,107,67,0.15) 0%,transparent 60%);
}
.featured-grid{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
@media(max-width:1024px){
  .featured-grid{grid-template-columns:1fr;gap:40px}
}

.featured-image{
  position:relative;
  aspect-ratio:1;
  overflow:hidden;
  border:8px solid rgba(232,213,176,0.25);
  box-shadow:var(--shadow-lg);
}
.featured-image img{width:100%;height:100%;object-fit:cover}
.featured-tag{
  position:absolute;
  top:20px;
  right:20px;
  padding:8px 18px;
  background:var(--accent);
  color:#fff;
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
}

.featured-title{
  font-family:var(--font-display);
  font-size:clamp(30px,4.2vw,52px);
  font-weight:800;
  line-height:1.4;
  margin:18px 0;
}
.featured-desc{
  font-size:15px;
  line-height:1.95;
  color:var(--text-light-2);
  margin-bottom:32px;
}

.cup-profile{
  margin-bottom:36px;
  padding:28px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
}
.profile-row{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:14px;
}
.profile-row:last-child{margin:0}
.profile-row span{
  width:80px;
  font-size:13px;
  color:var(--text-light-2);
  font-weight:600;
  flex-shrink:0;
}
.profile-bar{
  flex:1;
  height:6px;
  background:rgba(255,255,255,0.1);
  border-radius:3px;
  overflow:hidden;
}
.bar-fill{
  height:100%;
  background:linear-gradient(90deg,var(--accent-light),var(--cream));
  border-radius:3px;
  transition:width 1s;
}

.featured-foot{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}
.featured-price{display:flex;flex-direction:column;line-height:1.2}
.featured-price .from{
  font-size:11px;
  color:var(--text-light-2);
  letter-spacing:1.5px;
  margin-bottom:6px;
  text-transform:uppercase;
}
.featured-price .amount{
  font-family:var(--font-display);
  font-size:36px;
  font-weight:800;
  color:var(--cream);
}
.featured-price .amount small{
  font-size:13px;
  font-weight:500;
  color:var(--text-light-2);
  margin-right:4px;
}

/* حبوبنا */
.beans{padding:120px 0;background:var(--bg)}
.beans-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
@media(max-width:1024px){.beans-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:520px){.beans-grid{grid-template-columns:1fr}}

.bean{
  background:var(--bg-card);
  border:1px solid var(--border);
  overflow:hidden;
  transition:all 0.3s;
}
.bean:hover{
  border-color:var(--accent);
  transform:translateY(-6px);
  box-shadow:var(--shadow);
}
.bean-img{
  aspect-ratio:1;
  overflow:hidden;
  background:var(--bg-2);
}
.bean-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.5s;
}
.bean:hover .bean-img img{transform:scale(1.06)}

.bean-body{padding:22px}
.bean-origin{
  font-size:11px;
  color:var(--accent);
  letter-spacing:2px;
  text-transform:uppercase;
  font-weight:700;
  margin-bottom:8px;
}
.bean-body h3{
  font-family:var(--font-display);
  font-size:20px;
  font-weight:700;
  color:var(--primary);
  margin-bottom:14px;
}

.bean-notes{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-bottom:18px;
}
.bean-notes span{
  padding:4px 10px;
  background:var(--bg-2);
  border:1px solid var(--border-soft);
  font-size:11px;
  color:var(--text-2);
  font-weight:600;
}

.bean-meta{
  padding-top:14px;
  border-top:1px solid var(--border-soft);
  margin-bottom:14px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.bean-meta div{
  font-size:12px;
  color:var(--text-3);
  display:flex;
  justify-content:space-between;
}
.bean-meta strong{color:var(--text-2);font-weight:700}

.bean-foot{
  display:flex;
  align-items:baseline;
  gap:6px;
  padding-top:14px;
  border-top:1px solid var(--border-soft);
}
.bean-price{
  font-family:var(--font-display);
  font-size:22px;
  font-weight:800;
  color:var(--accent);
}
.bean-size{font-size:12px;color:var(--text-3)}

/* الفروع */
.locations{padding:120px 0;background:var(--bg-2)}
.locations-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
@media(max-width:900px){.locations-grid{grid-template-columns:1fr}}

.location{
  background:var(--bg-card);
  overflow:hidden;
  transition:all 0.3s;
  border:1px solid var(--border);
}
.location:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
  border-color:var(--accent);
}
.loc-img{
  position:relative;
  aspect-ratio:1.4;
  overflow:hidden;
}
.loc-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.5s;
}
.location:hover .loc-img img{transform:scale(1.05)}

.loc-status{
  position:absolute;
  top:16px;
  right:16px;
  padding:5px 14px;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.5px;
  color:#fff;
}
.loc-status.open{background:#4A8C3F}
.loc-status.closing{background:#D4A044}

.loc-body{padding:28px 24px}
.loc-tag{
  display:inline-block;
  padding:4px 12px;
  background:var(--bg-2);
  color:var(--accent-dark);
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:12px;
}
.loc-body h3{
  font-family:var(--font-display);
  font-size:22px;
  font-weight:700;
  color:var(--primary);
  margin-bottom:18px;
}
.loc-info{list-style:none;margin-bottom:18px}
.loc-info li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:13px;
  color:var(--text-2);
  padding:5px 0;
  line-height:1.7;
}
.loc-info span{flex-shrink:0;font-size:14px}

.loc-features{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  padding:14px 0;
  border-top:1px solid var(--border-soft);
  margin-bottom:18px;
}
.loc-features span{
  padding:4px 10px;
  background:var(--bg-2);
  font-size:11px;
  color:var(--text-2);
  font-weight:600;
  border:1px solid var(--border-soft);
}

.loc-cta{
  font-size:13px;
  font-weight:700;
  color:var(--accent);
  letter-spacing:0.5px;
  display:inline-block;
  transition:opacity 0.2s;
}
.loc-cta:hover{opacity:0.7}

/* آراء العملاء */
.testimonials{padding:120px 0;background:var(--bg)}
.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
@media(max-width:900px){.testimonials-grid{grid-template-columns:1fr}}

.testimonial{
  background:var(--bg-card);
  padding:32px 28px;
  border:1px solid var(--border);
  transition:all 0.3s;
}
.testimonial:hover{
  transform:translateY(-4px);
  border-color:var(--accent);
}
.t-stars{
  color:var(--accent);
  font-size:16px;
  letter-spacing:3px;
  margin-bottom:16px;
}
.testimonial p{
  font-size:14px;
  line-height:1.95;
  color:var(--text-2);
  margin-bottom:20px;
}
.testimonial footer{
  padding-top:18px;
  border-top:1px solid var(--border-soft);
}
.testimonial footer strong{
  display:block;
  font-size:14px;
  color:var(--primary);
  margin-bottom:3px;
  font-family:var(--font-display);
}
.testimonial footer span{font-size:12px;color:var(--text-3)}

/* اشتراك القهوة */
.subscribe{padding:120px 0;background:var(--bg-2)}
.subscribe-card{
  background:linear-gradient(135deg,var(--primary) 0%,var(--bg-medium) 100%);
  padding:80px 60px;
  position:relative;
  overflow:hidden;
  text-align:center;
  border:1px solid var(--accent-dark);
}
@media(max-width:768px){.subscribe-card{padding:50px 28px}}
.sub-pattern{
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 20% 80%,rgba(232,213,176,0.1) 0%,transparent 50%),radial-gradient(circle at 80% 20%,rgba(162,107,67,0.15) 0%,transparent 50%);
  pointer-events:none;
}
.sub-content{
  position:relative;
  z-index:1;
  max-width:640px;
  margin:auto;
}

.sub-desc{
  font-size:16px;
  color:var(--text-light-2);
  margin-bottom:36px;
  line-height:1.95;
}

.sub-form{
  display:flex;
  gap:0;
  max-width:500px;
  margin:0 auto 24px;
  background:#fff;
  padding:6px;
}
@media(max-width:520px){.sub-form{flex-direction:column;gap:6px}}
.sub-form input{
  flex:1;
  padding:14px 22px;
  border:none;
  background:transparent;
  font-size:14px;
  font-family:inherit;
  color:var(--text);
  outline:none;
}
.sub-form button{
  padding:14px 28px;
  background:var(--primary);
  color:#fff;
  border:none;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  font-family:inherit;
  transition:opacity 0.2s;
  white-space:nowrap;
}
.sub-form button:hover{opacity:0.85}
.sub-form button:disabled{opacity:0.6}

.sub-perks{
  display:flex;
  justify-content:center;
  gap:24px;
  flex-wrap:wrap;
  font-size:13px;
  color:var(--cream);
  font-weight:500;
}

/* التذييل */
footer{
  background:var(--bg-darker);
  color:var(--text-light-2);
  padding:70px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1.2fr;
  gap:50px;
  padding-bottom:50px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
@media(max-width:900px){.footer-grid{grid-template-columns:1fr 1fr;gap:40px}}
@media(max-width:560px){.footer-grid{grid-template-columns:1fr;gap:36px}}

.footer-brand .brand{margin-bottom:20px}
.footer-brand .brand-icon{color:var(--cream)}
.footer-brand .brand-name{color:#fff}
.footer-brand p{
  font-size:13px;
  line-height:1.95;
  color:rgba(255,255,255,0.6);
  max-width:340px;
  margin-bottom:24px;
}

.footer-social{display:flex;gap:10px}
.footer-social a{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  color:rgba(255,255,255,0.7);
  transition:all 0.25s;
}
.footer-social svg{width:17px;height:17px}
.footer-social a:hover{
  background:var(--accent);
  border-color:var(--accent);
  color:#fff;
}

.footer-col h4{
  font-family:var(--font-display);
  font-size:14px;
  font-weight:700;
  color:var(--cream);
  margin-bottom:22px;
  letter-spacing:0.5px;
}
.footer-col ul{list-style:none}
.footer-col ul li{margin-bottom:12px}
.footer-col ul a{
  font-size:13px;
  color:rgba(255,255,255,0.6);
  transition:color 0.2s;
}
.footer-col ul a:hover{color:var(--cream)}
.footer-contact li{
  font-size:13px;
  color:rgba(255,255,255,0.6);
  line-height:1.9;
}

.footer-bottom{
  padding:24px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:18px;
  font-size:12px;
  color:rgba(255,255,255,0.45);
}
.footer-links{display:flex;gap:24px}
.footer-links a:hover{color:#fff}

/* زر واتساب */
.wa-float{
  position:fixed;
  bottom:24px;
  left:24px;
  width:56px;
  height:56px;
  background:#25D366;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:90;
  box-shadow:0 8px 24px rgba(37,211,102,0.4);
  transition:transform 0.2s;
}
.wa-float:hover{transform:scale(1.1)}
.wa-float svg{width:30px;height:30px}

/* انيميشن الكشف */
.reveal{
  opacity:0;
  transform:translateY(30px);
  transition:opacity 0.7s,transform 0.7s;
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

/* responsive للهيدر */
@media(max-width:1024px){
  .main-nav{display:none}
  .header-cta{display:none}
  .menu-toggle{display:flex;align-items:center;justify-content:center}
}
