/* ===== Janta Parvatiya Transport — styles ===== */
:root {
  --green: #1f6f43;       /* pine / hill green */
  --green-d: #16512f;
  --earth: #b4541f;       /* terracotta accent */
  --earth-d: #8f3f14;
  --ink: #1d2426;
  --slate: #4d5a5e;
  --mist: #f4f6f4;
  --line: #e3e8e3;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(20, 50, 30, 0.10);
  --radius: 16px;
  --max: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .brand strong { font-family: 'Poppins', sans-serif; line-height: 1.15; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }

.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--earth); margin-bottom: 14px;
}
.eyebrow.light { color: #ffd9b0; }
.muted { color: var(--slate); font-size: .92rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-family: 'Poppins', sans-serif; font-size: .95rem;
  padding: 13px 24px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s, box-shadow .15s, background .15s;
}
.btn-primary { background: var(--earth); color: #fff; }
.btn-primary:hover { background: var(--earth-d); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(143,63,20,.3); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--green), var(--green-d));
  color: #fff; font-family: 'Poppins'; font-weight: 800; font-size: 1rem; letter-spacing: .02em;
}
.brand-text strong { display: block; font-size: 1.02rem; color: var(--ink); }
.brand-text small { display: block; font-size: .72rem; color: var(--slate); }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-weight: 500; font-size: .95rem; color: var(--slate); transition: color .15s; }
.nav a:hover { color: var(--green); }
.nav .nav-phone { font-weight: 700; color: var(--earth); }
.nav .nav-phone:hover { color: var(--earth-d); }
.nav .nav-cta {
  background: var(--green); color: #fff; padding: 9px 18px; border-radius: 999px; font-weight: 600;
}
.nav .nav-cta:hover { background: var(--green-d); color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s; }

