/*-----------------------------------------------------------------------------------
    Zyra Farms — brand override + custom components
    Loaded after main.css. Palette: original Agrigo template colors
    (deep green #00652F / fresh green #65CB3B / cream #FAF8EB).
    Fonts: Sora + Plus Jakarta Sans (modern).
-----------------------------------------------------------------------------------*/

:root {
  --cp-ff-heading: 'Sora', 'Bricolage Grotesque', sans-serif;
  --cp-ff-body: 'Plus Jakarta Sans', 'Kumbh Sans', sans-serif;
  --cp-ff-p: 'Plus Jakarta Sans', 'Kumbh Sans', sans-serif;

  --zy-deep: #00652f;
  --zy-deep-2: #00451f;
  --zy-gold: #65cb3b;
  --zy-gold-2: #a9e88b;
  --zy-gold-3: #3e9e1d;
  --zy-ivory: #faf8eb;
  --zy-ivory-2: #f2f9f6;
}

/* anchor offsets under the sticky header
   (no CSS scroll-behavior here — it fights GSAP ScrollSmoother;
   anchor scrolling is handled via ScrollSmoother.scrollTo in index.html) */
section[id] {
  scroll-margin-top: 110px;
}

/* modern grotesque headings — tighten tracking */
h1, h2, h3, h4, .section-title {
  letter-spacing: -0.015em;
}

.section-heading .sub-heading {
  font-family: var(--cp-ff-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--zy-gold-3);
}

/* gold ornament divider */
.zy-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 26px;
}

.zy-divider::before,
.zy-divider::after {
  content: "";
  height: 1px;
  flex: 0 0 64px;
  background: linear-gradient(90deg, transparent, var(--zy-gold));
}

.zy-divider::after {
  background: linear-gradient(90deg, var(--zy-gold), transparent);
}

.zy-divider i {
  color: var(--zy-gold);
  font-size: 14px;
}

/* ============ header ============ */
.header .top-bar {
  background-color: var(--zy-deep-2);
}

.header .top-bar .top-desc,
.header .top-bar .top-bar-list li {
  color: #f0edda;
}

.header .top-bar .top-desc span {
  color: var(--zy-gold-2);
}

.header .top-bar .social-list li a {
  color: var(--zy-gold-2);
}

.header .top-bar .top-desc,
.header .top-bar .top-bar-list li {
  font-size: 14px;
  white-space: nowrap;
}

/* breathing room inside the white header bar (logo left / button right) */
@media (min-width: 993px) {
  .header .primary-header-inner {
    padding-left: 36px;
    padding-right: 36px;
  }
}

.header .primary-header-inner .header-logo {
  background-color: transparent;
  padding: 12px 0;
  border-radius: 0;
}

.header-logo img {
  max-height: 64px;
  width: auto;
}

.header .primary-header-inner .header-left-wrap {
  gap: 32px;
}

.header .primary-header-inner .header-menu-wrap ul li {
  margin: 0 12px;
}

.header .primary-header-inner .header-menu-wrap ul li a {
  font-size: 15px;
}

.zy-logo-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}

.zy-logo-lockup .zy-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.zy-logo-lockup .zy-logo-name {
  font-family: var(--cp-ff-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--zy-deep);
  letter-spacing: 0.01em;
}

.zy-logo-lockup .zy-logo-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--zy-gold-3);
}

/* ============ hero ============ */
.hero-section .overlay {
  background:
    linear-gradient(180deg, rgba(0, 30, 13, 0.55) 0%, rgba(0, 30, 13, 0) 30%),
    linear-gradient(100deg, rgba(0, 38, 17, 0.88) 5%, rgba(0, 48, 22, 0.55) 42%, rgba(0, 48, 22, 0.08) 78%, rgba(0, 30, 13, 0) 100%);
}

