/*
Theme Name: Sylcon Child
Theme URI: https://sylcon.sylconshoes.com
Description: Child theme of Hello Elementor for the Sylcon Footwear franchise site. Section content is managed through ACF field groups; header and footer are built with UAE (Ultimate Addons for Elementor).
Author: Elite Studio
Template: hello-elementor
Version: 1.0.0
Text Domain: sylcon-child
*/

/* ==========================================================================
   1. Design tokens
   ========================================================================== */
:root {
  --syl-deep:      #0C2A1E;   /* darkest green - dark section backgrounds */
  --syl-green:     #123A2A;   /* primary green - buttons, footer */
  --syl-green-alt: #1B4634;   /* raised surfaces inside dark sections */
  --syl-gold:      #C6A052;   /* brass accent - CTAs, numerals, eyebrows */
  --syl-gold-soft: #E0C88A;   /* lighter brass for hovers */
  --syl-cream:     #F4F1EA;   /* page background */
  --syl-cream-alt: #EDE8DE;   /* alternating band */
  --syl-white:     #FFFFFF;
  --syl-ink:       #17201C;   /* body text on light */
  --syl-muted:     #6E7671;   /* secondary text on light */
  --syl-muted-dk:  #A9B6AE;   /* secondary text on dark */
  --syl-line:      #E2DDD2;   /* hairline borders on light */
  --syl-line-dk:   rgba(255, 255, 255, .14);

  --syl-font-head: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  --syl-font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --syl-radius:    14px;
  --syl-radius-lg: 22px;
  --syl-shadow:    0 18px 50px rgba(12, 42, 30, .10);
  --syl-shadow-lg: 0 28px 70px rgba(12, 42, 30, .16);

  --syl-maxw:      1180px;
  --syl-gutter:    24px;
  --syl-section-y: 96px;
}

/* ==========================================================================
   2. Base
   ========================================================================== */
