/* ==========================================================================
   قهوجيين ومباشرين قهوة — هوية بصرية فاخرة
   ========================================================================== */
:root {
  --gold: #B0873F;
  --gold-light: #D4AF6A;
  --gold-soft: #E8D3AC;
  --gold-deep: #8A6A2E;
  --espresso: #211712;
  --espresso-2: #2C1E17;
  --coffee: #3B2A20;
  --cream: #FBF7F0;
  --cream-2: #F4ECDD;
  --ink: #241a14;
  --muted: #7a6a5c;
  --line: rgba(176, 135, 63, 0.22);
  --white: #ffffff;
  --shadow-sm: 0 4px 18px rgba(33, 23, 18, 0.08);
  --shadow-md: 0 16px 44px rgba(33, 23, 18, 0.14);
  --shadow-gold: 0 14px 38px rgba(176, 135, 63, 0.32);
  --r-lg: 22px;
  --r-md: 16px;
  --r-sm: 12px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Tajawal', 'Cairo', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  direction: rtl;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}

/* Utilities ---------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gold-deep);
  background: rgba(176, 135, 63, 0.1);
  border: 1px solid var(--line);
  padding: 7px 16px;
  border-radius: 100px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(176,135,63,0.18);
}

.section { padding: 92px 0; position: relative; }
.section-head { max-width: 680px; margin: 0 auto 54px; text-align: center; }
.section-head h2 {
  font-size: clamp(1.8rem, 4.4vw, 2.85rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--espresso);
  margin: 18px 0 14px;
  letter-spacing: -0.5px;
}
.section-head p { color: var(--muted); font-size: 1.08rem; }

.gold-text { color: var(--gold); }
.divider-gold {
  width: 66px; height: 3px; margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 15px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  color: #2a1e10;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 20px 46px rgba(176,135,63,0.42); }
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--cream);
  border: 1.5px solid rgba(232, 211, 172, 0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); transform: translateY(-3px); }
.btn-dark { background: var(--espresso); color: var(--cream); }
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; }

/* Header ------------------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 247, 240, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
}
.brand {
  display: flex; align-items: center; gap: 11px;
  min-width: 0; flex-shrink: 0;
}
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(140deg, var(--espresso), var(--coffee));
  display: grid; place-items: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-text { min-width: 0; }
.brand-text b {
  display: block; font-size: 1.02rem; font-weight: 800; color: var(--espresso);
  line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 130px;
}
.brand-text span {
  display: block; font-size: 0.68rem; color: var(--gold-deep); font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 130px;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin-inline-start: auto;
}
.nav-links a {
  padding: 9px 14px; border-radius: 10px; font-weight: 600; font-size: 0.95rem;
  color: var(--coffee); transition: background .2s, color .2s;
}
.nav-links a:hover { background: rgba(176,135,63,0.1); color: var(--gold-deep); }
.nav-cta { margin-inline-start: 8px; }
.nav-cta .btn { padding: 11px 22px; font-size: 0.95rem; max-height: 44px; }
.nav-toggle {
  display: none;
  margin-inline-start: auto;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--espresso); color: var(--cream);
  border: none; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* Mobile menu */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--cream);
  padding: 12px 22px 20px;
}
.mobile-menu.open { display: block; animation: fadeDown .3s var(--ease); }
.mobile-menu a {
  display: block; padding: 13px 12px; border-radius: 10px;
  font-weight: 600; color: var(--coffee); border-bottom: 1px solid rgba(176,135,63,0.1);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { margin-top: 14px; }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* Hero --------------------------------------------------------------------- */
.hero {
  position: relative;
  color: var(--cream);
  overflow: hidden;
  background: linear-gradient(155deg, var(--espresso) 0%, var(--coffee) 60%, #4a3323 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(120deg, rgba(28,20,15,0.94) 0%, rgba(33,23,18,0.82) 45%, rgba(33,23,18,0.55) 100%),
    url('https://images.unsplash.com/photo-1507133750040-4a8f57021571?auto=format&fit=crop&w=1600&q=80');
  background-size: cover; background-position: center;
}
.hero-glow {
  position: absolute; top: -20%; left: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(176,135,63,0.35), transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
  padding: 96px 0 104px;
}
.hero-content { max-width: 640px; }
.hero h1 {
  font-size: clamp(2.1rem, 6vw, 4rem);
  font-weight: 800; line-height: 1.16; letter-spacing: -1px;
  margin: 22px 0 18px;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--gold-light), var(--gold-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead {
  font-size: 1.16rem; color: rgba(251,247,240,0.86); max-width: 540px; margin-bottom: 30px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 26px; margin-top: 38px; flex-wrap: wrap;
  padding-top: 26px; border-top: 1px solid rgba(232,211,172,0.18);
}
.hero-trust .t-item b {
  display: block; font-size: 1.7rem; font-weight: 800; color: var(--gold-light);
  line-height: 1;
}
.hero-trust .t-item span { font-size: 0.85rem; color: rgba(251,247,240,0.72); }

.hero-visual { position: relative; }
.hero-card-img {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
  border: 1px solid rgba(232,211,172,0.25);
  aspect-ratio: 4/5;
}
.hero-card-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: 22px; right: -14px;
  background: rgba(251, 247, 240, 0.96);
  color: var(--espresso); border-radius: var(--r-md);
  padding: 16px 20px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line);
}
.hero-badge .hb-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  display: grid; place-items: center; color: #2a1e10;
}
.hero-badge b { display: block; font-size: 1.05rem; }
.hero-badge span { font-size: 0.8rem; color: var(--muted); }

