/* =========================================================
   ZIDCODER — Fonts (تصحيح الأسماء: thmanyahserifdisplay-*)
   ========================================================= */
@font-face {
  font-family: 'Thmanyah Serif Display';
  src: url('../fonts/thmanyahserifdisplay-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Thmanyah Serif Display';
  src: url('../fonts/thmanyahserifdisplay-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Thmanyah Serif Display';
  src: url('../fonts/thmanyahserifdisplay-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Thmanyah Serif Display';
  src: url('../fonts/thmanyahserifdisplay-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Thmanyah Serif Display';
  src: url('../fonts/thmanyahserifdisplay-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* =========================================================
   ZIDCODER — Root variables (LIGHT MODE = الافتراضي)
   ========================================================= */
:root {
  --zc-lime: #d3ff2e;
  --zc-lime-ink: #0a0e19; /* نص فوق اللايم */

  /* Light mode (افتراضي) */
  --zc-bg: #ffffff;
  --zc-bg-soft: #0a0e190d;
  --zc-bg-soft-hover: #0a0e191a;
  --zc-ink: #0a0e19;
  --zc-ink-soft: #0a0e1999;
  --zc-border: #0a0e191f;
  --zc-dot: #0a0e1922;

  --zc-font: 'Thmanyah Serif Display', 'Cairo', sans-serif;
  --zc-radius-pill: 999px;
  --zc-container-max: 1400px;

  color-scheme: light;
  transition: background-color .3s ease, color .3s ease;
}

/* Dark mode (يُفعّل بإضافة class على html عبر الزر) */
html.zc-theme-dark {
  --zc-bg: #0a0e19;
  --zc-bg-soft: #ffffff0d;
  --zc-bg-soft-hover: #ffffff1a;
  --zc-ink: #ffffff;
  --zc-ink-soft: #ffffff99;
  --zc-border: #ffffff1f;
  --zc-dot: #ffffff22;

  color-scheme: dark;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--zc-bg);
  font-family: var(--zc-font);
  font-weight: 400;
  color: var(--zc-ink);
  scroll-behavior: smooth;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* =========================================================
   HERO SECTION
   ========================================================= */
.zc-hero {
  position: relative;
  background: var(--zc-bg);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  transition: background-color .3s ease;
}

.zc-hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--zc-dot) 1.4px, transparent 1.4px);
  background-size: 28px 28px;
  background-position: 20px 20px;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 78%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.zc-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--zc-container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
}

/* =========================================================
   NAVBAR (profile يمين / أدوات التحكم يسار)
   ========================================================= */
.zc-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: clamp(1.25rem, 3vw, 2rem);
}

.zc-navbar__left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.zc-navbar__menu-btn,
.zc-theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--zc-border);
  background: var(--zc-bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--zc-ink);
  cursor: pointer;
  transition: box-shadow .2s ease, transform .2s ease, background-color .2s ease, color .2s ease;
}

.zc-navbar__menu-btn:hover,
.zc-theme-toggle:hover {
  background: var(--zc-lime);
  color: var(--zc-lime-ink);
  transform: translateY(-1px);
}

.zc-navbar__menu-btn:focus-visible,
.zc-theme-toggle:focus-visible {
  outline: 2px solid var(--zc-lime);
  outline-offset: 2px;
}

/* أيقونات زر الوضع: نعرض واحدة حسب الحالة */
.zc-theme-toggle__icon-light { display: none; }
html.zc-theme-dark .zc-theme-toggle__icon-dark { display: none; }
html.zc-theme-dark .zc-theme-toggle__icon-light { display: inline-block; }

.zc-navbar__profile {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--zc-bg-soft);
  border: 1px solid var(--zc-border);
  border-radius: var(--zc-radius-pill);
  padding: 0.35rem 0.5rem 0.35rem 1rem;
}

.zc-navbar__profile-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  text-align: right;
}

.zc-navbar__profile-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--zc-ink);
}

.zc-navbar__profile-role {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--zc-ink-soft);
}

.zc-navbar__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.zc-offcanvas-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.zc-offcanvas-nav a {
  display: block;
  padding: 0.85rem 0.5rem;
  font-weight: 500;
  border-bottom: 1px solid var(--zc-border);
  transition: color .2s ease;
  color: var(--zc-ink);
}