.hero-section .sub-title {
  color: var(--zy-gold-2) !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-section .hero-title-wrap .title {
  font-family: var(--cp-ff-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(46px, 6vw, 86px);
  line-height: 1.04;
}

/* pull hero content up (template default is a huge 520px top pad) */
.hero-content {
  padding: 225px 0 40px;
}

@media (max-width: 1199px) {
  .hero-content {
    padding: 185px 0 40px;
  }
}

/* text stays in the left column, clear of the hero visual */
.hero-content .hero-inner-content {
  position: relative;
  z-index: 3;
  max-width: min(720px, 56vw);
  padding-bottom: 108px;
}

/* Hero visual */
.hero-content .hero-img {
    position: absolute;
    bottom: 74px;

    /* Move image inside the screen */
    right: -20px;      /* Try -20px, 0px, or 20px if needed */
    left: auto;

    width: clamp(500px, 66vw, 1200px);
    height: auto;

    z-index: 1;
    pointer-events: none;

    animation: zy-hero-in 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

.hero-content .hero-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
/*    filter: drop-shadow(0 30px 60px rgba(0,0,0,.5));*/
    animation: zy-hero-float 5.5s ease-in-out 2.4s infinite;
}

@keyframes zy-hero-in {
  0% {
    opacity: 0;
    transform: translateX(72%) translateY(6%) scale(0.45) rotate(7deg);
  }
  55% {
    opacity: 1;
  }
  72% {
    transform: translateX(-2.5%) translateY(-1%) scale(1.06) rotate(-1.5deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes zy-hero-float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-14px) scale(1.015);
  }
}

@media (max-width: 1291px) {
  .hero-content .hero-img {
    display: none;
  }
  .hero-content .hero-inner-content {
    max-width: 100%;
  }
}

/* ---- gold hero lockup (reference design) ---- */
:root {
  --zy-au: #d4af37;
  --zy-au-2: #f3dd85;
  --zy-au-3: #a8842a;
}

.zy-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  margin: 10px 0 26px;
}

.zy-lockup span {
  display: block;
}

.zy-lockup .row-w {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: #ffffff;
  font-size: clamp(22px, 2.6vw, 38px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 6px 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.zy-lockup .row-w.md {
  font-size: clamp(26px, 3vw, 44px);
  letter-spacing: 0.1em;
}

.zy-lockup .row-g {
  font-family: 'Cinzel', serif;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(180deg, #f9e9a8 0%, var(--zy-au) 55%, var(--zy-au-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.45));
  margin: 2px 0;
}

.zy-lockup .row-g.giant {
  font-size: clamp(54px, 6.6vw, 104px);
  letter-spacing: 0.05em;
}

.zy-lockup .row-g.big {
  font-size: clamp(38px, 4.4vw, 66px);
  letter-spacing: 0.03em;
}

.zy-lockup .row-g .rup {
  font-style: normal;
  font-size: 1.18em;
}

.zy-lockup .row-earn {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 26px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 14px 0 10px;
}

.zy-lockup .row-earn::before,
.zy-lockup .row-earn::after {
  content: "";
  height: 2px;
  width: clamp(40px, 5vw, 84px);
  background: linear-gradient(90deg, transparent, var(--zy-au));
}

.zy-lockup .row-earn::after {
  background: linear-gradient(90deg, var(--zy-au), transparent);
}

/* gold buttons */
.zy-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 6px 0 16px;
}

.zy-gold-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--cp-ff-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 10px;
  background: linear-gradient(180deg, #f3dd85, #d4af37 60%, #b89330);
  color: #1d1503 !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.zy-gold-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.zy-gold-btn.ghost {
  background: rgba(0, 25, 12, 0.35);
  border: 1.5px solid var(--zy-au);
  color: var(--zy-au-2) !important;
  box-shadow: none;
  backdrop-filter: blur(3px);
}

.zy-gold-btn.ghost:hover {
  background: rgba(212, 175, 55, 0.15);
}

/* small offer link under hero buttons */
.zy-offer-link {
  border: 0;
  background: transparent;
  color: var(--zy-au-2);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  padding: 0;
  border-bottom: 1px dashed var(--zy-au);
  animation: zy-hint 2.4s ease-in-out infinite;
}

.zy-offer-link i {
  margin-right: 6px;
}

.zy-offer-link:hover {
  color: #ffffff;
}

/* hero bottom stats band */
.hero-section {
  position: relative;
}

.zy-hero-band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  background: rgba(0, 22, 10, 0.78);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(212, 175, 55, 0.55);
}

.zy-hero-band-inner {
  display: flex;
  flex-wrap: wrap;
}

.zy-hero-band .item {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 26px;
  border-right: 1px solid rgba(212, 175, 55, 0.28);
}

.zy-hero-band .item:first-child {
  padding-left: 0;
}

.zy-hero-band .item:last-child {
  border-right: 0;
}

.zy-hero-band .ico {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  border: 1.5px solid var(--zy-au);
  color: var(--zy-au-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.zy-hero-band .num {
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  background: linear-gradient(180deg, #f9e9a8, var(--zy-au));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 4px;
  display: inline-block;
  vertical-align: middle;
}

.zy-hero-band .lbl {
  color: #f2efe2;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
}

.zy-hero-band .lbl small {
  display: block;
  color: rgba(242, 239, 226, 0.65);
  font-size: 11px;
  letter-spacing: 0.08em;
}

@media (max-width: 767px) {
  .zy-hero-band {
    position: static;
    background: #00160a;
  }
  .zy-hero-band .item {
    flex: 1 1 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 14px 0;
  }
}

/* gold header button — recolor every span layer of the template button */
.header .zy-gold-header-btn .btn-text,
.header .zy-gold-header-btn .btn-left,
.header .zy-gold-header-btn .btn-right {
  background: linear-gradient(180deg, #f3dd85, #d4af37 60%, #b89330) !important;
  color: #1d1503 !important;
}

.header .zy-gold-header-btn .btn-text {
  font-weight: 700;
}

.header .zy-gold-header-btn i {
  color: #1d1503 !important;
}

.zy-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 26px;
}

.zy-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1px solid rgba(169, 232, 139, 0.55);
  border-radius: 40px;
  color: #f6f3e4;
  font-size: 15px;
  background: rgba(0, 69, 31, 0.45);
  backdrop-filter: blur(2px);
}

.zy-hero-points span i {
  color: var(--zy-gold-2);
}

/* ============ generic cards ============ */
.zy-card {
  background: #ffffff;
  border: 1px solid var(--zy-gold);
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
  text-align: center;
  box-shadow: 0 14px 34px rgba(0, 101, 47, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0, 101, 47, 0.14);
}

.zy-card .icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 25%, #0b7a3c, var(--zy-deep-2));
  border: 2px solid var(--zy-gold);
  color: var(--zy-gold-2);
  font-size: 30px;
}

.zy-card .title {
  font-size: 19px;
  color: var(--zy-deep);
  margin-bottom: 6px;
}

.zy-card p {
  font-size: 15px;
  margin-bottom: 0;
}

/* ============ location ============ */
.zy-loc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 8px 0 34px;
}

.zy-loc-chips .chip {
  flex: 1 1 180px;
  border: 1px solid var(--zy-gold);
  border-radius: 12px;
  background: var(--zy-deep);
  color: #f2f9f6;
  text-align: center;
  padding: 16px 12px;
}

.zy-loc-chips .chip i {
  color: var(--zy-gold-2);
  font-size: 22px;
  display: block;
  margin-bottom: 8px;
}

.zy-loc-chips .chip span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--zy-gold-2);
  margin-bottom: 2px;
}

.zy-loc-chips .chip strong {
  font-family: var(--cp-ff-heading);
  font-size: 20px;
  letter-spacing: 0.04em;
}

.zy-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.zy-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--zy-gold);
  color: #3d4a42;
  font-size: 17px;
}