/* Marquee / logos strip ---------------------------------------------------- */
.strip {
  background: var(--espresso-2);
  color: var(--gold-soft);
  padding: 18px 0;
  border-top: 1px solid rgba(232,211,172,0.12);
  border-bottom: 1px solid rgba(232,211,172,0.12);
}
.strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap; text-align: center;
}
.strip-item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.95rem; }
.strip-item svg { width: 20px; height: 20px; color: var(--gold-light); flex-shrink: 0; }

/* Features ------------------------------------------------------------------ */
.features { background: var(--cream); }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  position: relative; overflow: hidden;
}
.feature-card::after {
  content: ""; position: absolute; top: 0; right: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-light); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon {
  width: 58px; height: 58px; border-radius: 16px;
  background: linear-gradient(140deg, rgba(176,135,63,0.14), rgba(176,135,63,0.05));
  border: 1px solid var(--line);
  display: grid; place-items: center; margin-bottom: 18px;
  color: var(--gold-deep);
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.25rem; font-weight: 800; color: var(--espresso); margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 0.98rem; }

/* How it works ------------------------------------------------------------- */
.how { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.step {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 24px; text-align: center; position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step-num {
  width: 52px; height: 52px; margin: 0 auto 16px; border-radius: 50%;
  background: linear-gradient(135deg, var(--espresso), var(--coffee));
  color: var(--gold-light); display: grid; place-items: center;
  font-size: 1.3rem; font-weight: 800; border: 2px solid var(--gold);
}
.step h3 { font-size: 1.15rem; color: var(--espresso); margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.94rem; }

/* Packages ----------------------------------------------------------------- */
.packages { background: var(--cream); }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pkg {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 34px 28px; display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pkg.featured {
  background: linear-gradient(165deg, var(--espresso), var(--coffee));
  color: var(--cream); border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.pkg.featured .pkg-name,
.pkg.featured .pkg-price b { color: var(--cream); }
.pkg.featured .pkg-price span,
.pkg.featured .pkg-features li { color: rgba(251,247,240,0.85); }
.pkg-flag {
  position: absolute; top: 18px; left: 24px;
  background: var(--gold); color: #2a1e10; font-size: 0.75rem; font-weight: 800;
  padding: 5px 14px; border-radius: 100px;
}
.pkg-name { font-size: 1.35rem; font-weight: 800; color: var(--espresso); margin-bottom: 6px; }
.pkg-desc { font-size: 0.92rem; color: var(--muted); margin-bottom: 18px; }
.pkg.featured .pkg-desc { color: rgba(251,247,240,0.7); }
.pkg-price { margin-bottom: 22px; }
.pkg-price b { font-size: 2.2rem; font-weight: 800; color: var(--gold-deep); }
.pkg-price span { font-size: 0.9rem; color: var(--muted); }
.pkg.featured .pkg-price b { color: var(--gold-light); }
.pkg-features { list-style: none; margin-bottom: 26px; flex-grow: 1; }
.pkg-features li {
  display: flex; align-items: flex-start; gap: 10px; padding: 7px 0;
  font-size: 0.96rem; color: var(--coffee);
}
.pkg-features li svg { width: 19px; height: 19px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.pkg.featured .pkg-features li svg { color: var(--gold-light); }

/* Gallery ------------------------------------------------------------------ */
.gallery { background: linear-gradient(180deg, var(--cream), var(--cream-2)); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.gallery-grid figure {
  border-radius: var(--r-md); overflow: hidden; position: relative;
  aspect-ratio: 1; box-shadow: var(--shadow-sm);
}
.gallery-grid figure:nth-child(1),
.gallery-grid figure:nth-child(6) { grid-row: span 2; aspect-ratio: 1/2.06; }
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease); filter: saturate(1.05);
}
.gallery-grid figure:hover img { transform: scale(1.08); }

/* Testimonials ------------------------------------------------------------- */
.testimonials { background: var(--espresso); color: var(--cream); position: relative; overflow: hidden; }
.testimonials .section-head h2 { color: var(--cream); }
.testimonials .section-head p { color: rgba(251,247,240,0.7); }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.t-card {
  background: rgba(251,247,240,0.05);
  border: 1px solid rgba(232,211,172,0.16);
  border-radius: var(--r-lg); padding: 30px 26px;
  transition: transform .35s var(--ease), border-color .35s;
}
.t-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.t-stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--gold-light); }
.t-stars svg { width: 18px; height: 18px; }
.t-quote { font-size: 1.02rem; color: rgba(251,247,240,0.9); margin-bottom: 20px; line-height: 1.8; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  display: grid; place-items: center; color: #2a1e10; font-weight: 800; font-size: 1.1rem;
}
.t-author b { display: block; font-size: 1rem; color: var(--cream); }
.t-author span { font-size: 0.82rem; color: rgba(251,247,240,0.6); }

/* Order form --------------------------------------------------------------- */
.order { background: var(--cream); }
.order-wrap {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 40px; align-items: stretch;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md);
}
.order-aside {
  background: linear-gradient(165deg, var(--espresso), var(--coffee));
  color: var(--cream); padding: 46px 40px; position: relative; overflow: hidden;
}
.order-aside::before {
  content: ""; position: absolute; bottom: -30%; right: -20%; width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(176,135,63,0.3), transparent 70%); filter: blur(30px);
}
.order-aside h3 { font-size: 1.7rem; font-weight: 800; margin-bottom: 14px; position: relative; }
.order-aside p { color: rgba(251,247,240,0.8); margin-bottom: 28px; position: relative; }
.order-benefits { list-style: none; position: relative; }
.order-benefits li {
  display: flex; align-items: flex-start; gap: 12px; padding: 11px 0;
  border-bottom: 1px solid rgba(232,211,172,0.12); font-size: 0.98rem;
}
.order-benefits li:last-child { border-bottom: none; }
.order-benefits li svg { width: 22px; height: 22px; color: var(--gold-light); flex-shrink: 0; }
.order-contact {
  margin-top: 30px; position: relative; padding: 18px;
  background: rgba(251,247,240,0.06); border-radius: var(--r-md); border: 1px solid rgba(232,211,172,0.16);
}
.order-contact span { font-size: 0.82rem; color: rgba(251,247,240,0.65); display: block; }
.order-contact b { font-size: 1.25rem; color: var(--gold-light); direction: ltr; display: block; letter-spacing: 0.5px; }

