:root {
  --brand: #2f5233;
  --brand-dark: #1e3a21;
  --accent: #b45309;
  --light: #f6f5f2;
  --text: #2a2a2a;
  --grey: #6b6b6b;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #fff;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

header {
  background: var(--brand);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  flex-wrap: wrap;
}
.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}
.logo span { color: #f2c14e; }
nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
nav a {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}
nav a:hover { color: #f2c14e; text-decoration: none; }
.call-btn {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 700;
}
.call-btn:hover { background: #92400a; text-decoration: none; }

.hero {
  background: linear-gradient(135deg, rgba(30,58,33,0.90), rgba(30,58,33,0.80)), url('../images/warehouse-bijnor-aerial.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}
.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}
.hero p.tagline {
  font-size: 1.2rem;
  color: #e8e4d8;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.15s forwards;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.btn-primary, .btn-secondary {
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #92400a; text-decoration: none; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.2); }
.btn-secondary { background: #fff; color: var(--brand); }
.btn-secondary:hover { background: #f2c14e; text-decoration: none; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.2); }
.call-btn { transition: transform 0.2s ease, background 0.2s ease; }
.call-btn:hover { transform: translateY(-2px); }

main { max-width: 1100px; margin: 0 auto; padding: 60px 20px; }
section { margin-bottom: 60px; }
h2 {
  color: var(--brand);
  font-size: 1.8rem;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 24px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
  background: var(--light);
  padding: 40px 20px;
  border-radius: 8px;
}
.stats .stat-num { font-size: 2.2rem; font-weight: 800; color: var(--brand); }
.stats .stat-label { color: var(--grey); font-size: 0.95rem; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(47,82,51,0.14);
  border-color: var(--accent);
}
.card h3 { color: var(--brand); margin-top: 0; }
.card img { transition: transform 0.4s ease; overflow: hidden; }
.card:hover img { transform: scale(1.04); }

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Nav link underline */
nav a {
  position: relative;
}
nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0;
  height: 2px;
  background: #f2c14e;
  transition: width 0.25s ease;
}
nav a:hover::after { width: 100%; }

/* Stat number pop-in */
.stats .stat-num { transition: transform 0.25s ease; }
.stats > div:hover .stat-num { transform: scale(1.08); }

.cta-band {
  background: var(--brand);
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  border-radius: 8px;
}
.cta-band h2 { color: #fff; border-color: var(--accent); }
.cta-band .btn-primary { margin-top: 10px; }

table.compare {
  width: 100%;
  border-collapse: collapse;
}
table.compare th, table.compare td {
  border: 1px solid #ddd;
  padding: 10px 14px;
  text-align: left;
}
table.compare th { background: var(--brand); color: #fff; }

.testimonial {
  background: var(--light);
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial .author { font-style: normal; font-weight: 700; margin-top: 10px; color: var(--brand); }

.placeholder-photo {
  background: var(--light);
  border: 2px dashed #ccc;
  color: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
  padding: 10px;
}

.shorts-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.shorts-embed {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 9 / 16;
  border: 0;
  border-radius: 8px;
}

.map-embed {
  border: 0;
  width: 100%;
  height: 320px;
  border-radius: 8px;
}

footer {
  background: var(--brand-dark);
  color: #d8d8d8;
  padding: 40px 20px;
  text-align: center;
  font-size: 0.9rem;
}
footer a { color: #f2c14e; }
footer .socials { margin: 14px 0; }
footer .socials a { margin: 0 10px; }

.breadcrumb { color: var(--grey); font-size: 0.9rem; margin-bottom: 20px; }

.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(0,0,0,0.32);
}
.whatsapp-float svg { width: 30px; height: 30px; }

@media (max-width: 640px) {
  nav ul { gap: 14px; }
  .hero h1 { font-size: 1.8rem; }
}