.zy-check-list li:last-child {
  border-bottom: 0;
}

.zy-check-list li i {
  color: var(--zy-gold-3);
  margin-top: 4px;
}

.zy-map-frame {
  border: 6px solid #ffffff;
  outline: 1px solid var(--zy-gold);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 101, 47, 0.18);
}

.zy-map-frame img {
  width: 100%;
  display: block;
}

.zy-stat-row {
  margin-top: 40px;
  background: var(--zy-deep);
  border: 1px solid var(--zy-gold);
  border-radius: 16px;
  padding: 26px 18px;
  display: flex;
  flex-wrap: wrap;
}

.zy-stat {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 16px;
  border-right: 1px solid rgba(101, 203, 59, 0.35);
}

.zy-stat:last-child {
  border-right: 0;
}

.zy-stat .icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
  border: 1.5px solid var(--zy-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zy-gold-2);
  font-size: 20px;
}

.zy-stat .label {
  color: #e9f2df;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
}

.zy-stat .value {
  color: #ffffff;
  font-family: var(--cp-ff-heading);
  font-size: 22px;
  line-height: 1.1;
}

@media (max-width: 767px) {
  .zy-stat {
    flex: 1 1 46%;
    border-right: 0;
    border-bottom: 1px solid rgba(101, 203, 59, 0.25);
  }
}

/* ============ plots & price (dark) ============ */
.zy-dark-section {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(101, 203, 59, 0.14), transparent 60%),
    linear-gradient(160deg, #007a39 0%, var(--zy-deep-2) 70%);
}

.zy-dark-section .section-heading .sub-heading {
  color: var(--zy-gold-2);
}

.zy-dark-section .section-title {
  color: #ffffff;
}

.zy-dark-section p.desc {
  color: #cfdcd2;
}

.zy-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.zy-detail-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(101, 203, 59, 0.45);
}

.zy-detail-list li:last-child {
  border-bottom: 0;
}

.zy-detail-list .icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 50%;
  border: 1.5px solid var(--zy-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zy-gold-2);
  font-size: 22px;
}

.zy-detail-list .label {
  display: block;
  color: #b9cfc0;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.zy-detail-list .value {
  color: #ffffff;
  font-family: var(--cp-ff-heading);
  font-size: 22px;
  letter-spacing: 0.03em;
}

.zy-price-card {
  background: var(--zy-ivory);
  border: 2px solid var(--zy-gold);
  border-radius: 18px;
  text-align: center;
  padding: 40px 30px 30px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.zy-price-card .ribbon {
  display: inline-block;
  background: var(--zy-deep);
  color: var(--zy-gold-2);
  font-family: var(--cp-ff-heading);
  letter-spacing: 0.2em;
  font-size: 15px;
  padding: 10px 34px;
  border: 1px solid var(--zy-gold);
  border-radius: 6px;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.zy-price-card .amount {
  font-family: var(--cp-ff-heading);
  font-weight: 700;
  color: var(--zy-deep);
  font-size: clamp(44px, 6vw, 64px);
  line-height: 1;
}

.zy-price-card .only {
  font-family: var(--cp-ff-heading);
  color: var(--zy-gold-3);
  font-size: 26px;
  letter-spacing: 0.28em;
  margin: 10px 0 4px;
  text-transform: uppercase;
}

.zy-price-card .per-plot {
  display: inline-block;
  background: var(--zy-deep);
  color: #ffffff;
  letter-spacing: 0.22em;
  font-size: 13px;
  text-transform: uppercase;
  padding: 8px 26px;
  border-radius: 40px;
  margin: 14px 0 22px;
}

.zy-price-card .note {
  font-size: 13px;
  color: #66716a;
  margin-top: 18px;
  margin-bottom: 0;
}

.zy-include-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(101, 203, 59, 0.5);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.zy-include-card:hover {
  transform: translateY(-6px);
  border-color: var(--zy-gold-2);
}

.zy-include-card .thumb {
  height: 190px;
  overflow: hidden;
}

.zy-include-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zy-include-card .body {
  padding: 20px 16px 24px;
}

.zy-include-card .num {
  font-family: var(--cp-ff-heading);
  font-weight: 700;
  font-size: 30px;
  color: var(--zy-gold-2);
  line-height: 1;
}

.zy-include-card h3 {
  color: #ffffff;
  font-size: 18px;
  margin: 8px 0 4px;
}

.zy-include-card small {
  color: #b9cfc0;
  letter-spacing: 0.08em;
}

/* ============ support & income ============ */
.zy-support-grid .feature-item-2 {
  background: #ffffff;
  border: 1px solid var(--zy-gold);
  border-radius: 12px;
  padding: 22px 20px;
  height: 100%;
}

.zy-support-grid .feature-item-2 .icon {
  background: var(--zy-deep);
  color: var(--zy-gold-2);
}

.zy-callout {
  border-radius: 16px;
  padding: 28px 26px;
  border: 2px solid var(--zy-gold);
  margin-bottom: 22px;
}

.zy-callout.dark {
  background: var(--zy-deep);
  color: #ffffff;
}

.zy-callout.dark .head {
  color: var(--zy-gold-2);
}

.zy-callout.light {
  background: var(--zy-ivory);
  color: var(--zy-deep);
}

.zy-callout .head {
  font-family: var(--cp-ff-heading);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
}

.zy-callout .big {
  font-family: var(--cp-ff-heading);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
}

.zy-callout .big .huge {
  font-size: clamp(46px, 5vw, 62px);
  color: var(--zy-gold);
  margin-right: 10px;
  line-height: 1;
}

.zy-callout p {
  margin: 8px 0 0;
  font-size: 14px;
}

.zy-callout.dark p {
  color: #cfdcd2;
}

.zy-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: #66716a;
}

.zy-note i {
  color: var(--zy-gold-3);
  margin-top: 3px;
}

/* products */
.zy-product-card {
  background: #ffffff;
  border: 1px solid var(--zy-gold);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zy-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 101, 47, 0.14);
}

