:root {
  --color-navy: #0D2B45;
  --color-blue: #3A7DBF;
  --color-light-blue: #9CC6E6;
  --color-green: #7DBA6D;
  --color-gray: #F2F4F7;
  --color-white: #FFFFFF;
  --font-base: 'Poppins', sans-serif;

  /* Supporting neutrals (not brand colors, used for body copy and hairlines) */
  --color-text-muted: #4a5b6e;
  --color-border-light: #e2e8f0;
  --color-border-lighter: #edf1f5;
  --color-footer-muted: #cbd5e1;
  --color-footer-copyright: #8C99AD;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-base);
  color: var(--color-navy);
  line-height: 1.6;
  background: var(--color-white);
}

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

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

ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-weight: 700; line-height: 1.2; text-wrap: balance; }
h2 { font-size: 2.25rem; margin-bottom: 12px; }
h3 { font-size: 1.25rem; }

.section-sub {
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: 40px;
  font-size: 1.05rem;
  text-wrap: pretty;
}

section { padding: 72px 0; }
section:nth-of-type(even) { background: var(--color-gray); }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-green);
  color: var(--color-navy);
}

.btn-secondary {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.btn-large { padding: 18px 36px; font-size: 1.1rem; }

/* ===== Nav ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  position: relative;
}

.logo-img { height: 96px; width: auto; }

.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 600;
}

.nav-links a:hover { color: var(--color-blue); }

/* ===== Hero ===== */
.hero { padding: 56px 0 72px; background: var(--color-white); }

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero h1 { font-size: 2.75rem; margin-bottom: 20px; }

.hero-sub { color: var(--color-text-muted); font-size: 1.1rem; margin-bottom: 28px; text-wrap: pretty; }

.hero-ctas { display: flex; gap: 16px; margin-bottom: 40px; }

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.trust-badges li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}

.badge-icon { width: 22px; height: 22px; color: var(--color-blue); flex-shrink: 0; }

.hero-form-panel {
  background: var(--color-gray);
  border: 1px solid var(--color-border-lighter);
  border-radius: 24px;
  padding: 32px;
}

.hero-form-badge {
  display: inline-block;
  background: var(--color-green);
  color: var(--color-navy);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.hero-form-title { margin-bottom: 16px; }

.hero-form { display: flex; flex-direction: column; gap: 14px; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-navy);
}

.form-field input {
  font-family: var(--font-base);
  font-size: 1rem;
  padding: 10px 12px;
  border: 1px solid var(--color-border-lighter);
  border-radius: 8px;
  background: var(--color-white);
}

.hero-form-submit { margin-top: 4px; }

.hero-form-note { font-size: 0.85rem; color: var(--color-text-muted); text-align: center; }

/* ===== How It Works ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 32px;
}

.step-number {
  display: inline-block;
  color: var(--color-green);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.step-card h3 { margin-bottom: 10px; }
.step-card p { color: var(--color-text-muted); }

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.price-card {
  position: relative;
  background: var(--color-white);
  border: 2px solid var(--color-border-light);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.price-card-featured { border-color: var(--color-green); }

.price-badge {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--color-green);
  color: var(--color-navy);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 999px;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-blue);
  margin: 12px 0 4px;
}

.price-per-day { color: var(--color-text-muted); font-size: 0.9rem; margin-bottom: 20px; }

.price span { font-size: 1rem; font-weight: 600; color: var(--color-navy); }

.price-features { margin-bottom: 24px; flex-grow: 1; }

.price-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border-lighter);
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ===== Equipment ===== */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.equipment-grid figure {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
}

.equipment-grid img { height: 200px; width: 100%; object-fit: cover; }

.equipment-grid figcaption {
  padding: 12px;
  text-align: center;
  font-weight: 600;
}

/* ===== Service Area ===== */
.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-pills li {
  background: var(--color-white);
  border: 1px solid var(--color-light-blue);
  color: var(--color-navy);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 999px;
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; margin: 0 auto; }

.faq-item {
  background: var(--color-white);
  border-radius: 12px;
  padding: 20px 24px;
}

.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  padding: 10px 0;
  margin: -10px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--color-blue);
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p { margin-top: 12px; color: var(--color-text-muted); }

/* ===== Contact ===== */
.contact { text-align: center; }
.contact .section-sub { margin-left: auto; margin-right: auto; }

/* ===== Footer ===== */
.site-footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 48px 0;
}

.footer-inner { text-align: center; }

.footer-logo {
  height: 40px;
  margin: 0 auto 12px;
  filter: brightness(0) invert(1);
}

.footer-tagline { color: var(--color-light-blue); margin-bottom: 24px; }

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-area, .footer-email { margin-bottom: 8px; color: var(--color-footer-muted); }

.footer-email a:hover { color: var(--color-green); }

.footer-copyright { color: var(--color-footer-copyright); font-size: 0.85rem; margin-top: 16px; }

/* ===== Mobile Nav ===== */
.mobile-nav { display: none; }

.mobile-nav summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  padding: 8px;
}

.mobile-nav summary::-webkit-details-marker { display: none; }

.mobile-nav[open] summary { color: var(--color-blue); }

.mobile-nav-panel {
  position: absolute;
  top: 100%;
  right: 24px;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(13, 43, 69, 0.18);
  padding: 12px;
  min-width: 200px;
  z-index: 10;
}

.mobile-nav-panel li + li { margin-top: 4px; }

.mobile-nav-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--color-navy);
}

.mobile-nav-panel a:hover { background: var(--color-gray); color: var(--color-blue); }

/* ===== Why Rent With Us ===== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-us-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 28px;
}

.why-us-icon { width: 32px; height: 32px; color: var(--color-blue); margin-bottom: 16px; }

.why-us-card h3 { margin-bottom: 10px; }

.why-us-card p { color: var(--color-text-muted); font-size: 0.95rem; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .mobile-nav { display: block; }

  .hero-inner { grid-template-columns: 1fr; }

  .hero h1 { font-size: 2.1rem; }

  .steps-grid, .pricing-grid, .why-us-grid { grid-template-columns: 1fr; }

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

  h2 { font-size: 1.75rem; }

  section { padding: 48px 0; }
}

@media (max-width: 480px) {
  .equipment-grid { grid-template-columns: 1fr; }

  .hero-ctas { flex-direction: column; }

  .trust-badges { grid-template-columns: 1fr; }
}
