/* =========================================
   SMARTLAND VENTURE – Global Stylesheet
   ========================================= */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ---- Variables ---- */
:root {
  /* ── Brand greens from logo ── */
  --gold:        #E8961A;   /* logo golden yellow  */
  --gold-light:  #F5A623;   /* bright logo yellow  */
  --gold-pale:   #F7D58B;   /* pale yellow tint    */
  --cream:       #F2F7F0;   /* soft green-white    */
  --cream-dark:  #E4EFE1;   /* light green tint    */
  --cream-mid:   #EAF2E7;   /* mid green-white     */
  --brown:       #1B5E20;   /* deep forest green   */
  --brown-light: #2E7D32;   /* medium forest green */
  --text:        #0F2D0F;   /* near-black green    */
  --text-mid:    #2E5730;   /* medium green text   */
  --text-light:  #5A8A5C;   /* muted green text    */
  --white:       #FAFFF9;   /* warm white          */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
  --max-w: 1100px;
  --radius: 4px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: #F2F7F0;
  /* Subtle green-tinted background matching logo */
  background-image:
    radial-gradient(ellipse at 20% 20%, rgba(45,122,45,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(232,150,26,0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(240,248,238,0.7) 0%, transparent 70%),
    linear-gradient(160deg, #EEF5EB 0%, #E8F2E5 30%, #F2F7F0 55%, #EAF0E7 80%, #EFF6EC 100%);
  color: var(--text);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- Container ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* All padded sections get diamond corner watermarks like the mockup */
.section-pad {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.section-pad::before,
.section-pad::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border: 22px solid rgba(45,122,45,0.08);
  transform: rotate(45deg);
  pointer-events: none;
  z-index: 0;
}
.section-pad::before { top: -170px; left: -170px; }
.section-pad::after  { bottom: -170px; right: -170px; }
.section-pad .container { position: relative; z-index: 1; }
.bg-light {
  background-color: #E4EFE1;
  background-image:
    radial-gradient(ellipse at 30% 30%, rgba(45,122,45,0.08) 0%, transparent 60%),
    linear-gradient(150deg, #E6F0E3 0%, #DCE9D8 50%, #E6F0E3 100%);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-gold {
  display: inline-block;
  padding: 14px 38px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, var(--gold) 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: opacity 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 18px rgba(45,122,45,0.2);
}
.btn-gold:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45,122,45,0.3);
}
.btn-gold-outline {
  display: inline-block;
  padding: 13px 36px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* =========================================
   TYPOGRAPHY HELPERS
   ========================================= */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 14px;
}
.section-subtitle {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 24px;
}
.gold-rule {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brown-light), var(--gold-light), var(--brown-light), transparent);
  margin: 0 auto 14px;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FAFFF9;
  border-bottom: 1px solid rgba(45,122,45,0.2);
  box-shadow: 0 2px 16px rgba(13,43,13,0.07);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; }
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-logo { display: flex; align-items: center; }
.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 8px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { all: unset; cursor: pointer; }
.nav-cta.btn-gold { padding: 10px 22px; font-size: 0.82rem; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}
/* Subtle noise overlay matching the page texture */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

/* Large diagonal corner watermark — exactly as in mockup */
.hero-diamonds {
  position: absolute;
  top: 0; bottom: 0;
  width: 320px;
  pointer-events: none;
  overflow: hidden;
}
.hero-diamonds-left  { left: 0; }
.hero-diamonds-right { right: 0; transform: scaleX(-1); }

.hero-diamonds::before,
.hero-diamonds::after {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 420px; height: 420px;
  border: 18px solid rgba(45,122,45,0.10);
  transform: rotate(45deg);
  transform-origin: center;
}
.hero-diamonds::after {
  top: 40px; left: 40px;
  width: 340px; height: 340px;
  border-width: 14px;
  border-color: rgba(45,122,45,0.07);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 60px 24px;
  z-index: 1;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title span {
  color: var(--gold);
  display: block;
}
.hero-sub {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-mid);
  margin-bottom: 36px;
  font-style: italic;
}

/* =========================================
   USP BAR
   ========================================= */
.usp-bar {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: rgba(242,250,240,0.8);
  border-top: 1px solid rgba(45,122,45,0.15);
  border-bottom: 1px solid rgba(45,122,45,0.15);
  padding: 28px 24px;
  gap: 0;
}
.usp-divider {
  width: 1px;
  background: var(--gold-pale);
  margin: 0 40px;
  flex-shrink: 0;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  max-width: 280px;
}
.usp-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.usp-icon svg { width: 40px; height: 40px; }
.usp-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.usp-item p {
  font-size: 0.82rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

/* =========================================
   WELCOME
   ========================================= */
.welcome { background: var(--cream); }
.welcome-body {
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* =========================================
   PROJECTS
   ========================================= */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.project-card {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(13,43,13,0.1);
  background: rgba(240,248,238,0.95);
  transition: transform 0.3s, box-shadow 0.3s;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(13,43,13,0.15);
}
.project-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s;
}
.project-card:hover .project-img { transform: scale(1.04); }

/* Gradient placeholders styled like luxury real estate */
.project-img-1 {
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(13,43,13,0.6) 100%),
    linear-gradient(135deg, #8BC34A 0%, #558B2F 35%, #33691E 60%, #1B5E20 100%);
}
.project-img-2 {
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(13,43,13,0.6) 100%),
    linear-gradient(135deg, #AED581 0%, #7CB342 35%, #558B2F 60%, #33691E 100%);
}
.project-img-3 {
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(13,43,13,0.6) 100%),
    linear-gradient(135deg, #C5E1A5 0%, #9CCC65 35%, #689F38 60%, #33691E 100%);
}
.project-label {
  padding: 16px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  letter-spacing: 0.03em;
}

/* =========================================
   WHY INVEST
   ========================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.why-card {
  background: rgba(240,248,238,0.9);
  border: 1px solid rgba(45,122,45,0.2);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.why-card:hover {
  box-shadow: 0 8px 28px rgba(45,122,45,0.12);
  transform: translateY(-4px);
}
.why-icon {
  width: 64px; height: 64px;
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 60px; height: 60px; }
.why-card strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.why-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  background: transparent;
  border-top: 1px solid rgba(184,137,42,0.2);
  border-bottom: 1px solid rgba(45,122,45,0.15);
}
.cta-body {
  max-width: 480px;
  margin: 16px auto 32px;
  font-size: 1rem;
  color: var(--text-mid);
}

/* =========================================
   FOOTER — Rich multi-column design
   ========================================= */
.footer {
  background:
    radial-gradient(ellipse at 10% 0%,   rgba(232,150,26,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(45,122,45,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%,  rgba(255,255,255,0.02) 0%, transparent 70%),
    linear-gradient(160deg, #1A1F1A 0%, #1E2420 40%, #1C2219 70%, #181D18 100%);
  border-top: none;
  position: relative;
  overflow: hidden;
}

/* Decorative top border — dual line with gold center */
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    transparent 0%,
    #2E7D32 15%,
    #F5A623 35%,
    #FFD54F 50%,
    #F5A623 65%,
    #2E7D32 85%,
    transparent 100%
  );
}

/* Subtle diagonal pattern overlay */
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(45,122,45,0.03) 30px,
    rgba(45,122,45,0.03) 31px
  );
  pointer-events: none;
}

/* ---- Main footer content ---- */
.footer-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 52px 24px 36px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

/* Col 1 – Brand */
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}
.footer-logo-img { height: 48px; width: auto; display: block; object-fit: contain; }
.footer-brand-desc {
  font-size: 0.83rem;
  color: rgba(210,220,210,0.65);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 220px;
}
.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(180,220,180,0.6);
  transition: all 0.25s;
  background: rgba(255,255,255,0.05);
}
.footer-social a:hover {
  border-color: #F5A623;
  color: #F5A623;
  background: rgba(245,166,35,0.1);
  transform: translateY(-2px);
}
.footer-social svg { width: 15px; height: 15px; }