.zc-offcanvas-nav a:hover { color: var(--zc-lime-ink); }

.offcanvas {
  background: var(--zc-bg);
  color: var(--zc-ink);
}

/* =========================================================
   HERO CONTENT
   ========================================================= */
.zc-hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: clamp(2rem, 6vw, 3rem);
}

.zc-hero__title {
  font-family: var(--zc-font);
  font-weight: 900;
  font-size: clamp(2rem, 8vw, 4rem);
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
  color: var(--zc-ink);
  max-width: 850px;
  margin-inline: auto;
}

.zc-hero__title::selection { background: var(--zc-lime); color: var(--zc-lime-ink); }

.zc-hero__subtitle {
  max-width: 46rem;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 400;
  line-height: 1.9;
  color: var(--zc-ink-soft);
}

.zc-hero__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.zc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.85rem;
  border-radius: var(--zc-radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
  border: 1px solid transparent;
}

.zc-btn--ghost {
  background: var(--zc-bg-soft);
  color: var(--zc-ink);
  border-color: var(--zc-border);
}

.zc-btn--ghost:hover {
  background: var(--zc-bg-soft-hover);
  transform: translateY(-2px);
}

.zc-btn--solid {
  background: var(--zc-lime);
  color: var(--zc-lime-ink);
}

.zc-btn--solid:hover {
  box-shadow: 0 8px 22px rgba(211, 255, 46, 0.4);
  transform: translateY(-2px);
}

.zc-btn:focus-visible {
  outline: 2px solid var(--zc-lime);
  outline-offset: 3px;
}

/* =========================================================
   TRUST BAR + AUTO MARQUEE (مُصلَّح للـ RTL)
   ========================================================= */
.zc-trustbar {
  border-top: 1px solid var(--zc-border);
  padding-block: clamp(1.5rem, 3vw, 2.25rem);
}

.zc-trustbar__inner {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.zc-marquee {
  flex: 1;
  overflow: hidden;
  /* نفرض LTR على حاوية السلايدر فقط عشان اتجاه السحب يبقى متوقع بغض النظر عن RTL الصفحة */
  direction: ltr;
  -webkit-mask-image: linear-gradient(to left, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to left, transparent 0%, black 8%, black 92%, transparent 100%);
}

.zc-marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 3.5rem);
  width: max-content;
  direction: ltr;
  animation: zc-marquee-scroll 30s linear infinite;
  will-change: transform;
}

.zc-marquee:hover .zc-marquee__track {
  animation-play-state: paused;
}

@keyframes zc-marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.zc-marquee__item {
  display: flex;
  align-items: center;
  height: 28px;
  opacity: 0.75;
  transition: opacity .2s ease;
  flex-shrink: 0;
}

.zc-marquee__item:hover { opacity: 1; }

.zc-marquee__item img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: var(--zc-logo-filter, none);
}

/* في الوضع الداكن نخلي اللوجوهات أبيض لو كانت بالأصل سوداء */
html.zc-theme-dark .zc-marquee__item img {
  filter: brightness(0) invert(1);
}

.zc-trustbar__divider {
  width: 1px;
  height: 32px;
  background: var(--zc-border);
  flex-shrink: 0;
  display: none;
}

.zc-trustbar__social-proof {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

.zc-trustbar__rating {
  display: flex;
  gap: 2px;
  color: var(--zc-ink);
  font-size: 0.8rem;
}
.zc-trustbar__rating i{
  color: gold;
}
.zc-trustbar__count {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--zc-ink-soft);
  white-space: nowrap;
}

.zc-trustbar__avatars {
  display: flex;
  align-items: center;
}

.zc-trustbar__avatar-item {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--zc-bg);
  margin-inline-start: -10px;
}