.zy-product-card .thumb {
  background: var(--zy-ivory-2);
  padding: 14px;
}

.zy-product-card .thumb img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 8px;
}

.zy-product-card h3 {
  font-size: 17px;
  color: var(--zy-deep);
  padding: 14px 12px 18px;
  margin: 0;
}

/* ============ layout section ============ */
.zy-layout-frame {
  border: 8px solid #ffffff;
  outline: 1px solid var(--zy-gold);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 101, 47, 0.2);
  display: block;
}

.zy-layout-frame img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.zy-layout-frame:hover img {
  transform: scale(1.015);
}

/* ============ CTA band (video-section reuse) ============ */
.video-section .video-inner-wrap {
  position: relative;
  z-index: 2;
}

.zy-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 48, 22, 0.9) 0%, rgba(0, 69, 31, 0.55) 60%, rgba(0, 69, 31, 0.25) 100%);
}

.zy-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--zy-gold);
  color: #ffffff !important;
  font-family: var(--cp-ff-heading);
  font-weight: 700;
  font-size: 20px;
  padding: 16px 30px;
  border-radius: 60px;
  letter-spacing: 0.05em;
  transition: background 0.3s ease, transform 0.3s ease;
}

.zy-phone-btn:hover {
  background: var(--zy-gold-2);
  transform: translateY(-3px);
}

/* ============ brochure gallery ============ */
.zy-brochure-grid a {
  display: block;
  border: 4px solid #ffffff;
  outline: 1px solid var(--zy-gold);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 101, 47, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zy-brochure-grid a:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0, 101, 47, 0.22);
}

.zy-brochure-grid img {
  width: 100%;
  display: block;
}

/* ============ footer / contact ============ */
.zy-book-band {
  background: linear-gradient(120deg, #007a39, var(--zy-deep-2));
  border: 1px solid var(--zy-gold);
  border-radius: 20px;
  padding: 40px 34px;
}

.zy-book-band .band-title {
  color: #ffffff;
  font-size: clamp(26px, 3.4vw, 40px);
  margin-bottom: 6px;
}

.zy-book-band .band-title i {
  color: var(--zy-gold-2);
  font-size: 0.7em;
  margin: 0 12px;
}

.zy-contact-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.zy-contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
  color: #e9f2df;
  font-size: 16px;
}

.zy-contact-list li i {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  border: 1.5px solid var(--zy-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zy-gold-2);
  font-size: 17px;
}

.zy-contact-list a {
  color: #ffffff;
}

.zy-contact-list a:hover {
  color: var(--zy-gold-2);
}

.zy-contact-list .lbl {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--zy-gold-2);
  margin-bottom: 3px;
}

.zy-qr-card {
  background: var(--zy-ivory);
  border: 1.5px solid var(--zy-gold);
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  color: var(--zy-deep);
}

.zy-qr-card img {
  width: 100%;
  max-width: 190px;
  border-radius: 8px;
}

.zy-qr-card .lbl {
  display: block;
  font-family: var(--cp-ff-heading);
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-top: 10px;
  text-transform: uppercase;
}

.footer-section .footer-logo img {
  max-height: 96px;
  width: auto;
}

.zy-disclaimer {
  font-size: 13px;
  color: #9db3a6;
  line-height: 1.7;
}

/* ============ media gallery (site images / 360 / videos / reels) ============ */
.zy-media-section .section-heading p.desc {
  color: #cfe3d2;
}

/* any section hosting a watermark must anchor + clip it */
.zy-calc-section {
  position: relative;
  overflow: hidden;
}

.zy-media-tabs {
  list-style: none;
  margin: 0 0 44px;
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(169, 232, 139, 0.35);
  border-radius: 60px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.zy-media-tabs button {
  border: 0;
  background: transparent;
  color: #e9f2df;
  font-family: var(--cp-ff-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 40px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.zy-media-tabs button i {
  margin-right: 8px;
}

.zy-media-tabs button:hover {
  color: var(--zy-gold-2);
}

.zy-media-tabs button.active {
  background: var(--zy-gold);
  color: var(--zy-deep-2);
}

.zy-media-note {
  margin: 26px 0 0;
  text-align: center;
  color: #cfe3d2;
  font-size: 14px;
}

.zy-media-note i {
  color: var(--zy-gold-2);
  margin-right: 6px;
}

.zy-media-note a {
  color: var(--zy-gold-2);
  text-decoration: underline;
}

/* photo mosaic */
.zy-photo {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  height: 264px;
  border: 1px solid rgba(169, 232, 139, 0.25);
}

.zy-photo-tall {
  height: 544px;
}

.zy-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.zy-photo:hover img {
  transform: scale(1.07);
}

.zy-photo .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 16px 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(180deg, transparent, rgba(0, 30, 13, 0.85));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.zy-photo:hover .cap {
  opacity: 1;
  transform: translateY(0);
}

.zy-photo .cap i {
  color: var(--zy-gold-2);
  margin-right: 8px;
}

@media (max-width: 991px) {
  .zy-photo-tall {
    height: 340px;
  }
}

/* 360 panel */
.zy-360 {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 480px;
  border: 1px solid rgba(169, 232, 139, 0.35);
}

.zy-360 > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zy-360-overlay {
  position: relative;
  z-index: 2;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: radial-gradient(ellipse at center, rgba(0, 40, 18, 0.55) 0%, rgba(0, 30, 13, 0.82) 100%);
}

.zy-360-overlay h3 {
  color: #ffffff;
  font-size: 30px;
  margin: 22px 0 10px;
}

.zy-360-overlay p {
  color: #dcebe1;
  margin-bottom: 26px;
}

.zy-360-badge {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zy-360-badge .ring {
  position: absolute;
  inset: 0;
  border: 2px dashed var(--zy-gold-2);
  border-radius: 50%;
  animation: zy-spin 14s linear infinite;
}

.zy-360-badge .txt {
  font-family: var(--cp-ff-heading);
  font-weight: 800;
  font-size: 30px;
  color: var(--zy-gold-2);
}

@keyframes zy-spin {
  to {
    transform: rotate(360deg);
  }
}

.zy-360-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.zy-phone-btn.ghost {
  background: transparent;
  border: 1.5px solid var(--zy-gold-2);
  color: var(--zy-gold-2) !important;
}

.zy-phone-btn.ghost:hover {
  background: rgba(169, 232, 139, 0.12);
}

/* video cards */
.zy-video-card {
  display: block;
  text-align: center;
}

.zy-video-card .thumb {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 240px;
  border: 1px solid rgba(169, 232, 139, 0.25);
}

.zy-video-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.zy-video-card:hover .thumb img {
  transform: scale(1.06);
}

.zy-video-card .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--zy-gold);
  color: var(--zy-deep-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  animation: zy-pulse 2.2s ease-out infinite;
}

@keyframes zy-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(101, 203, 59, 0.55);
  }
  70% {
    box-shadow: 0 0 0 22px rgba(101, 203, 59, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(101, 203, 59, 0);
  }
}

.zy-video-card h3 {
  color: #ffffff;
  font-size: 19px;
  margin: 18px 0 4px;
}

.zy-video-card .tag {
  color: #cfe3d2;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.zy-video-card .tag i {
  color: #ff4d4d;
  margin-right: 6px;
}

/* reel cards — instagram-style */
.zy-reel-card {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(169, 232, 139, 0.28);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.zy-reel-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.4);
}

.zy-reel-card .reel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
}