/* Col 2 & 3 – Links */
.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #F5A623;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(76,175,80,0.2);
  position: relative;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 32px; height: 2px;
  background: #F5A623;
  border-radius: 2px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(210,220,210,0.65);
  transition: color 0.2s, padding-left 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '';
  width: 5px; height: 5px;
  background: rgba(76,175,80,0.4);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.2s;
}
.footer-links a:hover { color: #F5A623; padding-left: 4px; }
.footer-links a:hover::before { background: #F5A623; }

/* Col 4 – Contact */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #F5A623;
}
.footer-contact-icon svg { width: 15px; height: 15px; }
.footer-contact-text {
  display: flex;
  flex-direction: column;
}
.footer-contact-label {
  font-size: 0.7rem;
  color: rgba(200,210,200,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.footer-contact-value {
  font-size: 0.83rem;
  color: rgba(220,230,220,0.85);
  line-height: 1.4;
}
.footer-contact-value a {
  color: inherit;
  transition: color 0.2s;
}
.footer-contact-value a:hover { color: #F5A623; }

/* ---- Bottom bar ---- */
.footer-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.25);
}
.footer-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(180,190,180,0.45);
}
.footer-copy span { color: rgba(245,166,35,0.7); }
.footer-tagline {
  font-size: 0.75rem;
  color: rgba(180,190,180,0.35);
  font-style: italic;
  letter-spacing: 0.04em;
}

/* =========================================
   ABOUT PAGE

   ========================================= */
.page-hero {
  background: transparent;
  border-bottom: 1px solid rgba(45,122,45,0.15);
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before,
.page-hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border: 22px solid rgba(45,122,45,0.07);
  transform: rotate(45deg);
  pointer-events: none;
}
.page-hero::before { top: -180px; left: -180px; }
.page-hero::after  { bottom: -180px; right: -180px; }
.page-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 16px;
}
.page-hero-sub {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-mid);
}