.order-form { padding: 46px 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.9rem; font-weight: 700; color: var(--coffee); margin-bottom: 7px; }
.field label .req { color: #c0392b; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem;
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--cream); color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(176,135,63,0.14); background: var(--white);
}
.field textarea { resize: vertical; min-height: 84px; }
.field.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 6px; text-align: center; }
.form-msg {
  margin-top: 14px; padding: 13px 16px; border-radius: var(--r-sm);
  font-weight: 600; font-size: 0.95rem; display: none;
}
.form-msg.error { display: block; background: #fdecea; color: #b02a1a; border: 1px solid #f5c6bf; }
.form-alt {
  margin-top: 14px; text-align: center; font-size: 0.9rem; color: var(--muted);
}
.form-alt a { color: var(--gold-deep); font-weight: 700; }

/* Success card */
.order-success { display: none; padding: 60px 40px; text-align: center; }
.order-success.show { display: block; animation: pop .4s var(--ease); }
@keyframes pop { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }
.success-check {
  width: 82px; height: 82px; margin: 0 auto 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-gold);
}
.success-check svg { width: 42px; height: 42px; }
.order-success h3 { font-size: 1.7rem; color: var(--espresso); margin-bottom: 10px; }
.order-success p { color: var(--muted); margin-bottom: 8px; }
.order-no {
  display: inline-block; margin: 14px 0 22px; padding: 10px 24px;
  background: var(--cream-2); border: 1px dashed var(--gold); border-radius: 100px;
  font-weight: 800; color: var(--gold-deep); font-size: 1.15rem; letter-spacing: 1px;
}