/* ===== Hero ===== */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    linear-gradient(135deg, rgba(22,81,47,.93), rgba(31,111,67,.82)),
    url("assets/hills.svg") center/cover no-repeat, var(--green-d);
}
.hero-inner { display: grid; grid-template-columns: 1.25fr .9fr; gap: 48px; align-items: center; padding: 78px 0 90px; }
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 800; margin-bottom: 18px; }
.hero .lead { font-size: 1.08rem; color: rgba(255,255,255,.92); max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 34px; }
.hero-stats { list-style: none; display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stats strong { display: block; font-family: 'Poppins'; font-size: 1.8rem; font-weight: 800; color: #ffd9b0; }
.hero-stats span { font-size: .85rem; color: rgba(255,255,255,.82); }

.hero-card { background: #fff; color: var(--ink); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.hero-card h3 { font-size: 1.25rem; margin-bottom: 4px; }
.hero-card > p { font-size: .9rem; color: var(--slate); margin-bottom: 18px; }
.quick-form { display: grid; gap: 12px; }
.quick-form label, .contact-form label { display: grid; gap: 5px; font-size: .82rem; font-weight: 600; color: var(--slate); }
.quick-form input, .contact-form input, .contact-form textarea {
  font: inherit; padding: 11px 13px; border: 1.5px solid var(--line); border-radius: 10px; background: var(--mist); transition: border .15s;
}
.quick-form input:focus, .contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--green); background: #fff; }
.form-note { font-size: .88rem; font-weight: 600; color: var(--green); padding: 8px 0 0; }

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section-alt { background: var(--mist); }
.section-dark { background: linear-gradient(135deg, var(--green-d), var(--green)); color: #fff; }
.section-head { max-width: 680px; margin: 0 auto 50px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 14px; }
.section-head p { color: var(--slate); font-size: 1.02rem; }

/* ===== Grid + cards ===== */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .18s, box-shadow .18s, border-color .18s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card-ico { font-size: 2.1rem; margin-bottom: 14px; }
.card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card p { color: var(--slate); font-size: .95rem; }
.fleet-card { background: var(--mist); }

/* ===== Coverage ===== */
.coverage-inner { display: grid; grid-template-columns: 1.3fr .8fr; gap: 48px; align-items: start; }
.coverage-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.coverage-copy > p { color: var(--slate); margin-bottom: 20px; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.chips li { background: #fff; border: 1px solid var(--line); padding: 7px 15px; border-radius: 999px; font-size: .88rem; font-weight: 500; }
.coverage-routes { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.coverage-routes h3 { margin-bottom: 16px; font-size: 1.2rem; }
.route-list { list-style: none; display: grid; gap: 12px; }
.route-list li { display: flex; align-items: center; gap: 10px; font-size: .92rem; padding-bottom: 12px; border-bottom: 1px dashed var(--line); }
.route-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.route-list i { color: var(--earth); font-style: normal; font-weight: 700; }
.route-list span:first-child { font-weight: 600; }

/* ===== Features ===== */
.feature { text-align: center; padding: 18px; }
.feature-ico { font-size: 2rem; display: block; margin-bottom: 12px; }
.feature h4 { font-size: 1.05rem; margin-bottom: 6px; }
.feature p { font-size: .9rem; color: var(--slate); }

/* ===== About ===== */
.about-inner { display: grid; grid-template-columns: 1.4fr .8fr; gap: 48px; align-items: start; }
.about-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.about-copy p { color: var(--slate); margin-bottom: 14px; }
.about-copy blockquote {
  margin-top: 22px; padding: 20px 24px; background: var(--mist); border-left: 4px solid var(--earth);
  border-radius: 0 12px 12px 0; font-style: italic; color: var(--ink);
}
.about-copy cite { display: block; margin-top: 10px; font-style: normal; font-weight: 600; color: var(--green); font-size: .9rem; }
.about-aside { background: linear-gradient(135deg, var(--green), var(--green-d)); color: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.about-aside h3 { margin-bottom: 18px; }
.facts { display: grid; gap: 14px; }
.facts div { border-bottom: 1px solid rgba(255,255,255,.18); padding-bottom: 12px; }
.facts dt { font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; color: #ffd9b0; }
.facts dd { font-weight: 600; }

/* ===== Contact ===== */
.contact-inner { display: grid; grid-template-columns: 1fr .9fr; gap: 48px; align-items: start; }
.contact-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.contact-copy > p { color: rgba(255,255,255,.9); margin-bottom: 26px; }
.contact-list { list-style: none; display: grid; gap: 20px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ci { font-size: 1.3rem; }
.contact-list small { display: block; font-size: .76rem; text-transform: uppercase; letter-spacing: .07em; color: #ffd9b0; }
.contact-list a, .contact-list span { color: #fff; font-weight: 600; }
.contact-form { background: #fff; color: var(--ink); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); display: grid; gap: 14px; }
.contact-form h3 { font-size: 1.25rem; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: #cdd5d2; padding: 44px 0 28px; }
.footer-inner { display: grid; gap: 22px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand strong { display: block; color: #fff; }
.footer-brand small { font-size: .8rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-nav a { color: #cdd5d2; font-size: .92rem; }
.footer-nav a:hover { color: #fff; }
.copyright { font-size: .82rem; color: #8a948f; border-top: 1px solid #2c3537; padding-top: 18px; }

/* ===== Floating CTA ===== */
.floating-cta {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  background: var(--earth); color: #fff; font-weight: 600; font-family: 'Poppins';
  padding: 13px 20px; border-radius: 999px; box-shadow: 0 8px 24px rgba(0,0,0,.25);
  font-size: .92rem; transition: transform .15s;
}
.floating-cta:hover { transform: translateY(-3px); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-inner, .coverage-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 70px; left: 0; right: 0; background: #fff;
    padding: 16px 22px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .nav.open a { width: 100%; padding: 10px 0; }
  .nav-toggle { display: flex; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
  .section { padding: 60px 0; }
  .floating-cta { font-size: .85rem; padding: 11px 16px; }
}