/* About – intro split */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.about-img-block {
  position: relative;
  padding-bottom: 60px;
  padding-right: 50px;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13,43,13,0.25), 0 8px 20px rgba(13,43,13,0.15);
  position: relative;
  z-index: 2;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
/* Gold border accent on main image */
.about-img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 2px solid rgba(232,150,26,0.3);
  pointer-events: none;
  z-index: 3;
}
.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 58%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  border: 4px solid var(--cream);
  box-shadow: 0 16px 40px rgba(13,43,13,0.2), 0 4px 12px rgba(13,43,13,0.12);
  z-index: 3;
}
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Gold border on accent */
.about-img-accent::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: 2px solid rgba(232,150,26,0.4);
  pointer-events: none;
}
.about-text .gold-rule { margin: 0 0 14px; }
.about-text .section-subtitle { text-align: left; }
.about-body-text {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

/* Stats bar */
.stats-bar {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 40%, #388E3C 60%, #1B5E20 100%);
  padding: 48px 24px;
}
.stats-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-item span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--gold-pale);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(13,43,13,0.12); }
.team-avatar {
  height: 180px;
  background: linear-gradient(160deg, #4CAF50 0%, #2E7D32 100%);
}
.team-avatar-2 { background: linear-gradient(160deg, #66BB6A 0%, #388E3C 100%); }
.team-avatar-3 { background: linear-gradient(160deg, #81C784 0%, #43A047 100%); }
.team-info { padding: 20px 16px; }
.team-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.team-info em { font-size: 0.83rem; color: var(--gold); font-style: normal; }

/* Handles / What We Handle grid */
.handles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.handle-card {
  background: rgba(240,248,238,0.9);
  border: 1px solid rgba(184,137,42,0.2);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.handle-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brown-light), var(--gold-light), var(--brown-light), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.handle-card:hover {
  box-shadow: 0 10px 32px rgba(45,122,45,0.12);
  transform: translateY(-5px);
}
.handle-card:hover::after { opacity: 1; }
.handle-icon {
  width: 64px; height: 64px;
  background: rgba(184,137,42,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 4px;
}
.handle-icon svg { width: 36px; height: 36px; }
.handle-card strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.handle-card p {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .handles-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .handles-grid { grid-template-columns: 1fr; }
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.value-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-left: 3px solid var(--brown-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 2px 12px rgba(13,43,13,0.07);
}
.value-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
  flex-shrink: 0;
}
.value-item strong { display: block; font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.value-item p { font-size: 0.87rem; color: var(--text-light); }

/* =========================================
   SERVICES PAGE
   ========================================= */
.services-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.services-intro-text .section-title { text-align: left; }
.services-intro-text .gold-rule { margin: 0 0 14px; }
.services-intro-text .section-subtitle { text-align: left; }
.services-img-block {
  position: relative;
  padding-bottom: 60px;
  padding-left: 50px;
}
.services-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13,43,13,0.25), 0 8px 20px rgba(13,43,13,0.15);
  position: relative;
  z-index: 2;
}
.services-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.services-img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 2px solid rgba(232,150,26,0.3);
  pointer-events: none;
  z-index: 3;
}
.services-img-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  border: 4px solid var(--cream);
  box-shadow: 0 16px 40px rgba(13,43,13,0.2), 0 4px 12px rgba(13,43,13,0.12);
  z-index: 3;
}
.services-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.services-img-accent::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: 2px solid rgba(232,150,26,0.4);
  pointer-events: none;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gold-pale);
  border-radius: var(--radius);
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brown), var(--brown-light));
}
.service-card:hover {
  box-shadow: 0 10px 32px rgba(45,122,45,0.15);
  transform: translateY(-4px);
}
.service-card-icon {
  width: 52px; height: 52px;
  background: rgba(184,137,42,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.service-card-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}
.service-card p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.75; }
.service-card-link {
  margin-top: auto;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service-card-link:hover { gap: 10px; }

/* Process */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-pale), var(--gold), var(--gold-pale), transparent);
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--brown-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  box-shadow: 0 4px 16px rgba(45,122,45,0.15);
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.process-step p { font-size: 0.83rem; color: var(--text-light); }