/* FAQ ---------------------------------------------------------------------- */
.faq { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  margin-bottom: 14px; overflow: hidden; transition: box-shadow .3s, border-color .3s;
}
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--gold-light); }
.faq-q {
  width: 100%; text-align: right; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 1.08rem; font-weight: 700; color: var(--espresso);
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-q .faq-icon {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  background: rgba(176,135,63,0.12); color: var(--gold-deep);
  display: grid; place-items: center; transition: transform .3s var(--ease), background .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 24px 22px; color: var(--muted); }

/* CTA banner --------------------------------------------------------------- */
.cta-banner { background: var(--cream); }
.cta-box {
  background: linear-gradient(150deg, var(--espresso), var(--coffee) 60%, #4a3323);
  border-radius: var(--r-lg); padding: 60px 48px; text-align: center;
  position: relative; overflow: hidden; border: 1px solid var(--gold);
  box-shadow: var(--shadow-md);
}
.cta-box::before {
  content: ""; position: absolute; top: -40%; left: -10%; width: 50%; height: 120%;
  background: radial-gradient(circle, rgba(176,135,63,0.35), transparent 65%); filter: blur(40px);
}
.cta-box h2 { position: relative; font-size: clamp(1.7rem, 4vw, 2.6rem); color: var(--cream); font-weight: 800; margin-bottom: 14px; }
.cta-box p { position: relative; color: rgba(251,247,240,0.82); margin-bottom: 28px; font-size: 1.1rem; }
.cta-box .hero-cta { position: relative; justify-content: center; }

/* Footer ------------------------------------------------------------------- */
.footer { background: var(--espresso-2); color: rgba(251,247,240,0.7); padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer .brand-text b { color: var(--cream); max-width: none; }
.footer .brand-text span { color: var(--gold-light); max-width: none; }
.footer-col h4 { color: var(--cream); font-size: 1.05rem; margin-bottom: 16px; font-weight: 700; }
.footer-about { margin-top: 16px; font-size: 0.95rem; max-width: 320px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.95rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; align-items: center; gap: 10px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold-light); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(232,211,172,0.12); padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 0.86rem;
}
.footer-bottom a { color: var(--gold-light); }

/* Floating WhatsApp -------------------------------------------------------- */
.wa-float {
  position: fixed; bottom: 22px; left: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  transition: transform .3s var(--ease); animation: waPulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float .wa-label {
  position: absolute; right: 66px; background: var(--espresso); color: var(--cream);
  padding: 8px 14px; border-radius: 100px; font-size: 0.85rem; font-weight: 600;
  white-space: nowrap; opacity: 0; transform: translateX(10px); pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.wa-float:hover .wa-label { opacity: 1; transform: none; }
@keyframes waPulse {
  0% { box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* Reveal animation --------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* Mobile sticky CTA bar ---------------------------------------------------- */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 88;
  background: rgba(251,247,240,0.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); padding: 10px 14px;
  box-shadow: 0 -6px 22px rgba(33,23,18,0.12);
}
.mobile-cta-bar .btn { flex: 1; }
.mobile-cta-bar { gap: 10px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 72px 0 84px; }
  .hero-visual { max-width: 440px; margin: 0 auto; width: 100%; }
  .order-wrap { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .t-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid figure:nth-child(1),
  .gallery-grid figure:nth-child(6) { grid-row: auto; aspect-ratio: 1; }
}

@media (max-width: 640px) {
  .section { padding: 62px 0; }
  .container { padding-inline: 16px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .order-aside, .order-form { padding: 34px 24px; }
  .hero-trust { gap: 18px; }
  .hero-trust .t-item b { font-size: 1.4rem; }
  .strip-inner { gap: 20px; }
  .cta-box { padding: 44px 24px; }
  .hero-badge { right: 50%; transform: translateX(50%); bottom: -18px; }
  .hero-visual { margin-bottom: 24px; }
  .section-head { margin-bottom: 38px; }
  .wa-float { width: 54px; height: 54px; bottom: 76px; }
  .wa-float svg { width: 28px; height: 28px; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 0; }
  .footer { padding-bottom: 84px; }
  .hero-cta .btn { flex: 1; min-width: 140px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 1.95rem; }
  .brand-text b { max-width: 120px; }
}