body.sylcon-page {
  background: var(--syl-cream);
  color: var(--syl-ink);
  font-family: var(--syl-font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.sylcon-page * { box-sizing: border-box; }
.sylcon-page img { max-width: 100%; height: auto; display: block; }

.syl-wrap {
  width: 100%;
  max-width: var(--syl-maxw);
  margin-inline: auto;
  padding-inline: var(--syl-gutter);
}
.syl-section { padding-block: var(--syl-section-y); position: relative; }
.syl-section--dark { background: var(--syl-deep); color: var(--syl-white); }
.syl-section--cream { background: var(--syl-cream-alt); }

/* Headings ---------------------------------------------------------------- */
.syl-eyebrow {
  font-family: var(--syl-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--syl-gold);
  margin: 0 0 14px;
}
.syl-h2 {
  font-family: var(--syl-font-head);
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 18px;
}
.syl-h3 {
  font-family: var(--syl-font-head);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 8px;
}
.syl-lead { color: var(--syl-muted); font-size: 16px; margin: 0; max-width: 62ch; }
.syl-section--dark .syl-lead { color: var(--syl-muted-dk); }
.syl-center { text-align: center; }
.syl-center .syl-lead { margin-inline: auto; }

/* Buttons ----------------------------------------------------------------- */
.syl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--syl-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.syl-btn:hover { transform: translateY(-2px); }
/* Inline SVGs carry a viewBox but no intrinsic size, so pin them here or
   they expand to fill the button. */
.syl-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.syl-btn--gold  { background: var(--syl-gold); color: var(--syl-deep); }
.syl-btn--gold:hover { background: #d4b268; box-shadow: 0 12px 28px rgba(198, 160, 82, .35); }
.syl-btn--green { background: var(--syl-green); color: var(--syl-white); }
.syl-btn--green:hover { background: #1a4d38; }
.syl-btn--ghost { background: transparent; color: var(--syl-white); border-color: var(--syl-line-dk); }
.syl-btn--ghost:hover { background: rgba(255, 255, 255, .08); }
.syl-btn--block { width: 100%; }

/* Image placeholders ------------------------------------------------------ */
/* Rendered wherever an ACF image field is still empty, so the layout holds
   its shape and each slot announces what belongs there. */
.syl-ph {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 100%;
  min-height: 180px;
  padding: 20px;
  text-align: center;
  background:
    repeating-linear-gradient(45deg,
      rgba(18, 58, 42, .045) 0 12px,
      rgba(18, 58, 42, .015) 12px 24px);
  border: 1.5px dashed rgba(18, 58, 42, .28);
  border-radius: var(--syl-radius);
  color: var(--syl-green);
}
.syl-ph__label {
  font-family: var(--syl-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.syl-ph__dim { font-size: 11px; letter-spacing: .04em; opacity: .72; }
.syl-ph__icon { width: 26px; height: 26px; opacity: .5; margin-bottom: 2px; }
.syl-ph--dark {
  background:
    repeating-linear-gradient(45deg,
      rgba(255, 255, 255, .07) 0 12px,
      rgba(255, 255, 255, .02) 12px 24px);
  border-color: rgba(255, 255, 255, .3);
  color: #E7DFCB;
}
/* Full-bleed slots sit above the section's darkening veil, so the label
   stays readable while the slot is still empty. */
.syl-ph--fill { position: absolute; inset: 0; border-radius: 0; z-index: 2; }

/* ==========================================================================
   3. Hero
   ========================================================================== */
.syl-hero { position: relative; padding-block: 150px 0; overflow: hidden; }
.syl-hero__bg { position: absolute; inset: 0; z-index: 0; }
.syl-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.syl-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg,
    rgba(8, 26, 19, .92) 0%,
    rgba(8, 26, 19, .74) 42%,
    rgba(8, 26, 19, .40) 100%);
}
.syl-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .85fr;
  gap: 56px;
  align-items: start;
  padding-bottom: 70px;
}
.syl-hero__copy { color: var(--syl-white); padding-top: 26px; }
.syl-badge {
  display: inline-block;
  padding: 7px 16px;
  margin-bottom: 22px;
  border: 1px solid rgba(198, 160, 82, .55);
  border-radius: 999px;
  background: rgba(198, 160, 82, .12);
  color: var(--syl-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.syl-hero__title {
  font-family: var(--syl-font-head);
  font-size: clamp(38px, 5.6vw, 62px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.025em;
  margin: 0 0 22px;
  color: var(--syl-white);
}
.syl-hero__text { color: rgba(255, 255, 255, .8); font-size: 16px; max-width: 46ch; margin: 0; }

/* Hero inquiry card ------------------------------------------------------- */
.syl-inquiry {
  background: var(--syl-white);
  border-radius: var(--syl-radius-lg);
  padding: 30px 30px 26px;
  box-shadow: var(--syl-shadow-lg);
}
.syl-inquiry__title {
  font-family: var(--syl-font-head);
  font-size: 21px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--syl-ink);
}
.syl-inquiry__sub { font-size: 13px; color: var(--syl-muted); margin: 0 0 20px; }

/* Stats bar --------------------------------------------------------------- */
.syl-hero__stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 56px;
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.syl-stat__num {
  font-family: var(--syl-font-head);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  color: var(--syl-white);
}
.syl-stat__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
  margin-top: 7px;
}

/* ==========================================================================
   4. Press strip
   ========================================================================== */
.syl-press { background: var(--syl-white); padding-block: 30px; border-bottom: 1px solid var(--syl-line); }
.syl-press__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
}
.syl-press__item {
  font-family: var(--syl-font-head);
  font-size: 17px;
  font-weight: 500;
  color: #8A8F8B;
  letter-spacing: .01em;
  filter: grayscale(1);
  opacity: .78;
}
.syl-press__item img { max-height: 30px; width: auto; object-fit: contain; }

/* ==========================================================================
   5. Why partner
   ========================================================================== */
.syl-why__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.syl-why__media { position: relative; }
.syl-why__photo {
  position: relative;
  border-radius: var(--syl-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 4.4;
  background: var(--syl-cream-alt);
}
.syl-why__photo img { width: 100%; height: 100%; object-fit: cover; }
.syl-why__namecard {
  position: absolute;
  left: 22px;
  bottom: -22px;
  background: var(--syl-gold);
  color: var(--syl-deep);
  padding: 15px 24px;
  border-radius: var(--syl-radius);
  box-shadow: var(--syl-shadow);
  max-width: 74%;
}
.syl-why__name { font-family: var(--syl-font-head); font-size: 16px; font-weight: 600; line-height: 1.3; }
.syl-why__role { font-size: 11px; letter-spacing: .05em; opacity: .8; margin-top: 2px; }

.syl-feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 40px;
  margin-top: 34px;
}
.syl-feat__icon {
  width: 26px;
  height: 26px;
  margin-bottom: 12px;
  color: var(--syl-gold);
}
.syl-feat__icon svg { width: 100%; height: 100%; display: block; }
.syl-feat__title { font-family: var(--syl-font-head); font-size: 15px; font-weight: 600; margin: 0 0 6px; }
.syl-feat__text { font-size: 13.5px; color: var(--syl-muted); margin: 0; line-height: 1.6; }

/* ==========================================================================
   6. Portfolio
   ========================================================================== */
.syl-portfolio__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.syl-portfolio__nav { display: flex; gap: 10px; flex-shrink: 0; }
.syl-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--syl-line-dk);
  background: transparent;
  color: var(--syl-white);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease;
}
.syl-arrow:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .34); }
.syl-arrow svg { width: 15px; height: 15px; }