/* FAQ */
.faq-list { margin-top: 36px; max-width: 720px; margin-left: auto; margin-right: auto; }
.faq-item {
  border-bottom: 1px solid rgba(45,122,45,0.15);
  padding: 20px 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  gap: 16px;
}
.faq-q span { color: var(--brown-light); font-size: 1.4rem; transition: transform 0.25s; }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  transition: max-height 0.35s ease, padding 0.2s;
}
.faq-item.open .faq-a { max-height: 300px; padding-top: 12px; }

/* =========================================
   ENQUIRY FORMS
   ========================================= */

/* Tab Toggle */
.form-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 36px auto 0;
  max-width: 480px;
  border: 1.5px solid rgba(45,122,45,0.3);
  border-radius: 6px;
  overflow: hidden;
}
.form-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  background: rgba(240,248,238,0.6);
  border: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.form-tab svg { width: 18px; height: 18px; flex-shrink: 0; }
.form-tab:first-child { border-right: 1.5px solid rgba(45,122,45,0.3); }
.form-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
}
.form-tab:hover:not(.active) { background: rgba(184,137,42,0.1); color: var(--gold); }

/* Form Wrap */
.enquiry-form-wrap {
  max-width: 820px;
  margin: 28px auto 0;
  background: rgba(244,250,242,0.95);
  border: 1px solid rgba(45,122,45,0.2);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(13,43,13,0.1);
  text-align: left;
}