.zy-reel-card .reel-head .avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  flex: 0 0 34px;
}

.zy-reel-card .reel-head .avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.zy-reel-card .reel-head .handle {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
}

.zy-reel-card .reel-head > i {
  margin-left: auto;
  color: var(--zy-gold-2);
}

.zy-reel-card .reel-media {
  position: relative;
  display: block;
  aspect-ratio: 9 / 13;
  overflow: hidden;
}

.zy-reel-card .reel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.zy-reel-card:hover .reel-media img {
  transform: scale(1.07);
}

.zy-reel-card .reel-ico {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 30, 13, 0.65);
  border: 1px solid rgba(169, 232, 139, 0.5);
  color: var(--zy-gold-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.zy-reel-card .reel-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 14px 12px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  background: linear-gradient(180deg, transparent, rgba(0, 30, 13, 0.9));
}

.zy-reel-card .reel-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  color: #e9f2df;
  font-size: 15px;
}

.zy-reel-card .reel-foot a {
  margin-left: auto;
  color: var(--zy-gold-2);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============ creative gallery extras ============ */
.zy-media-section {
  position: relative;
  overflow: hidden;
}

.zy-media-inner {
  position: relative;
  z-index: 2;
}

.zy-media-watermark {
  position: absolute;
  top: 54px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--cp-ff-heading);
  font-weight: 800;
  font-size: clamp(80px, 15vw, 230px);
  letter-spacing: 0.12em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}

.zy-leaf {
  position: absolute;
  color: rgba(169, 232, 139, 0.16);
  font-size: 40px;
  z-index: 1;
  animation: zy-float 11s ease-in-out infinite;
}

.zy-leaf-1 { top: 16%; left: 5%; }
.zy-leaf-2 { top: 60%; right: 4%; font-size: 56px; animation-delay: -3s; }
.zy-leaf-3 { bottom: 14%; left: 9%; font-size: 48px; animation-delay: -6s; }
.zy-leaf-4 { top: 28%; right: 12%; animation-delay: -8s; }

@keyframes zy-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-26px) rotate(14deg); }
}

.zy-media-tabs button .count {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  font-size: 11px;
  font-family: var(--cp-ff-body);
  padding: 2px 9px;
  margin-left: 7px;
  vertical-align: 2px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.zy-media-tabs button.active .count {
  background: rgba(0, 69, 31, 0.25);
}

/* photo shine sweep + ken burns */
.zy-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.2) 50%, transparent 60%);
  transform: translateX(-130%);
  transition: transform 0.9s ease;
  z-index: 2;
  pointer-events: none;
}

.zy-photo:hover::before {
  transform: translateX(130%);
}

.zy-kb {
  animation: zy-kenburns 20s ease-in-out infinite alternate;
}

@keyframes zy-kenburns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.12) translate(2%, -2%); }
}

/* interactive panorama */
.zy-pano {
  cursor: ew-resize;
}

.zy-pano-track {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 190%;
  display: flex;
  will-change: transform;
}

.zy-pano-track img {
  flex: 0 0 33.34%;
  width: 33.34%;
  height: 100%;
  object-fit: cover;
}

.zy-pano-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 9px 20px;
  border-radius: 40px;
  border: 1px dashed rgba(169, 232, 139, 0.55);
  color: var(--zy-gold-2);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: zy-hint 2.4s ease-in-out infinite;
}

