@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&display=swap');
:root {
  --font-body: 'Cairo', sans-serif;
  --font-display: 'Cairo', sans-serif;
  --font-tag: 'Cairo', sans-serif;
  --bg: #f4ece2;
  --bg-2: #e0d0ba;
  --card: rgba(60, 15, 18, 0.08);
  --card-2: rgba(60, 15, 18, 0.12);
  --text: #3C0F12;
  --muted: #8f7d6f;
  --accent: #7f5b40;
  --accent-2: #b28a6b;
  --accent-red: #3C0F12;
  --accent-soft: #d9c9b2;
  --border: rgba(60, 15, 18, 0.16);
  --shadow: 0 18px 40px rgba(60, 15, 18, 0.2);
  --shadow-strong: 0 26px 60px rgba(60, 15, 18, 0.28);
    --whatsappColor: #22C55E;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(124, 80, 64, 0.12), transparent 24%),
    radial-gradient(circle at left center, rgba(151, 97, 65, 0.10), transparent 24%),
    linear-gradient(135deg, var(--bg), var(--bg-2));
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.26), transparent 35%, rgba(171,67,63,0.08));
  pointer-events: none;
  z-index: -1;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.page-shell { min-height: 100vh; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(243, 234, 219, 0.95);
  backdrop-filter: blur(16px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 26px;
  border: 1px solid rgba(127, 91, 64, 0.16);
  border-radius: 35px;
  background: linear-gradient(135deg, rgba(244, 236, 224, 0.98), rgba(229, 214, 188, 0.95));
  box-shadow: 0 18px 34px rgba(60, 15, 18, 0.12);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; }
.main-nav { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.main-nav a {
  padding: 10px 14px;
  color: var(--muted);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.main-nav a:hover { background: rgba(122, 73, 48, 0.08); color: var(--accent); transform: translateY(-1px); }
.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.header-cta {
  background: linear-gradient(135deg, #3C0F12 0%, #7f5b40 100%);
  color: #f9f1e7;
  box-shadow: 0 18px 36px rgba(60, 15, 18, 0.28);
  border: 1px solid rgba(255,255,255,0.16);
}
.header-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #2b090d 0%, #654530 100%);
}
.btn-primary {
  background: linear-gradient(135deg, #3C0F12 0%, #7f5b40 100%);
  color: #f9f1e7;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 36px rgba(60, 15, 18, 0.28);
}
.btn-ghost {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--accent);
}
.header-cta:hover, .btn:hover { transform: translateY(-2px); }
.burger { display: none; background: rgba(60, 15, 18, 0.08); border: 1px solid rgba(60, 15, 18, 0.12); padding: 10px; border-radius: 14px; cursor: pointer; transition: background 0.25s ease, transform 0.25s ease; }
.burger:hover { background: rgba(60, 15, 18, 0.14); transform: translateY(-1px); }
.burger span { display: block; width: 22px; height: 3px; background: var(--text); margin: 4px 0; border-radius: 999px; transition: transform 0.25s ease, opacity 0.25s ease; }

.hero-section {
  position: relative;
  overflow: clip;
  min-height: 34rem;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  padding: 3.5rem 0;
}


.hero-section .hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-section .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-section .hero-slide.active {
  opacity: 1;
}

.hero-section .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.hero-section .hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to left, rgba(18, 12, 10, 0.92) 22%, rgba(36, 23, 16, 0.76) 50%, rgba(92, 69, 49, 0.24) 100%),
    linear-gradient(to top, rgba(27, 18, 13, 0.78), transparent 55%);
  pointer-events: none;
}



.hero-section .hero-content {
  position: relative;
  z-index: 3;
  width: min(72rem, calc(100% - 2.25rem));
  margin-inline: auto;
}

.hero-section .hero-copy {
  max-width: 40rem;
}

.hero-section .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(190, 145, 95, 0.45);
  border-radius: 999px;
  background: rgba(226, 170, 102, 0.16);
  color: #d9c9b2;
  font-family: var(--font-tag);
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.hero-section h1 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text);
  font-size: clamp(2.8rem, 6.4vw, 4.6rem);
  line-height: 1.2;
  margin: 0 0 1rem;
}

.hero-section h1 span {
  color: var(--accent-2);
}

.hero-section .hero-copy > p {
  color: rgba(255, 251, 242, 0.95);
  font-size: 1.15rem;
  line-height: 1.85;
  margin: 0 0 1.5rem;
}