.zc-trustbar__avatar-item:first-child { margin-inline-start: 0; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (min-width: 768px) {
  .zc-trustbar__divider { display: block; }
}

@media (min-width: 992px) {
  .zc-hero__inner { padding-inline: clamp(2rem, 5vw, 5rem); }
}

@media (min-width: 1600px) {
  :root { --zc-container-max: 1600px; }
}

@media (max-width: 767px) {
  .zc-trustbar__inner { flex-direction: column; align-items: stretch; }
  .zc-trustbar__social-proof { justify-content: center; }
}

@media (max-width: 420px) {
  .zc-navbar__profile-text { display: none; }
  .zc-navbar__profile { padding: 0.25rem; }
  .zc-hero__actions { width: 100%; }
  .zc-btn { flex: 1 1 auto; }
}

@media (prefers-reduced-motion: reduce) {
  .zc-navbar__menu-btn, .zc-theme-toggle, .zc-btn, .zc-offcanvas-nav a { transition: none; }
  .zc-marquee__track { animation: none; }
}


/* =========================================================
   WORK / PORTFOLIO SECTION
   ========================================================= */
.zc-work {
  background: var(--zc-bg);
  padding-block: clamp(2rem, 5vw, 4rem) clamp(3rem, 7vw, 6rem);
}

.zc-work__inner {
  width: 100%;
  max-width: var(--zc-container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
}

.zc-work__title {
  font-family: var(--zc-font);
  font-weight: 900;
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  text-align: center;
  color: var(--zc-ink);
  margin: 0 0 clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
}

/* Grid */
.zc-work__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (min-width: 768px) {
  .zc-work__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card */
.zc-work-card {
  position: relative;
  display: block;
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 1 / 0.92;
  background: var(--zc-bg-soft);
  isolation: isolate;
}

.zc-work-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}

.zc-work-card:hover .zc-work-card__img {
  transform: scale(1.06);
}

/* Bottom caption gradient (default resting state) */
.zc-work-card__caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  padding-top: 4.5rem;
  background: linear-gradient(to top, rgba(10,14,25,0.72) 0%, rgba(10,14,25,0.35) 55%, transparent 100%);
  color: #ffffff;
  text-align: right;
  transition: opacity .35s ease;
  z-index: 2;
}

.zc-work-card__caption-title {
  font-family: var(--zc-font);
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  margin: 0 0 0.25rem;
}

.zc-work-card__caption-subtitle {
  font-size: clamp(0.85rem, 1.4vw, 0.95rem);
  font-weight: 400;
  margin: 0;
  color: #ffffffcc;
}

/* Hover overlay: darken image + centered "view project" pill */
.zc-work-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 14, 25, 0.45);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 3;
}

.zc-work-card:hover .zc-work-card__overlay,
.zc-work-card:focus-visible .zc-work-card__overlay {
  opacity: 1;
}

.zc-work-card:hover .zc-work-card__caption,
.zc-work-card:focus-visible .zc-work-card__caption {
  opacity: 0;
}

.zc-work-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(10, 14, 25, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid #ffffff33;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem 1.1rem 0.65rem 0.65rem;
  border-radius: var(--zc-radius-pill);
  transform: translateY(8px);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease, background-color .2s ease;
}

.zc-work-card:hover .zc-work-card__cta,
.zc-work-card:focus-visible .zc-work-card__cta {
  transform: translateY(0);
  opacity: 1;
}

.zc-work-card__cta:hover {
  background: var(--zc-lime);
  color: var(--zc-lime-ink);
  border-color: var(--zc-lime);
}

.zc-work-card__cta-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff1a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.zc-work-card__cta:hover .zc-work-card__cta-icon {
  background: var(--zc-lime-ink);
  color: var(--zc-lime);
}

.zc-work-card:focus-visible {
  outline: 2px solid var(--zc-lime);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .zc-work-card__img,
  .zc-work-card__caption,
  .zc-work-card__overlay,
  .zc-work-card__cta {
    transition: none;
  }
}


/* =========================================================
   ABOUT / PROFILE SECTION
   ========================================================= */
.zc-about {
  background: var(--zc-bg);
  padding-block: clamp(2rem, 5vw, 3rem) clamp(4rem, 8vw, 7rem);
}

.zc-about__inner {
  width: 100%;
  max-width: var(--zc-container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
}

/* ---- Text column ---- */
.zc-about__eyebrow {
  font-family: var(--zc-font);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--zc-ink-soft);
  margin: 0 0 0.35rem;
}

.zc-about__heading {
  font-family: var(--zc-font);
  font-weight: 900;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  color: var(--zc-ink);
  line-height: 1.35;
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
}

.zc-about__paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  max-width: 42rem;
}

.zc-about__paragraphs p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 2;
  color: var(--zc-ink-soft);
  font-weight: 400;
}