@keyframes zy-hint {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

/* video chips + featured sizes */
.zy-video-card .chip {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(0, 30, 13, 0.72);
  border: 1px solid rgba(169, 232, 139, 0.45);
  color: #e9f2df;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 30px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.zy-video-card .chip i {
  color: var(--zy-gold-2);
  margin-right: 4px;
}

.zy-video-feature .thumb {
  height: 434px;
}

.zy-video-mini .thumb {
  height: 150px;
}

.zy-video-mini h3 {
  font-size: 16px;
  margin: 12px 0 2px;
}

.zy-video-mini .play {
  width: 52px;
  height: 52px;
  font-size: 17px;
}

/* keyword marquee */
.zy-marquee {
  overflow: hidden;
  margin-top: 80px;
  position: relative;
  z-index: 2;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.zy-marquee .scroller__inner {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  list-style: none;
  margin: 0;
  padding: 0;
}

.zy-marquee[data-animated="true"] .scroller__inner {
  animation: zy-marquee 38s linear infinite;
}

.zy-marquee:hover .scroller__inner {
  animation-play-state: paused;
}

@keyframes zy-marquee {
  to { transform: translateX(-50%); }
}

.zy-marquee li {
  font-family: var(--cp-ff-heading);
  font-weight: 800;
  font-size: 34px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(169, 232, 139, 0.45);
}

.zy-marquee li.dot {
  color: var(--zy-gold);
  -webkit-text-stroke: 0;
  font-size: 22px;
}

/* ============ creative preloader ============ */
.preloader .site-name {
  display: none;
}

.zy-loader-brand {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  pointer-events: none;
}

.zy-loader-logo {
  position: relative;
  width: 132px;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zy-loader-logo img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(101, 203, 59, 0.16), 0 18px 40px rgba(0, 0, 0, 0.35);
  animation: zy-breathe 2.4s ease-in-out infinite;
}

.zy-loader-logo .ring {
  position: absolute;
  inset: 8px;
  border: 2px dashed rgba(101, 203, 59, 0.65);
  border-radius: 50%;
  animation: zy-spin 9s linear infinite;
}

.zy-loader-logo .ring-2 {
  inset: -6px;
  border-color: rgba(169, 232, 139, 0.3);
  animation-direction: reverse;
  animation-duration: 14s;
}

@keyframes zy-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.zy-loader-name {
  font-family: var(--cp-ff-heading);
  font-weight: 800;
  font-size: clamp(30px, 5vw, 52px);
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffffff 40%, #a9e88b 50%, #ffffff 60%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: zy-shimmer 2.4s linear infinite, zy-tracking 1.1s ease both;
}

@keyframes zy-shimmer {
  to { background-position: -200% 0; }
}

@keyframes zy-tracking {
  from { letter-spacing: 0.5em; opacity: 0; }
  to { letter-spacing: 0.12em; opacity: 1; }
}

.zy-loader-tag {
  color: rgba(233, 242, 223, 0.75);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: zy-tag-in 1.4s ease 0.4s both;
}

@keyframes zy-tag-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.zy-loader-sprout i {
  color: var(--zy-gold);
  font-size: 26px;
  display: inline-block;
  transform-origin: bottom center;
  animation: zy-sprout 1.6s ease-in-out infinite alternate;
}

@keyframes zy-sprout {
  from { transform: scale(0.8) rotate(-6deg); }
  to { transform: scale(1.15) rotate(6deg); }
}

/* ============ returns calculator ============ */
.zy-calc {
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(169, 232, 139, 0.3);
  border-radius: 22px;
  padding: 38px 34px 26px;
}

.zy-calc-controls {
  display: flex;
  flex-direction: column;
  gap: 26px;
  height: 100%;
  justify-content: center;
}

.zy-calc-field label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #e9f2df;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.zy-calc-field output {
  font-family: var(--cp-ff-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--zy-gold-2);
  letter-spacing: 0.02em;
  text-transform: none;
}

.zy-calc-field input[type="range"] {
  width: 100%;
  accent-color: var(--zy-gold);
  cursor: grab;
  height: 6px;
}

.zy-calc-field input[type="range"]:active {
  cursor: grabbing;
}

.zy-calc-field .scale {
  display: flex;
  justify-content: space-between;
  color: rgba(233, 242, 223, 0.5);
  font-size: 12px;
  margin-top: 6px;
}

.zy-calc-basis span {
  display: flex;
  gap: 10px;
  color: #cfe3d2;
  font-size: 13px;
  line-height: 1.6;
}

.zy-calc-basis i {
  color: var(--zy-gold-2);
  margin-top: 3px;
}

.zy-calc-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.zy-calc-tiles .tile {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(169, 232, 139, 0.3);
  border-radius: 14px;
  padding: 18px 20px;
}

.zy-calc-tiles .tile.hi {
  grid-column: 1 / -1;
  background: linear-gradient(120deg, rgba(101, 203, 59, 0.2), rgba(101, 203, 59, 0.05));
  border-color: var(--zy-gold);
}

.zy-calc-tiles .lbl {
  display: block;
  color: #cfe3d2;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.zy-calc-tiles .lbl i {
  color: var(--zy-gold-2);
  margin-right: 6px;
}

.zy-calc-tiles .lbl em {
  font-style: normal;
  color: var(--zy-gold-2);
}

.zy-calc-tiles .val {
  font-family: var(--cp-ff-heading);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 32px);
  color: #ffffff;
  line-height: 1.1;
}

.zy-calc-tiles .tile.hi .val {
  color: var(--zy-gold-2);
}

.zy-calc-chart .bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 150px;
  padding: 10px 4px 0;
  border-bottom: 1px solid rgba(169, 232, 139, 0.35);
}