.hero-section .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-section .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  border-radius: 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hero-section .btn-primary {
  background: linear-gradient(135deg, #3C0F12 0%, #7f5b40 100%);
  color: #f9f1e7;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 36px rgba(60, 15, 18, 0.28);
}

.hero-section .btn-primary:hover {
  background: linear-gradient(135deg, rgba(178, 138, 107, 1), rgba(126, 86, 59, 1));
  color: #3C0F12;
  transform: translateY(-2px);
}

.hero-section .btn-ghost {
  background: rgba(60, 15, 18, 0.06);
  color: var(--text);
  border: 1px solid rgba(60, 15, 18, 0.2);
}

.hero-section .btn-ghost:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
  transform: translateY(-2px);
}

.hero-section .btn:focus-visible,
.hero-section .slider-control:focus-visible,
.hero-section .slider-dot:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}



.hero-section .hero-seal {
  position: absolute;
  z-index: 4;
  top: 1.5rem;
  left: 1.5rem;
  width: 5.5rem;
  height: 5.5rem;
}

.hero-section .hero-seal-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: hero-seal-spin 40s linear infinite;
}

.hero-section .hero-seal-ring-outer,
.hero-section .hero-seal-ring-inner {
  fill: none;
  stroke: var(--accent-2);
}

.hero-section .hero-seal-ring-outer { stroke-width: 1.5; }

.hero-section .hero-seal-ring-inner {
  stroke-width: 1;
  stroke-dasharray: 2 5;
  opacity: 0.7;
}

@keyframes hero-seal-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-section .hero-seal-core {
  position: absolute;
  inset: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  border-radius: 50%;
  background: rgba(60, 15, 18, 0.88);
  backdrop-filter: blur(2px);
  box-shadow: inset 0 0 0 1px rgba(126, 84, 63, 0.3);
  color: var(--accent-2);
}

.hero-section .hero-seal-core i { font-size: 1rem; }

.hero-section .hero-seal-core span {
  font-family: var(--font-tag);
  font-size: 0.58rem;
  text-align: center;
  line-height: 1.2;
}

/* ---------- أسهم ونقاط التنقل ---------- */

.hero-section .hero-slider-nav {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.hero-section .slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(60, 15, 18, 0.24);
  background: rgba(60, 15, 18, 0.55);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-section .slider-control:hover {
  background: rgba(60, 15, 18, 0.9);
  border-color: var(--accent-2);
  color: var(--accent-2);
}

.hero-section .slider-control.prev { right: 1rem; }
.hero-section .slider-control.next { left: 1rem; }

.hero-section .slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  pointer-events: auto;
}

.hero-section .slider-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  border: 1px solid rgba(250, 246, 236, 0.6);
  background: rgba(250, 246, 236, 0.25);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-section .slider-dot.active {
  background: var(--accent-2);
  border-color: var(--accent-2);
  transform: scale(1.15);
}

/* ---------- reveal (نفس الـ IntersectionObserver الموجود عندك) ---------- */