.zc-about__paragraphs strong {
  color: var(--zc-ink);
  font-weight: 700;
}

/* ---- Tools row ---- */
/* =========================================================
   ABOUT — TOOLS/SKILLS AUTO MARQUEE (يستبدل .zc-about__tools القديم)
   ========================================================= */
.zc-tools-marquee {
  overflow: hidden;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  direction: ltr; /* نفس منطق marquee العملاء: يمنع تضارب اتجاه الحركة مع RTL الصفحة */
  -webkit-mask-image: linear-gradient(to left, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to left, transparent 0%, black 6%, black 94%, transparent 100%);
}

.zc-tools-marquee__track {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: max-content;
  direction: ltr;
  animation: zc-tools-scroll 26s linear infinite;
  will-change: transform;
}

.zc-tools-marquee:hover .zc-tools-marquee__track {
  animation-play-state: paused;
}

@keyframes zc-tools-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.zc-tool-icon {
  width: 42px;
  height: 42px;
  border-radius: 0.85rem;
  background: var(--zc-tool-bg, var(--zc-ink));
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: transform .2s ease, box-shadow .2s ease;
}

.zc-tool-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(10,14,25,0.15);
}

/* لوجوهات الصور (خمسات / مستقل) داخل نفس مقاس المربع، بخلفية بيضاء بدل لون solid */
.zc-tool-icon--logo {
  background: #323232;
  border: 1px solid var(--zc-border);
  padding: 0.55rem;
}

.zc-tool-icon--logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  .zc-tools-marquee__track { animation: none; }
  .zc-tool-icon { transition: none; }
}

/* ---- Timeline ---- */
.zc-about__timeline-title {
  font-family: var(--zc-font);
  font-weight: 800;
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  color: var(--zc-ink);
  margin: 0 0 1.25rem;
}

.zc-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.zc-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  background: var(--zc-bg-soft);
  border: 1px solid var(--zc-border);
  border-radius: 0.9rem;
}

.zc-timeline-item__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--zc-lime);
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.zc-timeline-item__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.zc-timeline-item__role {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--zc-ink);
}

.zc-timeline-item__meta {
  font-size: 0.82rem;
  color: var(--zc-ink-soft);
}

.zc-timeline-item__period {
  font-size: 0.78rem;
  color: var(--zc-ink-soft);
  white-space: nowrap;
  margin-inline-start: auto;
}

.zc-about__timeline-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--zc-bg-soft);
  border: 1px solid var(--zc-border);
  color: var(--zc-ink);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.6rem 1.1rem;
  border-radius: var(--zc-radius-pill);
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}

.zc-about__timeline-toggle:hover {
  background: var(--zc-lime);
  color: var(--zc-lime-ink);
}

.zc-about__timeline-toggle i {
  font-size: 0.8rem;
  transition: transform .3s ease;
}

.zc-about__timeline-toggle.zc-is-open i {
  transform: rotate(180deg);
}

/* ---- Media column (photo + social + profile) ---- */
.zc-about__media-col {
  display: flex;
  flex-direction: column;
}

.zc-about__photo-wrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 4 / 3.55;
  background: var(--zc-bg-soft);
}

.zc-about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.zc-about__social {
  position: absolute;
  bottom: 1rem;
  inset-inline: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.zc-about__social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(10,14,25,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  border: 1px solid #ffffff26;
  transition: background-color .2s ease, transform .2s ease;
}

.zc-about__social-icon:hover {
  background: var(--zc-lime);
  color: var(--zc-lime-ink);
  transform: translateY(-2px);
}

.zc-about__social-icon--text span {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
}

.zc-about__profile {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 1.25rem;
}

.zc-about__profile-name {
  font-family: var(--zc-font);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--zc-ink);
}

