/* ============ HOME PAGE ============ */

/* HERO */
.hero { position: relative; min-height: 82vh; max-height: 860px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(11,32,22,0.88) 0%, rgba(11,32,22,0.55) 45%, rgba(11,32,22,0.2) 100%),
    linear-gradient(to top, rgba(11,32,22,0.6) 0%, transparent 40%);
}
.hero-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); width: 100%; padding-top: 6rem; padding-bottom: 3.5rem; }
.hero-inner .eyebrow { color: var(--champagne); }
.hero-inner .eyebrow::before { background: var(--champagne); }
.hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.5rem); color: var(--ivory); max-width: 20ch; margin-bottom: 1.4rem; font-weight: 500; line-height: 1.1;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { color: rgba(247,246,241,0.85); font-size: 1.12rem; max-width: 54ch; margin-bottom: 1.8rem; font-weight: 300; }
.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-top: 2.4rem; }
.hero-actions { display: flex; gap: 1.1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 2.4rem;
}
.hero-stats .hs { text-align: right; }
.hero-stats .hs b { font-family: var(--display); font-size: 2rem; color: var(--ivory); display: block; line-height: 1; }
.hero-stats .hs small { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(247,246,241,0.65); }

/* ABOUT */
.about { padding: 4rem 0; background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 5rem; align-items: center; }
.about-images { position: relative; }
.about-images .img-main { aspect-ratio: 4/5; overflow: hidden; border-radius: 20px; }
.about-images .img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.about-images:hover .img-main img { transform: scale(1.06); }
.about-images .img-float {
  position: absolute; bottom: -2.5rem; right: -2rem; width: 46%; aspect-ratio: 1; overflow: hidden;
  border: 8px solid var(--ivory); box-shadow: 0 30px 60px rgba(0,0,0,0.18); border-radius: 16px;
}
.about-images .img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; top: -1.8rem; left: -1.8rem; background: var(--gold); color: var(--ink);
  width: 130px; height: 130px; border-radius: 50%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; box-shadow: 0 20px 40px rgba(176,141,79,0.35);
}
.about-badge b { font-family: var(--display); font-size: 2.2rem; line-height: 1; }
.about-badge small { font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 4px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2rem; margin: 2rem 0 2.4rem; }
.about-features li { list-style: none; display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.95rem; color: var(--charcoal-soft); }
.about-features li .icon { color: var(--gold); }
.about-stats { display: flex; gap: 3rem; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--line); }
.about-stats .st b { font-family: var(--display); font-size: 3rem; color: var(--gold-deep); display: block; line-height: 1; }
.about-stats .st small { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* WHY US */
.why { padding: 4rem 0; background: radial-gradient(120% 100% at 80% 0%, var(--green) 0%, var(--forest) 65%); color: var(--ivory); position: relative; }
.why::before { content: ''; position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(159,179,166,0.14) 1px, transparent 0); background-size: 34px 34px; }
.why .section-title { color: var(--ivory); }
.why .lead { color: rgba(247,246,241,0.7); }
.why-head { max-width: 720px; margin-bottom: 4rem; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-card {
  padding: 1.8rem 1.8rem;
  border-radius: 20px;
  border: 1px solid rgba(247,246,241,0.12);
  background: linear-gradient(160deg, rgba(247,246,241,0.05) 0%, rgba(247,246,241,0.01) 100%);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease), box-shadow 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: ''; position: absolute; top: -40%; right: -30%; width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(251,170,46,0.16) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.6s var(--ease); pointer-events: none;
}
.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(251,170,46,0.4);
  background: linear-gradient(160deg, rgba(247,246,241,0.09) 0%, rgba(247,246,241,0.02) 100%);
  box-shadow: 0 20px 45px rgba(0,0,0,0.35), 0 0 0 1px rgba(251,170,46,0.08);
}
.why-card:hover::after { opacity: 1; }
.why-num { font-family: var(--display); font-size: 0.9rem; color: var(--gold-deep); letter-spacing: 0.1em; margin-bottom: 1.1rem; display: block; position: relative; z-index: 1; }
.why-card h3 { font-size: 1.5rem; margin-bottom: 0.9rem; color: var(--gold-deep); position: relative; z-index: 1; }
.why-card p { color: rgba(247,246,241,0.6); font-size: 0.92rem; font-weight: 300; position: relative; z-index: 1; }
.why-icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; color: var(--moss);
  background: rgba(251,170,46,0.1); border: 1px solid rgba(251,170,46,0.18);
  margin-bottom: 1.1rem; position: relative; z-index: 1;
  transition: all 0.5s var(--ease);
}
.why-card:hover .why-icon {
  background: var(--gold); color: var(--forest); border-color: var(--gold);
  transform: scale(1.08) rotate(-6deg);
}