.syl-portfolio__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.syl-portfolio__track::-webkit-scrollbar { display: none; }
.syl-pcard {
  position: relative;
  scroll-snap-align: start;
  border-radius: var(--syl-radius);
  overflow: hidden;
  aspect-ratio: 3 / 2.35;
  background: var(--syl-green-alt);
}
.syl-pcard img { width: 100%; height: 100%; object-fit: cover; }
.syl-pcard__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(6, 22, 16, .88) 6%, rgba(6, 22, 16, .1) 62%);
}
.syl-pcard__body { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 3; }
.syl-pcard__title { font-family: var(--syl-font-head); font-size: 19px; font-weight: 600; color: var(--syl-white); }
.syl-pcard__text { font-size: 12px; color: rgba(255, 255, 255, .72); margin-top: 4px; }

/* ==========================================================================
   7. Investment structure
   ========================================================================== */
.syl-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 46px;
}
.syl-statbox {
  background: var(--syl-white);
  border: 1px solid var(--syl-line);
  border-radius: var(--syl-radius);
  padding: 26px 22px;
  text-align: center;
}
.syl-statbox__val {
  font-family: var(--syl-font-head);
  font-size: 25px;
  font-weight: 600;
  color: var(--syl-gold);
  line-height: 1.1;
}
.syl-statbox__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--syl-muted);
  margin-top: 10px;
}