.zc-about__profile-role {
  font-size: 0.9rem;
  color: var(--zc-ink-soft);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (min-width: 992px) {
  .zc-about__text-col {
    padding-inline-end: clamp(1.5rem, 3vw, 3rem);
  }
  .zc-about__media-col {
    padding-top: clamp(3.5rem, 6vw, 5rem); /* aligns photo top with heading area like the shot */
  }
}

@media (max-width: 575px) {
  .zc-timeline-item {
    flex-wrap: wrap;
  }
  .zc-timeline-item__period {
    margin-inline-start: 0;
    margin-top: 0.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zc-about__tool-icon,
  .zc-about__social-icon,
  .zc-about__timeline-toggle,
  .zc-about__timeline-toggle i {
    transition: none;
  }
}


/* =========================================================
   SERVICES SECTION
   ========================================================= */
.zc-services {
  background: var(--zc-bg);
  padding-block: clamp(2rem, 5vw, 4rem) clamp(3rem, 7vw, 6rem);
}

.zc-services__inner {
  width: 100%;
  max-width: var(--zc-container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
}

.zc-services__title {
  font-family: var(--zc-font);
  font-weight: 900;
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  text-align: center;
  color: var(--zc-ink);
  margin: 0 0 clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.2;
}

/* ---- Grid of 3 cards ---- */
.zc-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

@media (min-width: 768px) {
  .zc-services__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
  /* Middle card sits slightly taller/forward, like the screenshot */
  .zc-service-card--featured {
    margin-top: -0.75rem;
    box-shadow: 0 16px 40px rgba(10,14,25,0.1);
  }
}

/* ---- Card ---- */
.zc-service-card {
  background: var(--zc-bg);
  border: 1px solid var(--zc-border);
  border-radius: 1.1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}

.zc-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(10,14,25,0.1);
}

.zc-service-card__header {
  background: var(--zc-card-accent, var(--zc-ink));
  color: #ffffff;
  text-align: center;
  font-family: var(--zc-font);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.95rem 1rem;
}

.zc-service-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.zc-service-card__list li {
  padding: 0.95rem 1.25rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--zc-ink-soft);
  border-bottom: 1px solid var(--zc-border);
}

.zc-service-card__list li:last-child {
  border-bottom: none;
}

/* ---- CTA banner ---- */
.zc-cta-banner {
  background: var(--zc-bg);
  border: 1px solid var(--zc-border);
  border-radius: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: center;
}

.zc-cta-banner__text {
  font-family: var(--zc-font);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: var(--zc-ink);
  line-height: 1.4;
  margin: 0;
}

.zc-cta-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .zc-cta-banner {
    flex-direction: row;
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zc-service-card {
    transition: none;
  }
}

/* =========================================================
   HOW I HELP SECTION
   ========================================================= */
.zc-help {
  background: var(--zc-bg);
  padding-block: clamp(2rem, 5vw, 4rem) 0;
}

.zc-help__inner {
  width: 100%;
  max-width: var(--zc-container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
}

.zc-help__title {
  font-family: var(--zc-font);
  font-weight: 900;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: var(--zc-ink);
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
}

/* ---- Groups ---- */
.zc-help__groups {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.zc-help-group__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--zc-ink-soft);
  margin: 0 0 1rem;
}

.zc-help-group__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---- Tag pill ---- */
.zc-help-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--zc-bg);
  border: 1px solid var(--zc-border);
  border-radius: var(--zc-radius-pill);
  padding: 0.55rem 0.6rem 0.55rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--zc-ink);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.zc-help-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(10,14,25,0.08);
  border-color: transparent;
}

.zc-help-tag__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--zc-tag-accent, var(--zc-ink));
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* =========================================================
   BOTTOM TRUSTED-BY MARQUEE
   ========================================================= */
.zc-help-trust {
  border-top: 1px solid var(--zc-border);
  padding-block: clamp(1.25rem, 2.5vw, 1.75rem);
}

.zc-help-trust__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--zc-ink-soft);
  text-align: center;
  margin: 0 0 1rem;
}

.zc-help-trust__marquee {
  width: 100%;
  max-width: var(--zc-container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
  overflow: hidden;
  direction: ltr;
  -webkit-mask-image: linear-gradient(to left, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to left, transparent 0%, black 6%, black 94%, transparent 100%);
}

.zc-help-trust__track {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 3.5rem);
  width: max-content;
  direction: ltr;
  animation: zc-help-trust-scroll 28s linear infinite;
  will-change: transform;
}

.zc-help-trust__marquee:hover .zc-help-trust__track {
  animation-play-state: paused;
}

@keyframes zc-help-trust-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.zc-help-trust__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--zc-ink);
  opacity: 0.85;
  flex-shrink: 0;
  transition: opacity .2s ease;
}

.zc-help-trust__brand:hover { opacity: 1; }

