/* =====================================================
   FINDASHOP.CO.ZA — Main Stylesheet
   ===================================================== */

:root {
  --gold: #D4A017;
  --gold-light: #F2C84B;
  --green: #1A6B3C;
  --green-light: #228B50;
  --dark: #0F1410;
  --dark2: #1A1F1C;
  --mid: #2C3530;
  --light: #F7F4EE;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --text-muted: #6B7570;
  --radius: 16px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--light);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(15, 20, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.logo-find { color: var(--white); }
.logo-a { color: var(--gold); }
.logo-shop { color: var(--white); }
.logo-za {
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 700;
  vertical-align: super;
  letter-spacing: 0;
}

.nav-cta {
  background: var(--gold);
  color: var(--dark);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,20,16,0.85) 0%,
    rgba(26,107,60,0.35) 60%,
    rgba(15,20,16,0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  max-width: 750px;
  margin-left: 6vw;
}

.badge {
  display: inline-block;
  background: rgba(212,160,23,0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero-title em {
  color: var(--gold-light);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 300;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(212,160,23,0.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212,160,23,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 15px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  font-weight: 600;
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeIn 1.5s 1s ease both;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s infinite;
}

/* =====================================================
   TICKER STRIP
   ===================================================== */
.strip {
  background: var(--green);
  overflow: hidden;
  padding: 14px 0;
}

.strip-track {
  display: flex;
  white-space: nowrap;
  gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.strip-track span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 0 20px;
}

.strip-track .dot {
  color: var(--gold);
  padding: 0 4px;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about {
  padding: 100px 0;
  background: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.section-label.center { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 28px;
}
.section-title.center { text-align: center; }

.section-title em {
  color: var(--green);
  font-style: italic;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.about-text strong {
  color: var(--dark);
}

.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-img-wrap:hover img {
  transform: scale(1.04);
}

.about-stat-cards {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.stat-card {
  flex: 1;
  background: var(--dark2);
  border-radius: 12px;
  padding: 20px 14px;
  text-align: center;
  border: 1px solid rgba(212,160,23,0.2);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.how {
  padding: 100px 0;
  background: var(--dark2);
}

.how .section-label { color: var(--gold); }
.how .section-title { color: var(--white); }
.how .section-title em { color: var(--gold-light); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.25s, border-color 0.25s;
}
.step:hover {
  transform: translateY(-6px);
  border-color: rgba(212,160,23,0.35);
}

.step-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(212,160,23,0.12);
  line-height: 1;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* =====================================================
   CATEGORIES
   ===================================================== */
.categories {
  padding: 100px 0 80px;
  background: var(--light);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 56px;
}

.cat-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1/1;
  cursor: pointer;
}

.cat-card.cat-large {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cat-card:hover img {
  transform: scale(1.08);
}

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background 0.3s;
}

.cat-card:hover .cat-overlay {
  background: linear-gradient(to top, rgba(26,107,60,0.75) 0%, transparent 70%);
}

.cat-tag {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* Last row: 3 equal cards spanning 4-column grid */
.cat-card.cat-third {
  grid-column: span 1;
}

/* Force last 3 cards into a separate 3-col sub-row */
.cat-grid {
  /* Override to use a more flexible approach */
}

/* Use a wrapper trick: last 3 cards fill equally */
.cat-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  grid-column: 1 / -1;
}

.cat-more {
  text-align: center;
  color: var(--text-muted);
  margin-top: 32px;
  font-style: italic;
  font-size: 1.05rem;
}

/* =====================================================
   WHY FREE
   ===================================================== */
.why {
  padding: 100px 0;
  background: var(--dark);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why .section-label { color: var(--gold); }
.why .section-title { color: var(--white); }
.why .section-title em { color: var(--gold-light); font-style: italic; }

.why p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.why-list {
  list-style: none;
  margin-top: 24px;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(26,107,60,0.3);
  border: 1px solid var(--green-light);
  border-radius: 50%;
  font-size: 0.8rem;
  color: #5de89d;
  flex-shrink: 0;
}

.why-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  padding: 100px 0;
  background: var(--light);
}

.cta-box {
  background: var(--dark2);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 24px;
  text-align: center;
  padding: 72px 48px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.12);
}

.cta-icon {
  font-size: 3rem;
  margin-bottom: 24px;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-box p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 36px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 12px 32px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #20c55c;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(37,211,102,0.4);
}

.cta-small {
  margin-top: 20px;
  font-size: 0.825rem;
  color: rgba(255,255,255,0.35) !important;
}

/* =====================================================
   SA SECTION
   ===================================================== */
.sa-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.sa-bg {
  position: absolute;
  inset: 0;
}

.sa-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.sa-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,20,16,0.6), rgba(26,107,60,0.5));
}

.sa-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.sa-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.sa-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(212,160,23,0.12);
}

.footer-top {
  margin-bottom: 56px;
}

.footer-top .logo-find { color: var(--white); }
.footer-top .logo-a { color: var(--gold); }
.footer-top .logo-shop { color: var(--white); }
.footer-top .logo-za { color: var(--gold-light); }

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
}

.footer-mid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 0.8; transform: scaleY(1.1); }
}

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   RESPONSIVE — TABLET
   ===================================================== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cat-card.cat-large {
    grid-column: span 2;
    aspect-ratio: 16/7;
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-mid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =====================================================
   RESPONSIVE — MOBILE
   ===================================================== */
@media (max-width: 640px) {
  .hero-content {
    margin-left: 0;
    padding: 110px 24px 80px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary, .btn-outline {
    width: 100%;
    text-align: center;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .cat-grid {
    grid-template-columns: 1fr;
  }

  .cat-card.cat-large {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }

  .cta-box {
    padding: 48px 24px;
  }

  .footer-mid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-stat-cards {
    flex-direction: column;
  }

  .scroll-hint {
    display: none;
  }
}