.reveal {
  opacity: 0;
  transform: translateY(1.2rem) scale(0.98);
  transition: opacity 0.72s ease, transform 0.72s ease;
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.process-card.reveal {
  --enter-offset: 1rem;
  opacity: 0;
  transform: translateX(var(--enter-offset)) translateY(1.2rem) scale(0.98);
}

.process-card:nth-child(odd).reveal {
  --enter-offset: -1rem;
}

.process-card.reveal.in {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}

/* ---------- Breakpoints (موبايل أولًا) ---------- */

@media (min-width: 30rem) { /* 480px */
  .hero-section { min-height: 38rem; padding: 4rem 0; }
}

@media (min-width: 48rem) { /* 768px */
  .hero-section { min-height: 42rem; padding: 5rem 0; }
  .hero-section .hero-seal { width: 6.5rem; height: 6.5rem; top: 2rem; left: 2rem; }
  .hero-section .slider-control { width: 3.25rem; height: 3.25rem; }
}

@media (min-width: 64rem) { /* 1024px */
  .hero-section { min-height: 46rem; padding: 6rem 0; }
  .hero-section .hero-copy { max-width: 42rem; }
}

@media (min-width: 80rem) { /* 1280px */
  .hero-section { min-height: 48rem; }
}

/* ---------- حركة أقل لمن يفضّلها ---------- */

@media (prefers-reduced-motion: reduce) {
  .hero-section .hero-slide,
  .hero-section .hero-seal-ring,
  .hero-section .reveal,
  .hero-section .slider-dot,
  .portfolio-card {
    animation: none !important;
    transition: none !important;
  }
  .hero-section .reveal {
    opacity: 1;
    transform: none;
  }
}
.services-section, .faq-section, .stats-section, .process-section, .feature-section, .showcase-section, .portfolio-section { padding: 42px 0 64px; }
.section-head { margin-bottom: 24px; }
.section-head.center { text-align: center; }
.service-grid, .process-grid, .feature-grid { display: grid; gap: 18px; }
.service-grid { grid-template-columns: repeat(4, 1fr); }
.process-grid { grid-template-columns: repeat(3, 1fr); }
.feature-grid { grid-template-columns: repeat(2, 1fr); }
.service-card, .about-card, .contact-card, .stat-card, .faq-item, .process-card, .feature-card, .portfolio-card {
  background: rgba(255, 251, 244, 0.92);
  border: 1px solid rgba(127, 91, 64, 0.12);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 16px 34px rgba(60, 15, 18, 0.12);
}
.service-card h3, .process-card h3, .feature-card h3 { color: var(--accent); }
.process-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(151, 97, 65, 0.16);
  box-shadow: 0 22px 48px rgba(60, 15, 18, 0.08);
  border-radius: 28px;
  padding: 28px 26px;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(60, 15, 18, 0.12);
  border-color: rgba(151, 97, 65, 0.24);
}
.process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(178, 138, 107, 0.95), rgba(127, 91, 64, 0.85));
}
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(60, 15, 18, 0.18);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 75%;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(142, 84, 59, 0.08));
  pointer-events: none;
}
.service-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #7f5b40, #3C0F12);
  box-shadow: 0 12px 24px rgba(60, 15, 18, 0.18);
  color: #fff;
}
.service-icon i {
  font-size: 1.1rem;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.portfolio-card {
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
  animation: softPulse 8s ease-in-out infinite;
}
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 46px rgba(60, 15, 18, 0.18);
}
.portfolio-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.portfolio-body { padding: 22px 22px 26px; }
.portfolio-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.portfolio-pill {
  display: inline-block;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(95,127,59,0.12);
  color: var(--accent-2);
  font-size: 0.8rem;
  font-weight: 800;
}
.portfolio-card i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-red));
  color: #fff;
}
.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  padding: 0;
  list-style: none;
}
.portfolio-tags li {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--card-2);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.showcase-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 24px; align-items: center; }
.showcase-copy, .feature-card, .service-card, .about-card, .contact-card, .stat-card, .faq-item, .process-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* ---------- about & contact page enhancements ---------- */
.inner-hero,
.contact-hero {
  padding: 64px 0;
}

.inner-hero .wrap,
.contact-hero .wrap,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 1.1fr) minmax(18rem, 0.9fr);
  gap: 32px;
  align-items: center;
}

.inner-hero .eyebrow,
.contact-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(242, 229, 210, 0.65);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.inner-hero h1,
.contact-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  color: var(--text);
  margin: 0 0 1.15rem;
}

.inner-hero p,
.contact-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 44rem;
}

.image-card,
.contact-card,
.stat-card,
.faq-item {
  background: #fff;
  border: 1px solid rgba(151, 97, 65, 0.14);
  box-shadow: 0 20px 48px rgba(60, 15, 18, 0.08);
  border-radius: 28px;
}

.image-card {
  overflow: hidden;
  min-height: 360px;
}

.image-card img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.stat-card {
  padding: 32px 24px;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 2.2rem;
  color: var(--accent-red);
  margin-bottom: 10px;
}

.stat-card span {
  color: var(--text);
  font-weight: 700;
}

.faq-item {
  padding: 22px 24px;
  border-radius: 28px;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: right;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0;
  font-weight: 700;
}