.zc-help-trust__brand i {
  font-size: 1.15rem;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 575px) {
  .zc-help-tag {
    font-size: 0.88rem;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
  }
  .zc-help-tag__icon {
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zc-help-tag { transition: none; }
  .zc-help-trust__track { animation: none; }
}


/* =========================================================
   TESTIMONIALS SECTION
   ========================================================= */
.zc-testimonials {
  background: var(--zc-bg);
  padding-block: clamp(2rem, 5vw, 4rem) clamp(3rem, 7vw, 6rem);
}

.zc-testimonials__inner {
  width: 100%;
  max-width: var(--zc-container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
}

/* ---- Header ---- */
.zc-testimonials__header {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.zc-testimonials__social-proof {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.zc-testimonials__rating {
  display: flex;
  gap: 2px;
  color: var(--zc-ink);
  font-size: 0.85rem;
}
.zc-testimonials__rating i{
  color: gold;
}
.zc-testimonials__avatars {
  display: flex;
  align-items: center;
}

.zc-testimonials__avatar-item {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--zc-bg);
  margin-inline-start: -10px;
}

.zc-testimonials__avatar-item:first-child { margin-inline-start: 0; }

.zc-testimonials__count {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--zc-ink-soft);
  white-space: nowrap;
}

.zc-testimonials__title {
  font-family: var(--zc-font);
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  line-height: 1.25;
  margin: 0;
}

.zc-testimonials__title-soft {
  display: block;
  font-weight: 400;
  color: var(--zc-ink-soft);
}

.zc-testimonials__title-bold {
  display: block;
  font-weight: 900;
  color: var(--zc-ink);
}

/* ---- Grid ---- */
.zc-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (min-width: 768px) {
  .zc-testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---- Card ---- */
.zc-testimonial-card {
  background: var(--zc-bg);
  border: 1px solid var(--zc-border);
  border-radius: 1.1rem;
  padding: clamp(1.25rem, 2.5vw, 1.65rem);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}

.zc-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(10,14,25,0.08);
}

.zc-testimonial-card__quote-icon {
  font-size: 1.75rem;
  color: var(--zc-border);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.zc-testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--zc-ink-soft);
  margin: 0 0 1.5rem;
  flex: 1;
}

.zc-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-top: 1rem;
  border-top: 1px solid var(--zc-border);
}

.zc-testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.zc-testimonial-card__author-body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.zc-testimonial-card__author-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--zc-ink);
}

.zc-testimonial-card__author-role {
  font-size: 0.78rem;
  color: var(--zc-ink-soft);
}

@media (prefers-reduced-motion: reduce) {
  .zc-testimonial-card { transition: none; }
}

/* =========================================================
   FAQ + BOOKING SECTION
   ========================================================= */
.zc-faq {
  background: var(--zc-bg);
  padding-block: clamp(2rem, 5vw, 4rem) clamp(3rem, 7vw, 6rem);
}

.zc-faq__inner {
  width: 100%;
  max-width: var(--zc-container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
}

/* ---- Booking card ---- */
.zc-booking-card {
  background: var(--zc-bg);
  border: 1px solid var(--zc-border);
  border-radius: 1.25rem;
  padding: clamp(1.5rem, 3vw, 1.85rem);
  height: 100%;
}

.zc-booking-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.25rem;
}

.zc-booking-card__title {
  font-family: var(--zc-font);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--zc-ink);
  margin: 0 0 0.15rem;
}

.zc-booking-card__subtitle {
  font-family: var(--zc-font);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--zc-ink);
  margin: 0 0 1rem;
}

.zc-booking-card__text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--zc-ink-soft);
  margin: 0 0 1.75rem;
}

.zc-booking-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid var(--zc-border);
}

.zc-booking-card__provider {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--zc-ink-soft);
}

.zc-booking-card__cta {
  padding: 0.7rem 1.35rem;
  font-size: 0.85rem;
}

/* ---- FAQ header ---- */
.zc-faq__title {
  font-family: var(--zc-font);
  font-size: clamp(1.9rem, 4.5vw, 2.75rem);
  line-height: 1.3;
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
  text-align: left;
}

.zc-faq__title-soft {
  display: block;
  font-weight: 400;
  color: var(--zc-ink-soft);
}