/* ROI estimator ----------------------------------------------------------- */
.syl-roi {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 0;
  background: var(--syl-white);
  border-radius: var(--syl-radius-lg);
  box-shadow: var(--syl-shadow);
  overflow: hidden;
}
.syl-roi__form { padding: 32px 34px 34px; }
.syl-roi__title { font-family: var(--syl-font-head); font-size: 19px; font-weight: 600; margin: 0 0 24px; }
.syl-roi__field { margin-bottom: 22px; }
.syl-roi__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--syl-muted);
  margin-bottom: 12px;
}
.syl-roi__range { display: flex; align-items: center; gap: 14px; }
.syl-roi__minmax { font-size: 12px; color: var(--syl-muted); flex-shrink: 0; }
.syl-roi__slider {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: var(--syl-line);
  outline: none;
}
.syl-roi__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--syl-green);
  border: 3px solid var(--syl-white);
  box-shadow: 0 2px 7px rgba(0, 0, 0, .22);
  cursor: pointer;
}
.syl-roi__slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--syl-green);
  border: 3px solid var(--syl-white);
  cursor: pointer;
}
.syl-roi__tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.syl-roi__tier {
  padding: 13px;
  text-align: center;
  border: 1px solid var(--syl-line);
  border-radius: 10px;
  background: var(--syl-white);
  font-size: 13px;
  font-weight: 600;
  color: var(--syl-muted);
  cursor: pointer;
  transition: all .18s ease;
}
.syl-roi__tier:hover { border-color: var(--syl-gold); }
.syl-roi__tier.is-active {
  background: var(--syl-green);
  border-color: var(--syl-green);
  color: var(--syl-white);
}
.syl-roi__result {
  background: var(--syl-deep);
  color: var(--syl-white);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.syl-roi__reslabel {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--syl-muted-dk);
  margin-bottom: 10px;
}
.syl-roi__value {
  font-family: var(--syl-font-head);
  font-size: 32px;
  font-weight: 600;
  color: var(--syl-gold);
  line-height: 1.1;
  margin-bottom: 22px;
}
.syl-roi__note { font-size: 11px; color: var(--syl-muted-dk); margin: -14px 0 22px; }

/* ==========================================================================
   8. Journey
   ========================================================================== */
.syl-journey__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
  margin-top: 46px;
  position: relative;
}
.syl-journey__grid::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: var(--syl-line);
  z-index: 0;
}
.syl-step { position: relative; z-index: 1; text-align: center; }
.syl-step__num {
  display: inline-grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--syl-cream);
  border: 1px solid var(--syl-gold);
  color: var(--syl-gold);
  font-family: var(--syl-font-head);
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 14px;
}
.syl-step__title { font-family: var(--syl-font-head); font-size: 14px; font-weight: 600; margin: 0 0 5px; }
.syl-step__text { font-size: 11.5px; color: var(--syl-muted); line-height: 1.5; margin: 0; }

/* ==========================================================================
   9. Video
   ========================================================================== */
.syl-video__frame {
  position: relative;
  border-radius: var(--syl-radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 8.4;
  background: var(--syl-deep);
  box-shadow: var(--syl-shadow-lg);
}
.syl-video__frame iframe,
.syl-video__frame video { width: 100%; height: 100%; border: 0; display: block; object-fit: cover; }
.syl-video__poster { position: absolute; inset: 0; }
.syl-video__poster img { width: 100%; height: 100%; object-fit: cover; }
.syl-video__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 74px;
  height: 74px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--syl-deep);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease;
}
.syl-video__play:hover { transform: scale(1.07); }
.syl-video__play svg { width: 24px; height: 24px; margin-left: 4px; }

/* ==========================================================================
   10. Marketing / Operations
   ========================================================================== */
.syl-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.syl-duo__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
/* Keep both card rows on the same baseline when one heading wraps. */
@media (min-width: 1025px) {
  .syl-duo > div > .syl-h2 { min-height: 2.24em; }
}
.syl-minicard {
  background: var(--syl-green-alt);
  border: 1px solid var(--syl-line-dk);
  border-radius: var(--syl-radius);
  padding: 22px 20px;
}
.syl-minicard__icon { width: 22px; height: 22px; color: var(--syl-gold); margin-bottom: 12px; }
.syl-minicard__title { font-family: var(--syl-font-head); font-size: 14px; font-weight: 600; margin: 0 0 6px; color: var(--syl-white); }
.syl-minicard__text { font-size: 12px; color: var(--syl-muted-dk); margin: 0; line-height: 1.55; }

/* ==========================================================================
   11. Gallery
   ========================================================================== */