/* SERVICES */
.services { padding: 4rem 0; background: var(--cream); }
.services-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: 2.75rem; flex-wrap: wrap; }
.services-head .lead { margin-top: 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.svc-card { position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer; border-radius: 16px; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(11,32,22,0.22); }
.svc-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.svc-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,32,22,0.85) 0%, rgba(11,32,22,0.05) 55%); transition: opacity 0.5s; }
.svc-card:hover img { transform: scale(1.08); }
.svc-body { position: absolute; left: 0; bottom: 0; z-index: 2; padding: 2rem; width: 100%; }
.svc-body .idx { font-size: 0.72rem; letter-spacing: 0.2em; color: var(--champagne); }
.svc-body h3 { color: var(--ivory); font-size: 1.5rem; margin: 0.4rem 0; }
.svc-body p { color: rgba(247,246,241,0.75); font-size: 0.88rem; max-height: 0; overflow: hidden; opacity: 0; transition: all 0.5s var(--ease); }
.svc-card:hover .svc-body p { max-height: 100px; opacity: 1; margin-bottom: 1rem; }
.svc-body .link-arrow { color: var(--champagne); opacity: 0; transform: translateY(8px); transition: all 0.5s var(--ease); }
.svc-card:hover .svc-body .link-arrow { opacity: 1; transform: translateY(0); }
.svc-body .link-arrow::after { background: var(--champagne); }

/* PROJECTS */
.projects { padding: 4rem 0; background: var(--ivory); }
.proj-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 4rem; }
.proj-row:last-child { margin-bottom: 0; }
.proj-row.rev .proj-text { order: 2; }
.proj-imgs { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1rem; }
.proj-imgs img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; transition: transform 1s var(--ease); }
.proj-imgs img:first-child { aspect-ratio: 3/4.4; }
.proj-imgs a { overflow: hidden; display: block; border-radius: 20px; }
.proj-imgs a:hover img { transform: scale(1.07); }
.proj-text h3 { font-size: 1.85rem; margin-bottom: 1.2rem; }
.proj-tags { display: flex; gap: 0.6rem; flex-wrap: wrap; margin: 1.6rem 0; }
.proj-tags span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.5rem 1rem; border: 1px solid var(--line); color: var(--charcoal-soft); }

/* BRANDS */
.brands { padding: 3.5rem 0; background: var(--cream); border-top: 1px solid var(--line); overflow: hidden; }
.brands p.label { text-align: center; font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--green); font-weight: 600; margin-bottom: 2.5rem; }

/* Premium client logo marquee */
.logo-marquee { position: relative; width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.logo-track { display: flex; align-items: center; width: max-content; animation: logoScroll 36s linear infinite; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-item { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; margin: 0 1.35rem; }
.logo-item img { height: 118px; width: auto; max-width: 270px; min-width: 220px; object-fit: contain; display: block;
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  padding: 1.5rem 2.3rem; box-shadow: 0 10px 28px rgba(11,32,22,0.07);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease); }
.logo-item img:hover { transform: translateY(-6px); box-shadow: 0 22px 42px rgba(11,32,22,0.15); border-color: var(--gold); }
/* Squarer marks (Packages, DHA, Zarkon Heights, Z Gold Bank) get less internal padding so the logo itself fills more of the same card size */
.logo-item img.logo-fill { padding: 0.75rem 1rem; }
@keyframes logoScroll { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (max-width: 700px) {
  .logo-item { margin: 0 0.9rem; }
  .logo-item img { height: 74px; max-width: 170px; min-width: 140px; padding: 0.9rem 1.4rem; border-radius: 14px; }
  .logo-item img.logo-fill { padding: 0.5rem 0.7rem; }
  .logo-track { animation-duration: 24s; }
}

/* TESTIMONIAL */
.testi { padding: 4rem 0; background: linear-gradient(160deg, var(--forest) 0%, var(--green) 100%); color: var(--ivory); text-align: center; position: relative; }
.testi .section-title { color: var(--ivory); margin-bottom: 3rem; }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; text-align: left; }
.testi-card {
  display: flex; flex-direction: column; background: rgba(247,246,241,0.06);
  border: 1px solid rgba(247,246,241,0.14); border-radius: 18px; padding: 1.9rem;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.testi-card:hover {
  transform: translateY(-5px); background: rgba(247,246,241,0.1);
  border-color: rgba(251,170,46,0.4); box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}
.testi-card-head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1rem; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--body); font-weight: 700; font-size: 1rem;
}
.testi-who { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.testi-name { font-family: var(--body); font-weight: 700; font-size: 0.95rem; color: var(--ivory); }
.testi-meta { font-size: 0.76rem; color: rgba(247,246,241,0.55); }
.testi-gicon { color: rgba(247,246,241,0.35); font-size: 1.05rem; }
.testi-card-stars { color: var(--gold); letter-spacing: 0.2em; font-size: 0.9rem; margin-bottom: 0.9rem; }
.testi-card-text { font-family: var(--body); font-size: 0.94rem; line-height: 1.65; color: rgba(247,246,241,0.85); flex: 1; margin-bottom: 1.3rem; font-weight: 300; }
.testi-card-cta {
  display: inline-flex; align-items: center; gap: 0.5rem; align-self: flex-start;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--gold); transition: gap 0.3s var(--ease);
}
.testi-card:hover .testi-card-cta { gap: 0.8rem; }
.testi-card-cta .btn-arrow { transition: transform 0.4s var(--ease); }
.testi-card:hover .testi-card-cta .btn-arrow { transform: translateX(4px); }

