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

:root {
  --green:  #2e5c28;
  --green2: #3d7a35;
  --tan:    #f7f4ef;
  --warm:   #ede8df;
  --border: #ddd6c8;
  --text:   #1c1c1c;
  --muted:  #666;
  --up:     #1a7a3a;
  --dn:     #c0392b;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

.bg-tan { background: var(--tan); }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--green);
  border-bottom: 2px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 60px;
}
.nav-brand { color: #fff; font-weight: 600; font-size: 1rem; flex-shrink: 0; }
nav ul { display: flex; gap: 1.75rem; list-style: none; }
nav ul a { color: rgba(255,255,255,0.8); font-size: 0.875rem; white-space: nowrap; }
nav ul a:hover { color: #fff; text-decoration: none; }

.nav-hamburger {
  display: none; flex-direction: column; justify-content: space-between;
  width: 26px; height: 18px; background: none; border: none; cursor: pointer;
  padding: 0; flex-shrink: 0;
}
.nav-hamburger span {
  display: block; height: 2px; background: #fff; border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── TICKER ── */
.ticker-wrap {
  background: #1e3d1a;
  display: flex; align-items: center; overflow: hidden;
  height: 34px; border-bottom: 2px solid var(--green2);
}
.ticker-label {
  background: var(--green2); color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0 0.9rem; height: 100%; display: flex; align-items: center;
  flex-shrink: 0; white-space: nowrap;
}
.ticker-track { flex: 1; overflow: hidden; }
.ticker-inner {
  display: flex; align-items: center;
  animation: tickScroll 60s linear infinite;
  white-space: nowrap;
}
.ticker-inner:hover { animation-play-state: paused; }
@keyframes tickScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.tick-item {
  display: inline-flex; align-items: center; gap: 0.3rem;
  color: rgba(255,255,255,0.85); font-size: 0.78rem; padding: 0 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.tick-item strong { color: #fff; }
.tick-up { color: #6ee890; }
.tick-dn { color: #ff9090; }
.tick-st { color: rgba(255,255,255,0.5); }

/* ── HERO ── */
.hero {
  background: var(--green);
  color: #fff; padding: 5.5rem 5% 5rem;
}
.hero span {
  display: inline-block; background: rgba(255,255,255,0.12);
  font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.28rem 0.8rem; border-radius: 2px; margin-bottom: 1.25rem;
}
.hero h1 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); line-height: 1.25; margin-bottom: 1rem; max-width: 600px; font-weight: 600; }
.hero p  { color: rgba(255,255,255,0.78); max-width: 500px; margin-bottom: 2rem; font-size: 0.97rem; }
.hero-btns { display: flex; gap: 0.85rem; flex-wrap: wrap; }

.btn {
  display: inline-block; background: #fff; color: var(--green);
  font-weight: 600; font-size: 0.88rem;
  padding: 0.7rem 1.75rem; border-radius: 3px; transition: background 0.18s;
}
.btn:hover { background: var(--warm); text-decoration: none; }
.btn-outline { background: transparent; color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.45); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ── STATS ── */
.stats {
  background: var(--warm); border-top: 3px solid var(--green);
  display: flex; flex-wrap: wrap;
}
.stats div { flex: 1 1 140px; padding: 1.75rem 2rem; border-right: 1px solid var(--border); }
.stats div:last-child { border-right: none; }
.stats .num { font-size: 2rem; font-weight: 700; color: var(--green); }
.stats .lbl { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ── SECTIONS ── */
section { padding: 4.5rem 5%; }
.section-head { margin-bottom: 2rem; }
.section-head small {
  display: block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green); margin-bottom: 0.35rem;
}
.section-head h2 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); font-weight: 600; }
.section-head p  { color: var(--muted); max-width: 520px; margin-top: 0.4rem; font-size: 0.95rem; }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }

/* ── ABOUT ── */
.about-text p { color: var(--muted); font-size: 0.97rem; margin-bottom: 0.9rem; }
dl { margin-top: 2rem; }
dl div { display: flex; gap: 0.75rem; padding: 0.65rem 0; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
dl div:last-child { border-bottom: none; }
dt { color: var(--muted); min-width: 90px; font-weight: 500; }
dd { font-style: normal; }

.highlight-box { background: var(--green); color: #fff; padding: 2rem 2.2rem; border-radius: 4px; }
.highlight-box h3 { font-size: 1.1rem; margin-bottom: 1.2rem; }
.highlight-box ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.highlight-box li {
  display: flex; gap: 0.6rem; align-items: flex-start;
  font-size: 0.9rem; color: rgba(255,255,255,0.88);
}
.highlight-box li::before { content: '✓'; color: #8fcd7e; font-weight: 700; flex-shrink: 0; }

/* ── CARDS ── */
.card { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: box-shadow 0.2s; background: #fff; }
.card:hover { box-shadow: 0 3px 14px rgba(0,0,0,0.07); }
.card-head { background: var(--warm); border-bottom: 1px solid var(--border); padding: 1.25rem 1.6rem 0.9rem; }
.card-head span  { font-size: 1.6rem; display: block; margin-bottom: 0.35rem; }
.card-head h3    { font-size: 0.97rem; font-weight: 600; color: var(--text); }
.card-head small { color: var(--muted); font-size: 0.7rem; }
.card-body { padding: 1.1rem 1.6rem; }
.card-body p { color: var(--muted); font-size: 0.875rem; margin-bottom: 0.85rem; }

.tag {
  display: inline-block; background: var(--warm); border: 1px solid var(--border);
  color: var(--green); font-size: 0.72rem; font-weight: 600;
  padding: 0.2rem 0.55rem; border-radius: 2px; margin: 0.15rem;
}

.card-plain { background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 1.75rem; }
.card-plain span { font-size: 1.8rem; display: block; margin-bottom: 0.9rem; }
.card-plain h4   { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.4rem; }
.card-plain p    { font-size: 0.86rem; color: var(--muted); }

/* ── RATES BOARD ── */
.rates-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem; margin-bottom: 1.25rem;
}
.rate-card {
  border: 1px solid var(--border); border-radius: 5px;
  padding: 1.25rem 1.4rem; background: var(--tan);
  transition: box-shadow 0.2s, transform 0.2s;
}
.rate-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.09); transform: translateY(-2px); }
.rate-card-top { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.9rem; }
.rate-emoji { font-size: 1.6rem; }
.rate-name  { font-size: 0.9rem; font-weight: 700; line-height: 1.2; }
.rate-hsn   { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.rate-price { font-size: 1.7rem; font-weight: 800; color: var(--green); line-height: 1; margin-bottom: 0.4rem; }
.rate-price span { font-size: 0.95rem; font-weight: 500; color: var(--muted); }
.rate-change { font-size: 0.8rem; margin-bottom: 0.3rem; }
.rate-up { color: var(--up); font-weight: 600; }
.rate-dn { color: var(--dn); font-weight: 600; }
.rate-st { color: var(--muted); }
.rate-date { font-size: 0.7rem; color: var(--muted); }
.rates-note { font-size: 0.78rem; color: var(--muted); border-top: 1px solid var(--border); padding-top: 1rem; }

.live-badge {
  font-size: 0.65rem; font-weight: 700; background: #e8f5e9; color: var(--up);
  padding: 0.1rem 0.4rem; border-radius: 2px; margin-left: 0.35rem;
  vertical-align: middle;
}

/* ── AVAILABLE LOTS ── */
.lots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.lot-card { background: #fff; border: 1px solid var(--border); border-radius: 5px; overflow: hidden; transition: box-shadow 0.2s; }
.lot-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.09); }
.lot-head {
  background: var(--warm); border-bottom: 1px solid var(--border); padding: 0.9rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
}
.lot-commodity { font-weight: 600; font-size: 0.93rem; color: var(--text); }
.lot-badge { background: #dff0e0; color: #2e6b30; font-size: 0.68rem; font-weight: 600; padding: 0.2rem 0.6rem; border-radius: 10px; white-space: nowrap; border: 1px solid #b8debb; }
.lot-body { padding: 1rem 1.4rem; }
.lot-row { display: flex; justify-content: space-between; align-items: baseline; padding: 0.4rem 0; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.lot-row:last-child { border-bottom: none; }
.lot-row span { color: var(--muted); }
.lot-row strong { color: var(--text); text-align: right; }
.lot-remarks { margin-top: 0.6rem; padding: 0.6rem 0.75rem; background: var(--tan); border-radius: 3px; font-size: 0.8rem; color: var(--muted); font-style: italic; }
.lot-foot { padding: 1rem 1.4rem; display: flex; gap: 0.6rem; flex-wrap: wrap; border-top: 1px solid var(--border); }
.lots-empty { color: var(--muted); font-size: 0.95rem; }

.btn-sm-green {
  display: inline-block; background: var(--green); color: #fff;
  font-size: 0.8rem; font-weight: 600; padding: 0.45rem 1rem; border-radius: 3px; transition: opacity 0.15s;
}
.btn-sm-green:hover { opacity: 0.85; text-decoration: none; }
.btn-sm-wa {
  display: inline-block; background: #25D366; color: #fff;
  font-size: 0.8rem; font-weight: 600; padding: 0.45rem 1rem; border-radius: 3px; transition: opacity 0.15s;
}
.btn-sm-wa:hover { opacity: 0.85; text-decoration: none; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: start; }
.enquiry-form-wrap h3, .contact-details h3 { font-size: 1.1rem; margin-bottom: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.3rem; }
.form-field label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.form-field input, .form-field select, .form-field textarea {
  padding: 0.6rem 0.85rem; border: 1px solid var(--border);
  border-radius: 3px; font-size: 0.92rem; outline: none; font-family: inherit; background: #fff;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--green); }
.form-field textarea { resize: vertical; }
.form-success {
  background: #e8f5e9; border: 1px solid #a5d6a7; color: #2e7d32;
  border-radius: 3px; padding: 0.85rem 1.1rem; font-size: 0.9rem; margin-bottom: 1.2rem;
}
.contact-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item i {
  width: 40px; height: 40px; background: var(--warm); border: 1px solid var(--border);
  border-radius: 3px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; font-style: normal;
}
.contact-item small { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.2rem; }
.contact-item p { font-size: 0.93rem; }
.contact-note { background: var(--warm); border: 1px solid var(--border); border-radius: 3px; padding: 0.9rem 1.1rem; font-size: 0.82rem; color: var(--muted); }
.contact-note strong { color: var(--green); }

/* ── SERVICE AREAS ── */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.areas-grid h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--green); margin-bottom: 0.75rem; padding-bottom: 0.4rem; border-bottom: 1px solid var(--border); }
.areas-grid ul { list-style: none; }
.areas-grid li { font-size: 0.9rem; color: var(--muted); padding: 0.3rem 0; border-bottom: 1px solid var(--border); }
.areas-grid li:last-child { border-bottom: none; }

/* ── FOOTER ── */
footer { background: var(--green); color: rgba(255,255,255,0.7); text-align: center; padding: 2rem 5%; font-size: 0.8rem; }
footer strong { color: #fff; }
footer p + p { margin-top: 0.3rem; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 1000;
  width: 56px; height: 56px; border-radius: 50%;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s; display: block;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(0,0,0,0.3); text-decoration: none; }
.wa-float svg { width: 100%; height: 100%; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  nav { position: relative; }
  nav ul {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--green); padding: 0.5rem 0; z-index: 199;
  }
  nav ul.open { display: flex; }
  nav ul li a { display: block; padding: 0.75rem 5%; font-size: 0.95rem; }
  .nav-hamburger { display: flex; }

  .hero     { padding: 3.5rem 5% 3rem; }
  .hero h1  { font-size: 1.6rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 0.65rem; }
  .btn      { width: 100%; text-align: center; box-sizing: border-box; }

  section   { padding: 3rem 5%; }
  .grid-2   { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3   { grid-template-columns: 1fr; }
  .grid-4   { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .areas-grid { grid-template-columns: 1fr 1fr; }
  .lots-grid  { grid-template-columns: 1fr; }

  dl div { flex-direction: column; gap: 0.2rem; }
  dt { min-width: unset; }
}

@media (max-width: 480px) {
  .hero h1  { font-size: 1.4rem; }
  .grid-4   { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 1.25rem; }
  #toast { right: 1rem; left: 1rem; text-align: center; }
}