.zc-faq__title-bold {
  display: block;
  font-weight: 900;
  color: var(--zc-ink);
}

/* ---- Accordion ---- */
.zc-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.zc-faq-item {
  border: 1px solid var(--zc-border);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--zc-bg);
  transition: border-color .2s ease;
}

.zc-faq-item.zc-is-open {
  border-color: var(--zc-ink);
}

.zc-faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  text-align: right;
  font-family: var(--zc-font);
}

.zc-faq-item__question {
  font-size: 1rem;
  font-weight: 700;
  color: var(--zc-ink);
}

.zc-faq-item__meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.zc-faq-item__index {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--zc-ink-soft);
}

.zc-faq-item__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--zc-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--zc-ink);
  flex-shrink: 0;
  position: relative;
  transition: transform .3s ease, background-color .2s ease, color .2s ease;
}

.zc-faq-item__icon::before,
.zc-faq-item__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}

.zc-faq-item__icon::before {
  width: 10px;
  height: 1.5px;
}

.zc-faq-item__icon::after {
  width: 1.5px;
  height: 10px;
  transition: transform .3s ease, opacity .3s ease;
}

.zc-is-open .zc-faq-item__icon {
  background: var(--zc-ink);
  color: var(--zc-bg);
}

.zc-is-open .zc-faq-item__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.zc-faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.zc-faq-item.zc-is-open .zc-faq-item__panel {
  grid-template-rows: 1fr;
}

.zc-faq-item__panel-inner {
  overflow: hidden;
}

.zc-faq-item__answer {
  margin: 0;
  padding: 0 1.4rem 1.4rem;
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--zc-ink-soft);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (min-width: 992px) {
  .zc-faq__title { text-align: right; }
}