/* CTA banner */
.cta-band { position: relative; padding: 5rem var(--gutter); text-align: center; color: var(--ivory); overflow: hidden; }
.cta-band-bg { position: absolute; inset: 0; z-index: 0; }
.cta-band-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ''; position: absolute; inset: 0; background: rgba(11,32,22,0.72); z-index: 1; }
.cta-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 1.3rem; font-weight: 500; line-height: 1.16; }
.cta-inner h2 em { font-style: italic; color: var(--gold); }
.cta-inner p { color: rgba(247,246,241,0.8); margin-bottom: 2.4rem; }
.cta-actions { display: flex; gap: 1.1rem; justify-content: center; flex-wrap: wrap; }

/* FAQ */
.faq { padding: 4rem 0; background: var(--ivory); }
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4rem; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.6rem 0; cursor: pointer; font-family: var(--display); font-size: 1.3rem; color: var(--charcoal); transition: color 0.3s; }
.faq-q:hover { color: var(--gold-deep); }
.faq-q .plus { font-family: var(--body); font-size: 1.4rem; color: var(--gold); transition: transform 0.4s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p { padding-bottom: 1.6rem; color: var(--charcoal-soft); font-size: 0.96rem; }

@media (max-width: 980px) {
  .about-grid, .proj-row, .proj-row.rev .proj-text, .faq-grid { grid-template-columns: 1fr; }
  .proj-row.rev .proj-text { order: 0; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 1.6rem; }
  .hero-stats { gap: 1.8rem; }
  .hero-stats .hs { text-align: left; }
  .hero-stats .hs b { font-size: 1.7rem; }
  .hero { min-height: 78vh; max-height: 760px; }
  .about-images { max-width: 480px; margin: 0 auto 3rem; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .why-grid, .services-grid, .about-features { grid-template-columns: 1fr; }
  .about-stats { gap: 1.5rem; }
  .hero-actions .btn { flex: none; }
  .hero { min-height: 640px; max-height: 700px; }
  .hero-inner { padding-top: 4rem; padding-bottom: 4rem; }
  .testi-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .testi .section-title { margin-bottom: 2rem; }
}

/* PRICING */
.pricing { padding: var(--gutter) 0; background: var(--cream-bg); }
.pricing-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.pricing-table { max-width: 780px; margin: 0 auto; background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.pricing-row { display: flex; justify-content: space-between; align-items: center; padding: 1.35rem 2rem; border-bottom: 1px solid var(--line); }
.pricing-row:last-child { border-bottom: none; }
.pricing-row .pt-name { font-family: var(--display); font-size: 1.2rem; color: var(--charcoal); }
.pricing-row .pt-name a { color: inherit; }
.pricing-row .pt-price { font-family: var(--body); font-size: 1rem; font-weight: 500; color: var(--gold-deep); white-space: nowrap; }
.pricing-note { max-width: 780px; margin: 1.25rem auto 0; font-size: 0.85rem; color: var(--muted); text-align: center; line-height: 1.6; }
@media (max-width: 560px) {
  .pricing-row { padding: 1.1rem 1.25rem; }
  .pricing-row .pt-name { font-size: 1.05rem; }
}