.zy-calc-chart .bar {
  flex: 1;
  min-width: 0;
  background: linear-gradient(180deg, rgba(169, 232, 139, 0.45), rgba(101, 203, 59, 0.15));
  border: 1px solid rgba(169, 232, 139, 0.35);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  position: relative;
  transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.zy-calc-chart .bar.paid {
  background: linear-gradient(180deg, var(--zy-gold), rgba(101, 203, 59, 0.35));
  border-color: var(--zy-gold);
}

.zy-calc-chart .bar span {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(233, 242, 223, 0.65);
  font-size: 11px;
}

.zy-calc-chart .legend {
  display: flex;
  gap: 26px;
  margin-top: 12px;
  color: #cfe3d2;
  font-size: 13px;
}

.zy-calc-chart .legend .sw {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: rgba(169, 232, 139, 0.35);
  margin-right: 8px;
  vertical-align: -2px;
}

.zy-calc-chart .legend .sw.paid {
  background: var(--zy-gold);
}

@media (max-width: 767px) {
  .zy-calc {
    padding: 26px 18px 18px;
  }
  .zy-calc-tiles {
    grid-template-columns: 1fr;
  }
}

/* long-term bonus tiles (trees + land) */
.zy-bonus .bonus-tile {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(169, 232, 139, 0.3);
  border-radius: 16px;
  padding: 26px 24px;
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.zy-bonus .bonus-tile:hover {
  transform: translateY(-6px);
  border-color: var(--zy-gold);
}

.zy-bonus .ico {
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--zy-gold);
  color: var(--zy-gold-2);
  font-size: 24px;
}

.zy-bonus h3 {
  color: #ffffff;
  font-size: 19px;
  margin-bottom: 4px;
}

.zy-bonus .when {
  display: block;
  color: #cfe3d2;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.zy-bonus .amt {
  display: block;
  font-family: var(--cp-ff-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--zy-gold-2);
  margin-bottom: 10px;
}

.zy-bonus p {
  color: #cfe3d2;
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
}

/* ============ growth timeline ============ */
.zy-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
  margin-top: 30px;
}

.zy-timeline::before {
  content: "";
  position: absolute;
  top: 74px;
  left: 4%;
  right: 4%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(101, 203, 59, 0.15), var(--zy-gold), rgba(101, 203, 59, 0.15));
}

.zy-tl-item {
  text-align: center;
  padding: 0 8px;
  position: relative;
}

.zy-tl-item .year {
  display: inline-block;
  font-family: var(--cp-ff-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--zy-gold-3);
  background: var(--zy-ivory-2);
  border: 1px solid var(--zy-gold);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.zy-tl-item .dot {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--zy-deep);
  border: 2px solid var(--zy-gold);
  color: var(--zy-gold-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  position: relative;
  z-index: 2;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: zy-dot-glow 3s ease-in-out infinite;
}

.zy-tl-item:nth-child(2) .dot { animation-delay: 0.7s; }
.zy-tl-item:nth-child(3) .dot { animation-delay: 1.4s; }
.zy-tl-item:nth-child(4) .dot { animation-delay: 2.1s; }

@keyframes zy-dot-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(101, 203, 59, 0.4); }
  50% { box-shadow: 0 0 0 14px rgba(101, 203, 59, 0); }
}

.zy-tl-item:hover .dot {
  transform: translateY(-6px) scale(1.08);
}

.zy-tl-item h3 {
  font-size: 19px;
  color: var(--zy-deep);
  margin-bottom: 8px;
}

.zy-tl-item p {
  font-size: 14.5px;
  margin: 0;
  color: #55645b;
}

@media (max-width: 991px) {
  .zy-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }
  .zy-timeline::before {
    display: none;
  }
}

@media (max-width: 575px) {
  .zy-timeline {
    grid-template-columns: 1fr;
  }
}

/* ============ special offer modal + launcher ============ */
.zy-offer-modal .modal-content {
  position: relative;
  background:
    radial-gradient(700px 300px at 85% -10%, rgba(101, 203, 59, 0.25), transparent 60%),
    linear-gradient(150deg, #04672f 0%, #00451f 70%);
  border: 1px solid rgba(169, 232, 139, 0.5);
  border-radius: 24px;
  overflow: hidden;
  color: #ffffff;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
}

.zy-offer-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.25);
  color: #ffffff;
  font-size: 16px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.zy-offer-close:hover {
  background: rgba(0, 0, 0, 0.45);
  transform: rotate(90deg);
}

.zy-offer-burst {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 4;
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--cp-ff-heading);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--zy-deep-2);
  background: var(--zy-gold);
  clip-path: polygon(50% 0%, 61% 12%, 76% 7%, 80% 22%, 96% 24%, 91% 39%, 100% 50%, 91% 61%, 96% 76%, 80% 78%, 76% 93%, 61% 88%, 50% 100%, 39% 88%, 24% 93%, 20% 78%, 4% 76%, 9% 61%, 0% 50%, 9% 39%, 4% 24%, 20% 22%, 24% 7%, 39% 12%);
  animation: zy-burst 3s ease-in-out infinite;
}

@keyframes zy-burst {
  0%, 100% { transform: rotate(-8deg) scale(1); }
  50% { transform: rotate(8deg) scale(1.08); }
}

.zy-spark {
  position: absolute;
  color: var(--zy-gold-2);
  z-index: 4;
  animation: zy-spark 2.2s ease-in-out infinite;
}

.zy-spark-1 { top: 18%; right: 8%; font-size: 14px; }
.zy-spark-2 { bottom: 14%; left: 42%; font-size: 10px; animation-delay: 0.6s; }
.zy-spark-3 { top: 46%; right: 38%; font-size: 12px; animation-delay: 1.2s; }

@keyframes zy-spark {
  0%, 100% { opacity: 0.25; transform: scale(0.7) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.25) rotate(45deg); }
}

.zy-offer-visual {
  position: relative;
  text-align: center;
  padding: 30px 10px 10px 24px;
}

.zy-offer-visual .bike {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 340px;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.5));
  animation: zy-bike-float 4s ease-in-out infinite;
}

@keyframes zy-bike-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

.zy-offer-visual .glow {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(101, 203, 59, 0.4), transparent 65%);
  animation: zy-breathe 3s ease-in-out infinite;
}

.zy-offer-body {
  padding: 44px 40px 34px 20px;
}

.zy-offer-body .tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px dashed var(--zy-gold-2);
  color: var(--zy-gold-2);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 16px;
}

.zy-offer-body h2 {
  color: #ffffff;
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 20px;
}