.syl-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.syl-gallery__grid--3col { grid-template-columns: repeat(3, 1fr); }
.syl-gallery__item {
  position: relative;
  border-radius: var(--syl-radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--syl-cream-alt);
}
.syl-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.syl-gallery__item:hover img { transform: scale(1.05); }

/* ==========================================================================
   12. Closing CTA
   ========================================================================== */
.syl-cta { text-align: center; }
.syl-cta__title {
  font-family: var(--syl-font-head);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--syl-white);
}
.syl-cta__text { color: var(--syl-muted-dk); max-width: 56ch; margin: 0 auto 32px; font-size: 15px; }
.syl-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Floating WhatsApp ------------------------------------------------------- */
.syl-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .42);
  transition: transform .2s ease;
}
.syl-whatsapp:hover { transform: scale(1.08); }
.syl-whatsapp svg { width: 28px; height: 28px; }

/* ==========================================================================
   13. Contact Form 7 skin
   ========================================================================== */
.syl-inquiry .wpcf7 form > p,
.syl-inquiry .wpcf7-form > p { margin: 0; }
.syl-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.syl-form__field { margin-bottom: 12px; }
/* The row already supplies the spacing, so drop the inner margin. */
.syl-form__row .syl-form__field { margin-bottom: 0; }
.syl-inquiry input[type="text"],
.syl-inquiry input[type="email"],
.syl-inquiry input[type="tel"],
.syl-inquiry select {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--syl-line);
  border-radius: 9px;
  background: #FAF9F6;
  font-family: var(--syl-font-body);
  font-size: 13.5px;
  color: var(--syl-ink);
  transition: border-color .18s ease, background .18s ease;
}
.syl-inquiry input::placeholder { color: #A2A9A4; }
.syl-inquiry input:focus,
.syl-inquiry select:focus {
  outline: none;
  border-color: var(--syl-green);
  background: var(--syl-white);
}
.syl-inquiry select { appearance: none; cursor: pointer; background-image: none; }
.syl-inquiry .syl-select-wrap { position: relative; }
.syl-inquiry .syl-select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.6px solid var(--syl-muted);
  border-bottom: 1.6px solid var(--syl-muted);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.syl-inquiry .wpcf7-submit {
  width: 100%;
  margin-top: 6px;
  padding: 15px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--syl-green);
  color: var(--syl-white);
  font-family: var(--syl-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}
.syl-inquiry .wpcf7-submit:hover { background: #1a4d38; transform: translateY(-1px); }
.syl-inquiry .wpcf7-spinner { display: block; margin: 10px auto 0; }
.syl-inquiry .wpcf7-not-valid-tip { font-size: 11px; color: #C0392B; margin-top: 5px; }
.syl-inquiry .wpcf7-response-output {
  margin: 14px 0 0 !important;
  padding: 11px 14px !important;
  border-radius: 8px;
  border-width: 1px !important;
  font-size: 12.5px;
}

/* ==========================================================================
   14. UAE header / footer
   ========================================================================== */
/* UAE wraps the header template in .ehf-header. Making that wrapper a
   zero-height positioning context lets the pill nav float over the hero
   without pushing the hero down. */
.ehf-header {
  position: relative;
  z-index: 500;
  height: 0;
}
.ehf-header .elementor-section,
.ehf-header .elementor-container,
.ehf-header .elementor-column-wrap,
.ehf-header .elementor-widget-wrap,
.ehf-header .e-con,
.ehf-header .e-con-inner {
  padding: 0 !important;
  margin: 0 !important;
}
.ehf-footer .elementor-section,
.ehf-footer .e-con { padding: 0 !important; }

.syl-head {
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  z-index: 500;
}
.syl-head__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 11px 12px 11px 26px;
  background: rgba(12, 42, 30, .93);
  backdrop-filter: blur(9px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
}
.syl-head__logo {
  font-family: var(--syl-font-head);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--syl-white);
  text-decoration: none;
  flex-shrink: 0;
}
.syl-head__logo img { max-height: 32px; width: auto; }
.syl-head__nav { display: flex; gap: 30px; margin-inline: auto; }
.syl-head__nav a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .18s ease;
}
.syl-head__nav a:hover { color: var(--syl-gold); }
.syl-head__toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--syl-white);
  cursor: pointer;
}