/* Form Header */
.form-header {
  background: linear-gradient(135deg, rgba(45,122,45,0.08) 0%, rgba(45,122,45,0.02) 100%);
  border-bottom: 1px solid rgba(45,122,45,0.15);
  padding: 20px 28px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.form-header p { font-size: 0.88rem; color: var(--text-mid); margin: 0; }
.form-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.buyer-badge  { background: rgba(45,122,45,0.1); color: #2E7D32; border: 1px solid rgba(45,122,45,0.25); }
.seller-badge { background: rgba(184,137,42,0.12); color: var(--gold); border: 1px solid rgba(184,137,42,0.3); }

/* Form Body */
.sform {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Form Layout */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}
.req { color: var(--gold); }

/* Inputs */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,253,248,0.9);
  border: 1.5px solid rgba(45,122,45,0.25);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(106,85,48,0.4); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232E7D32' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,137,42,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.input-error { border-color: #c0392b !important; box-shadow: 0 0 0 3px rgba(192,57,43,0.08) !important; }

/* File Upload */
.file-upload-area {
  border: 2px dashed rgba(45,122,45,0.3);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: rgba(255,253,248,0.6);
  color: var(--text-light);
  font-size: 0.85rem;
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
}
.file-upload-area:hover { border-color: var(--gold); background: rgba(184,137,42,0.05); color: var(--gold); }
.file-upload-area svg { color: var(--gold); opacity: 0.7; }
#photoUploadStatus { min-height: 18px; transition: color 0.2s; }

.file-note { font-size: 0.76rem; color: var(--text-light); margin-top: 6px; }

/* Submit Row */
.form-submit-row { margin-top: 8px; }
.form-submit-row .btn-gold { min-width: 220px; }
.form-note { font-size: 0.78rem; color: var(--text-light); margin-top: 10px; }

/* Feedback Messages */
.form-feedback {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 4px;
}
.form-success { background: rgba(39,174,96,0.1); color: #1e8449; border: 1px solid rgba(39,174,96,0.3); }
.form-error   { background: rgba(192,57,43,0.08); color: #c0392b; border: 1px solid rgba(192,57,43,0.25); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .burger { display: flex; }
  .nav-links {

    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: #FAFFF9;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 24px;
    gap: 20px;
    border-bottom: 2px solid var(--gold-pale);
    box-shadow: 0 8px 24px rgba(13,43,13,0.1);
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-cta.btn-gold { width: 100%; text-align: center; }
  .navbar { position: relative; }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .usp-bar { flex-direction: column; align-items: flex-start; gap: 20px; }
  .usp-divider { width: 100%; height: 1px; margin: 4px 0; }
  .usp-item { max-width: 100%; }

  .projects-grid,
  .why-grid,
  .team-grid,
  .services-cards-grid { grid-template-columns: 1fr 1fr; }

  .about-intro,
  .services-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-block { padding-bottom: 80px; padding-right: 40px; }
  .services-img-block { padding-bottom: 80px; padding-left: 40px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
  .sform { padding: 20px 18px; }
}

@media (max-width: 580px) {
  .section-pad { padding: 56px 0; }
  .hero { min-height: auto; }
  .hero-content { padding: 48px 16px 40px; }
  .hero-title { font-size: 2.5rem; }
  .hero-diamonds { display: none; }

  .projects-grid,
  .why-grid,
  .team-grid,
  .services-cards-grid,
  .process-steps { grid-template-columns: 1fr; }

  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-bar-inner { flex-direction: column; align-items: center; text-align: center; gap: 6px; }
  .form-tabs { max-width: 100%; }
  .form-tab { font-size: 0.82rem; padding: 12px 12px; }
  .enquiry-form-wrap { margin: 20px 0 0; }
  .form-header { padding: 16px 16px 14px; }

  .footer-top { flex-direction: column; align-items: center; text-align: center; padding: 28px 20px 20px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 14px; }
  .footer-info { flex-direction: column; gap: 10px; align-items: center; }
  .footer-copy { text-align: center; }

  .page-hero { padding: 56px 16px 40px; }
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ---- Contact Details Left ---- */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 32px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(240,248,238,0.9);
  border: 1px solid rgba(45,122,45,0.15);
  border-radius: 10px;
  border-left: 4px solid var(--brown-light);
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 18px rgba(13,43,13,0.1);
}
.contact-card-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--brown), var(--brown-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.contact-card-icon svg { width: 20px; height: 20px; }
.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact-card-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  font-weight: 600;
}
.contact-card-value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
}
.contact-card-value:hover { color: var(--brown-light); }

/* WhatsApp CTA button */
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border: none;
  box-shadow: 0 4px 18px rgba(37,211,102,0.3);
}
.wa-btn:hover {
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}

/* ---- Contact Form Right ---- */
.contact-form-wrap {
  background: rgba(244,250,242,0.95);
  border: 1px solid rgba(45,122,45,0.15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(13,43,13,0.1);
}
.contact-form-header {
  background: linear-gradient(135deg, rgba(45,122,45,0.08) 0%, rgba(45,122,45,0.02) 100%);
  border-bottom: 1px solid rgba(45,122,45,0.12);
  padding: 22px 28px;
}
.contact-form-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.contact-form-header p {
  font-size: 0.85rem;
  color: var(--text-light);
}
.contact-form-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Feedback message fix — appears at top, no scroll jump ── */
.form-feedback {
  margin-bottom: 4px;
  scroll-margin-top: 120px;
}
.sform .form-feedback,
.contact-form-body .form-feedback {
  margin-bottom: 12px;
}

/* =========================================
   FORM LOADER OVERLAY + FIELD VALIDATION
   ========================================= */

/* Loader overlay — covers the entire form while submitting */
.form-loader-overlay {
  position: absolute;
  inset: 0;
  background: rgba(244,250,242,0.92);
  backdrop-filter: blur(3px);
  border-radius: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.form-loader-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 40px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(45,122,45,0.15);
  box-shadow: 0 8px 32px rgba(13,43,13,0.12);
}
/* Spinner */
.form-loader-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(45,122,45,0.15);
  border-top-color: var(--brown-light);
  border-right-color: var(--gold-light);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.form-loader-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  text-align: center;
  max-width: 200px;
  line-height: 1.5;
}

/* Per-field inline error message */
.field-error-msg {
  display: block;
  font-size: 0.75rem;
  color: #c0392b;
  margin-top: 4px;
  min-height: 16px;
  animation: fadeInDown 0.15s ease;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Red border on error — override */
.input-error {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.08) !important;
}
/* Green border on valid fill */
.form-group input:not(.input-error):not(:placeholder-shown),
.form-group select:not(.input-error):valid:not([value=""]),
.form-group textarea:not(.input-error):not(:placeholder-shown) {
  border-color: rgba(45,122,45,0.4);
}

/* =========================================
   GOOGLE REVIEWS SECTION
   ========================================= */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: white;
  border: 1px solid rgba(45,122,45,0.15);
  border-radius: 12px;
  padding: 22px 36px;
  max-width: 440px;
  margin: 0 auto 36px;
  flex-wrap: wrap;
}
.reviews-score-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.reviews-big-score {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}
.reviews-stars {
  display: flex;
  gap: 3px;
}
.reviews-count {
  font-size: 0.78rem;
  color: var(--text-light);
}
.reviews-g-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(45,122,45,0.2);
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--text-mid);
  transition: all 0.2s;
  background: rgba(242,247,240,0.8);
}
.reviews-g-badge:hover {
  border-color: var(--brown-light);
  color: var(--brown);
  background: white;
}

/* Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

/* Loading */
.reviews-loading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 40px;
  color: var(--text-light);
  font-size: 0.9rem;
}
.reviews-spinner {
  width: 36px; height: 36px;
  border: 3px solid rgba(45,122,45,0.15);
  border-top-color: var(--brown-light);
  border-right-color: var(--gold-light);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Error */
.reviews-error {
  padding: 24px;
  color: var(--text-light);
  font-size: 0.88rem;
}
.reviews-error a { color: var(--brown-light); }

/* Review card */
.review-card {
  background: white;
  border: 1px solid rgba(45,122,45,0.12);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(13,43,13,0.1);
}
.review-card-top {
  display: flex;
  align-items: center;
  gap: 11px;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  font-family: var(--font-body);
}
.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-author-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.review-date {
  font-size: 0.72rem;
  color: var(--text-light);
}
.review-stars {
  display: flex;
  gap: 2px;
}
.review-text {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
}
.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--brown-light);
  background: rgba(45,122,45,0.07);
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
}

/* Responsive */
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-summary { padding: 18px 20px; gap: 16px; }
}


/* =========================================
   SELLER FORM — NEW FIELDS
   ========================================= */
.sform-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  border-bottom: 1px solid rgba(232,150,26,0.25);
  padding-bottom: 6px;
  margin: 24px 0 14px;
}

/* Checkbox group — suitable for */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-mid);
  background: rgba(240,248,238,0.8);
  border: 1.5px solid rgba(45,122,45,0.2);
  border-radius: 6px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.18s;
  user-select: none;
}
.checkbox-item:hover {
  border-color: var(--brown-light);
  background: rgba(45,122,45,0.08);
}
/* Hide native checkbox — replaced by custom tick box */
.checkbox-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 17px;
  height: 17px;
  min-width: 17px;
  border: 2px solid rgba(45,122,45,0.35);
  border-radius: 4px;
  background: white;
  cursor: pointer;
  margin: 0;
  padding: 0;
  min-height: unset;
  position: relative;
  transition: all 0.15s;
  flex-shrink: 0;
}
/* Tick mark via pseudo-element */
.checkbox-item input[type="checkbox"]::after {
  content: '';
  position: absolute;
  display: none;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
/* Checked state */
.checkbox-item input[type="checkbox"]:checked {
  background: var(--brown-light);
  border-color: var(--brown-light);
}
.checkbox-item input[type="checkbox"]:checked::after {
  display: block;
}
/* Label text highlight when checked */
.checkbox-item:has(input:checked) {
  color: var(--brown);
  border-color: var(--brown-light);
  background: rgba(45,122,45,0.1);
  font-weight: 600;
}

/* Landmark grid */
.landmark-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}
.landmark-row {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 10px;
}
.landmark-type,
.landmark-name,
.landmark-dist {
  font-size: 0.85rem;
}
@media (max-width: 580px) {
  .landmark-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Crop rows */
.crop-row { margin-bottom: 4px; }

/* ── Clearable select wrapper ── */
.select-clearable {
  position: relative;
  display: block;
}
.select-clearable select {
  width: 100%;
  padding-right: 56px; /* space for X + native arrow */
}
.select-clear-btn {
  position: absolute;
  right: 32px; /* sit left of the native dropdown arrow (~28px wide) */
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(192,57,43,0.35);
  background: rgba(192,57,43,0.1);
  color: #c0392b;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.18s;
  flex-shrink: 0;
  z-index: 2;
}
.select-clear-btn:hover {
  background: rgba(192,57,43,0.22);
}
.select-clear-btn svg {
  width: 10px;
  height: 10px;
  pointer-events: none;
}