.zy-offer-body h2 span {
  color: var(--zy-gold-2);
}

.zy-offer-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.zy-offer-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(169, 232, 139, 0.35);
}

.zy-offer-list li:last-child {
  border-bottom: 0;
}

.zy-offer-list .ico {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  background: var(--zy-gold);
  color: var(--zy-deep-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.zy-offer-list strong {
  display: block;
  font-family: var(--cp-ff-heading);
  font-size: 18px;
  color: var(--zy-gold-2);
  margin-bottom: 2px;
}

.zy-offer-list span span,
.zy-offer-list li > span {
  color: #dcebe1;
  font-size: 14px;
  line-height: 1.6;
}

.zy-offer-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.zy-offer-btns .zy-phone-btn {
  font-size: 15px;
  padding: 12px 22px;
}

.zy-offer-body .small-print {
  color: rgba(220, 235, 225, 0.6);
  font-size: 12px;
  margin: 0;
}

@media (max-width: 767px) {
  .zy-offer-visual {
    padding: 40px 30px 0;
  }
  .zy-offer-visual .bike {
    max-width: 230px;
  }
  .zy-offer-body {
    padding: 26px 24px 28px;
  }
}

/* floating launcher */
.zy-offer-fab {
  position: fixed;
  left: 22px;
  bottom: 24px;
  z-index: 1080;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: var(--zy-deep);
  border: 1.5px solid var(--zy-gold);
  color: #ffffff;
  border-radius: 60px;
  padding: 10px 20px 10px 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.zy-offer-fab:hover {
  transform: translateY(-4px);
  background: #07542a;
}

.zy-offer-fab .ring {
  position: absolute;
  inset: 0;
  border-radius: 60px;
  animation: zy-pulse 2.4s ease-out infinite;
}

.zy-offer-fab i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--zy-gold);
  color: var(--zy-deep-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  animation: zy-burst 3s ease-in-out infinite;
}

.zy-offer-fab .lbl {
  font-family: var(--cp-ff-heading);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  color: var(--zy-gold-2);
}

@media (max-width: 575px) {
  .zy-offer-fab {
    left: 14px;
    bottom: 16px;
  }
  .zy-offer-fab .lbl {
    display: none;
  }
  .zy-offer-fab {
    padding: 10px;
  }
}

/* offer chips on hero + price card (scoped to beat .zy-hero-points span) */
.zy-chip-offer,
.zy-hero-points span.zy-chip-offer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 40px;
  background: linear-gradient(120deg, var(--zy-gold-2), var(--zy-gold));
  color: #08351a !important;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  border: 1px solid #ffffff;
  box-shadow: 0 0 0 3px rgba(101, 203, 59, 0.25), 0 10px 24px rgba(0, 0, 0, 0.35);
  animation: zy-pulse 2.4s ease-out infinite;
  backdrop-filter: none;
}

.zy-chip-offer i,
.zy-hero-points span.zy-chip-offer i {
  color: #08351a !important;
}

.zy-price-bonus {
  display: block;
  width: 100%;
  margin: 4px 0 16px;
  border: 1px dashed var(--zy-gold-3);
  background: rgba(101, 203, 59, 0.12);
  color: var(--zy-deep);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.zy-price-bonus:hover {
  background: rgba(101, 203, 59, 0.22);
}

.zy-price-bonus i {
  color: var(--zy-gold-3);
  margin-right: 6px;
}

/* footer wordmark — one line, emblem as the centerpiece */
.footer-section .title-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.16em;
  white-space: nowrap;
  font-size: clamp(40px, 10.5vw, 165px);
  letter-spacing: 0.03em;
  line-height: 0.85;
  margin-top: 70px;
  margin-bottom: -0.14em;
}

.footer-section .title-logo span {
  background: linear-gradient(180deg, #a9e88b 0%, #65cb3b 55%, rgba(101, 203, 59, 0.25) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #65cb3b;
}

.footer-section .title-logo img {
  width: 0.85em;
  height: 0.85em;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(169, 232, 139, 0.22), 0 16px 44px rgba(0, 0, 0, 0.45);
  transition: transform 0.7s ease;
}

.footer-section .title-logo:hover img {
  transform: rotate(360deg) scale(1.06);
}

/* misc: keep FA icons sized inside template icon boxes */
.feature-item .icon i,
.process-item .icon i {
  font-size: 42px;
  color: var(--zy-gold-2);
}

/* ============ counters — full-image cards with overlay text ============ */
.count-item {
  border: none;
  height: 430px;
  box-shadow: 0 18px 40px rgba(0, 101, 47, 0.12);
}

.count-item .image {
  position: absolute;
  inset: 0;
  height: 100%;
  margin-top: 0;
}

.count-item .image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 69, 31, 0) 32%, rgba(0, 69, 31, 0.55) 62%, rgba(0, 69, 31, 0.92) 100%);
}

.count-item .image img {
  object-fit: cover;
}

.count-item .content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 32px 28px;
}

.count-item .content .num {
  color: var(--zy-gold-2);
  font-weight: 700;
}

.count-item .content .num span {
  font-size: 72px;
}

.count-item .content .title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-top: 6px;
}

/* big word behind the counters — one-line outline watermark */
.counter-section {
  overflow: hidden;
}

.counter-section .counter-text {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 101, 47, 0.28);
  font-family: var(--cp-ff-heading);
  white-space: nowrap;
  text-align: center;
  font-size: clamp(44px, 9.5vw, 150px);
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 70px;
}

/* never allow sideways scroll */
html,
body,
#smooth-wrapper,
#smooth-content {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 767px) {
  .hero-section .sub-title {
    font-size: 17px;
    letter-spacing: 0.08em;
  }
}

/* preloader brand */
.preloader .site-name span {
  font-family: var(--cp-ff-heading);
  letter-spacing: 0.12em;
}