.syl-foot { background: var(--syl-deep); color: var(--syl-white); padding-block: 64px 0; }
.syl-foot__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 46px;
  padding-bottom: 46px;
}
.syl-foot__logo { font-family: var(--syl-font-head); font-size: 21px; font-weight: 700; margin-bottom: 14px; }
.syl-foot__about { font-size: 13px; color: var(--syl-muted-dk); line-height: 1.7; margin: 0 0 20px; max-width: 34ch; }
.syl-foot__ctitle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--syl-gold);
  margin: 0 0 16px;
}
.syl-foot__list { list-style: none; margin: 0; padding: 0; }
.syl-foot__list li { margin-bottom: 10px; }
.syl-foot__list a, .syl-foot__list span {
  color: var(--syl-muted-dk);
  text-decoration: none;
  font-size: 13px;
  transition: color .18s ease;
}
.syl-foot__list a:hover { color: var(--syl-gold); }
.syl-foot__socials { display: flex; gap: 10px; }
.syl-foot__socials a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--syl-line-dk);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--syl-muted-dk);
  transition: all .18s ease;
}
.syl-foot__socials a:hover { background: var(--syl-gold); border-color: var(--syl-gold); color: var(--syl-deep); }
.syl-foot__socials svg { width: 15px; height: 15px; }
.syl-foot__bar {
  border-top: 1px solid var(--syl-line-dk);
  padding-block: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: var(--syl-muted-dk);
  flex-wrap: wrap;
}

/* ==========================================================================
   15. Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  :root { --syl-section-y: 74px; }
  .syl-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .syl-inquiry { max-width: 520px; }
  .syl-why__grid { grid-template-columns: 1fr; gap: 54px; }
  .syl-portfolio__track { grid-auto-columns: calc((100% - 24px) / 2); }
  .syl-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .syl-roi { grid-template-columns: 1fr; }
  .syl-journey__grid { grid-template-columns: repeat(4, 1fr); gap: 26px 18px; }
  .syl-journey__grid::before { display: none; }
  .syl-duo { grid-template-columns: 1fr; gap: 46px; }
  .syl-gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .syl-foot__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .syl-head__nav { display: none; }
  .syl-head__toggle { display: grid; place-items: center; }
  .syl-head__nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 22px;
    gap: 18px;
    background: rgba(12, 42, 30, .98);
    border: 1px solid var(--syl-line-dk);
    border-radius: var(--syl-radius);
  }
}

@media (max-width: 680px) {
  :root { --syl-section-y: 58px; --syl-gutter: 18px; }
  .syl-hero { padding-top: 118px; }
  .syl-hero__stats { flex-wrap: wrap; gap: 26px 40px; }
  .syl-inquiry { padding: 24px 20px 22px; }
  .syl-form__row { grid-template-columns: 1fr; }
  .syl-feat-grid { grid-template-columns: 1fr; gap: 26px; }
  .syl-portfolio__track { grid-auto-columns: 84%; }
  .syl-portfolio__head { flex-direction: column; align-items: flex-start; }
  .syl-stats-grid { grid-template-columns: 1fr; }
  .syl-journey__grid { grid-template-columns: repeat(2, 1fr); }
  .syl-duo__cards { grid-template-columns: 1fr; }
  .syl-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .syl-foot__grid { grid-template-columns: 1fr; }
  .syl-foot__bar { flex-direction: column; text-align: center; }
  .syl-cta__actions { flex-direction: column; }
  .syl-cta__actions .syl-btn { width: 100%; }
}