.faq-answer {
  display: none;
  padding-top: 16px;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.contact-card {
  padding: 32px 28px;
}

.contact-card h3 {
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 1.5rem;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.contact-card li {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--text);
  font-size: 1rem;
}

.contact-card li i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #7f5b40, #3C0F12);
  color: #fff;
  flex-shrink: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.contact-actions .btn {
  min-width: 170px;
  padding: 14px 22px;
}

@media (max-width: 900px) {
  .inner-hero .wrap,
  .contact-hero .wrap,
  .contact-grid,
  .about-grid,
  .showcase-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero,
  .contact-hero {
    padding: 48px 0;
  }

  .image-card {
    min-height: 280px;
  }

  .contact-card,
  .image-card,
  .stat-card,
  .faq-item {
    padding: 24px;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}
.showcase-copy:hover, .feature-card:hover, .service-card:hover, .about-card:hover, .contact-card:hover, .stat-card:hover, .process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(60, 42, 31, 0.14);
}
.showcase-list { display: grid; gap: 12px; margin-top: 18px; }
.showcase-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
}
.showcase-item i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-red));
  color: #fff;
  flex-shrink: 0;
}
.showcase-media { position: relative; }
.showcase-media img {
  min-height: 360px;
  object-fit: cover;
}
.showcase-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.95);
  color: var(--accent);
  font-weight: 800;
  box-shadow: var(--shadow);
}
.feature-card.feature-highlight {
  display: grid;
  grid-template-columns: minmax(18rem, 1.05fr) minmax(18rem, 0.95fr);
  gap: 16px;
  align-items: start;
}
.feature-card-media {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 280px;
  box-shadow: 0 14px 32px rgba(60, 15, 18, 0.14);
}
.feature-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.feature-card:hover .feature-card-media img {
  transform: scale(1.03);
}
.feature-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 249, 0.94);
  color: var(--accent);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(60, 15, 18, 0.12);
}
.feature-card-body {
  display: grid;
  gap: 14px;
}
.info-pills {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.info-pills span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(126, 86, 59, 0.08);
  color: #3C0F12;
  font-weight: 700;
}
.info-pills span i {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #7f5b40, #3C0F12);
  color: #fff;
}
.check-list { padding: 0; list-style: none; margin: 16px 0 0; display: grid; gap: 10px; }
.check-list li::before { content: "✓ "; color: var(--accent-2); margin-left: 6px; }
.step-item { display: flex; gap: 14px; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.step-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
.step-item span { color: var(--accent-red); font-weight: 800; }
.faq-list { display: grid; gap: 14px; }
.faq-question {
  width: 100%; border: 0; background: transparent; color: var(--text); font: inherit; text-align: right; display: flex; justify-content: space-between; align-items: center; padding: 0;
}
.faq-answer { display: none; padding-top: 10px; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stat-card { text-align: center; }
.stat-card strong { display: block; font-size: 1.8rem; color: var(--accent-red); }
.contact-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.contact-card li { display: flex; gap: 10px; align-items: center; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

.site-footer { padding: 46px 0 28px; border-top: 1px solid var(--border); background: rgba(255,255,255,0.4); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: 24px; }
.site-footer h3, .site-footer h4 { color: var(--accent); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }

@media (max-width: 900px) {
  .hero-grid, .inner-hero-grid, .contact-grid, .about-grid, .showcase-grid, .footer-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .process-grid, .feature-grid, .stat-grid { grid-template-columns: 1fr; }
  .feature-card.feature-highlight {
    grid-template-columns: 1fr;
  }
  .feature-card.feature-highlight .feature-card-media {
    min-height: 220px;
  }
  .feature-card.feature-highlight .feature-card-body {
    gap: 12px;
  }
}

@media (max-width: 760px) {
  .header-inner { border-radius: 24px; padding: 12px 16px; }
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    background: rgba(255, 255, 250, 0.98);
    padding: 16px;
    border: 1px solid rgba(127, 91, 64, 0.14);
    border-radius: 22px;
    display: none;
    box-shadow: 0 24px 42px rgba(60, 15, 18, 0.14);
    gap: 10px;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    width: 100%;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
  }
  .main-nav a:hover { background: rgba(151, 97, 65, 0.08); color: var(--accent); }
  .header-cta { display: none; }
  .burger { display: inline-flex; }
  .service-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .feature-card.feature-highlight {
    padding: 18px;
  }
  .feature-card.feature-highlight .feature-card-media {
    min-height: 200px;
  }
}
/* =========================================================
   Floating contact icons — glass pills
   ========================================================= */
.floating-icons {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.floating-icons a {
    width: 58px;
    height: 58px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: #fff;
    font-size: .6rem;
    font-weight:700;
    text-decoration: none;
    box-shadow: 0 16px 32px -14px rgba(11,37,69,.5);
    overflow: hidden;
    backdrop-filter: blur(6px);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.floating-icons a:hover {
    color: #fff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 36px -14px rgba(11,37,69,.6);
}

.floating-icons .fa-whatsapp {
    font-size: 21px;
}

.floating-icons .fa-phone {
    font-size: 21px;
}

.floating-icons .phone-icon {
    background:linear-gradient(135deg, var(--accent), var(--accent-red));
}

.floating-icons .whatsapp-icon {
    background-color: var(--whatsappColor);
}