@media (max-width: 575px) {
  .zc-faq-item__trigger { padding: 0.95rem 1.1rem; }
  .zc-faq-item__answer { padding: 0 1.1rem 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .zc-faq-item,
  .zc-faq-item__icon,
  .zc-faq-item__icon::after,
  .zc-faq-item__panel {
    transition: none;
  }
}


/* =========================================================
   FINAL CTA + FOOTER SECTION
   (dark panels stay dark regardless of light/dark site theme,
   matching the brand's footer identity — uses --zc-dark tokens)
   ========================================================= */
.zc-footer {
  --zcf-dark: #0a0e19;
  --zcf-dark-soft: #ffffff99;
  --zcf-dark-border: #ffffff1f;
  --zcf-dark-field: #ffffff0f;

  background: var(--zc-bg);
  padding-block: clamp(2rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
}

.zc-footer__inner {
  width: 100%;
  max-width: var(--zc-container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
}

/* ---- Top CTA banner (light card) ---- */
.zc-footer-cta {
  background: var(--zc-bg);
  border: 1px solid var(--zc-border);
  border-radius: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 0.9rem;
}

.zc-footer-cta__text {
  font-family: var(--zc-font);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  color: var(--zc-ink);
  line-height: 1.4;
  margin: 0;
}

.zc-footer-cta__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.zc-footer-cta__book {
  gap: 0.5rem;
}

/* ---- Dark panels row ---- */
.zc-footer-panels {
  border-radius: 1.5rem;
  overflow: hidden;
  margin-bottom: 0.9rem;
}

.zc-footer-panel {
  background: var(--zcf-dark);
  color: #ffffff;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
}

.zc-footer-panel--links {
  justify-content: space-between;
  gap: 2.5rem;
  border-bottom: 1px solid var(--zcf-dark-border);
}

/* ---- Links list ---- */
.zc-footer-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: right;
}

.zc-footer-nav__list a {
  font-family: var(--zc-font);
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffffff;
  transition: color .2s ease;
}

.zc-footer-nav__list a:hover {
  color: var(--zc-lime);
}

.zc-footer-panel__bottom {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.zc-footer-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.zc-footer-social__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--zcf-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.zc-footer-social__icon:hover {
  background: var(--zc-lime);
  transform: translateY(-2px);
}

.zc-footer-email {
  flex: 1;
  min-width: 200px;
  background: var(--zcf-dark-field);
  border: 1px solid var(--zcf-dark-border);
  border-radius: var(--zc-radius-pill);
  padding: 0.75rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  transition: background-color .2s ease;
}

.zc-footer-email:hover {
  background: #ffffff1a;
}

/* ---- Contact form panel ---- */
.zc-footer-form__title {
  font-family: var(--zc-font);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  color: #ffffff;
  margin: 0 0 1.5rem;
}

.zc-footer-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.zc-footer-form__group {
  display: flex;
}

.zc-footer-form__input,
.zc-footer-form__textarea {
  width: 100%;
  background: var(--zcf-dark-field);
  border: 1px solid var(--zcf-dark-border);
  border-radius: 0.9rem;
  padding: 0.95rem 1.25rem;
  font-family: var(--zc-font);
  font-size: 0.92rem;
  color: #ffffff;
  text-align: right;
  transition: border-color .2s ease, background-color .2s ease;
}

.zc-footer-form__textarea {
  resize: none;
  min-height: 110px;
}

.zc-footer-form__input::placeholder,
.zc-footer-form__textarea::placeholder {
  color: var(--zcf-dark-soft);
}

.zc-footer-form__input:focus,
.zc-footer-form__textarea:focus {
  outline: none;
  border-color: var(--zc-lime);
  background: #ffffff14;
}

.zc-footer-form__input.zc-is-invalid,
.zc-footer-form__textarea.zc-is-invalid {
  border-color: #ff6b6b;
}

.zc-footer-form__submit {
  width: 100%;
  background: #ffffff;
  color: var(--zcf-dark);
  border: none;
  border-radius: var(--zc-radius-pill);
  padding: 1rem;
  font-family: var(--zc-font);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}

.zc-footer-form__submit:hover {
  background: var(--zc-lime);
  transform: translateY(-2px);
}

.zc-footer-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.zc-footer-form__submit.zc-is-success {
  background: var(--zc-lime);
}

/* ---- Bottom bar ---- */
.zc-footer-bottombar {
  background: var(--zcf-dark);
  border-radius: 1.5rem;
  color: #ffffff;
  padding: 1.1rem clamp(1.25rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.zc-footer-bottombar__copyright {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--zcf-dark-soft);
}

.zc-footer-bottombar__totop {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: color .2s ease, transform .2s ease;
}

.zc-footer-bottombar__totop:hover {
  color: var(--zc-lime);
  transform: translateY(-2px);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (min-width: 768px) {
  .zc-footer-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: right;
  }
}

@media (max-width: 575px) {
  .zc-footer-bottombar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zc-footer-social__icon,
  .zc-footer-form__submit,
  .zc-footer-bottombar__totop,
  .zc-footer-nav__list a {
    transition: none;
  }
}



/* =========================================================
   THANK YOU MODAL
   ========================================================= */
.zc-thankyou-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 25, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  z-index: 1080;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.zc-thankyou-overlay.zc-is-visible {
  opacity: 1;
  visibility: visible;
}

.zc-thankyou-modal {
  position: relative;
  background: var(--zc-bg);
  color: var(--zc-ink);
  border-radius: 1.5rem;
  padding: clamp(2rem, 5vw, 2.75rem) clamp(1.75rem, 4vw, 2.25rem);
  width: 100%;
  max-width: 380px;
  text-align: center;
  transform: translateY(16px) scale(0.97);
  transition: transform .3s ease;
  box-shadow: 0 24px 60px rgba(10,14,25,0.25);
}

.zc-thankyou-overlay.zc-is-visible .zc-thankyou-modal {
  transform: translateY(0) scale(1);
}

.zc-thankyou-modal__close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--zc-border);
  background: var(--zc-bg-soft);
  color: var(--zc-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background-color .2s ease;
}

.zc-thankyou-modal__close:hover {
  background: var(--zc-lime);
  color: var(--zc-lime-ink);
}

.zc-thankyou-modal__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--zc-lime);
  color: var(--zc-lime-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
}

.zc-thankyou-modal__title {
  font-family: var(--zc-font);
  font-weight: 800;
  font-size: 1.35rem;
  margin: 0 0 0.6rem;
  color: var(--zc-ink);
}

.zc-thankyou-modal__text {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--zc-ink-soft);
  margin: 0 0 1.75rem;
}

.zc-thankyou-modal__cta {
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .zc-thankyou-overlay,
  .zc-thankyou-modal,
  .zc-thankyou-modal__close {
    transition: none;
  }
}