:root {
  --primary: #c91818;
  --primary-dark: #c93535;
  --dark-card: #18191c;
  --text-dark: #1a222e;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --border-color: #e5e7eb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

body {
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.5;
}

h1, h2, h3, h4, .brand-font {
  font-family: 'Outfit', sans-serif;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Top Bar */
.top-bar {
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  padding: 6px 0;
  font-weight: 500;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-social a {
  color: var(--white);
  margin-left: 12px;
  font-size: 14px;
  transition: opacity 0.2s;
}
.top-social a:hover { opacity: 0.8; }

/* Header Navigation */
header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-badge {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.logo-text h2 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary-dark);
}
.logo-text p {
  font-size: 10px;
  color: var(--text-light);
  font-weight: 600;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.nav-menu a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}
.nav-menu a:hover { color: var(--primary); }
.call-btn-header {
  background: var(--primary);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 13px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
}
.hero-badge {
  display: inline-block;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 12px;
}
.hero h1 {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.05;
  margin-bottom: 14px;
}
.hero p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 24px;
  max-width: 440px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-red {
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}
.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-img-box {
  width: 100%;
  height: 340px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Badges Bar */
.badges-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}
.badge-item i {
  color: var(--primary);
  font-size: 18px;
}

/* Items Section */
.section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  margin: 40px 0 24px;
  position: relative;
}
.section-title span { color: var(--primary); }
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}
.item-card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  background: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
}
.item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.06);
}
.item-img-container {
  width: 100%;
  height: 100px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
  background: #f3f4f6;
}
.item-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-card h4 {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}
.btn-get-price {
  font-size: 11px;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  font-weight: 700;
}

/* Calculator & Value Props Grid */
.calc-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 20px;
  margin: 40px 0;
}
.calc-card {
  background: var(--primary);
  color: var(--white);
  padding: 24px;
  border-radius: 12px;
}
.calc-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.calc-card p.sub {
  font-size: 12px;
  margin-bottom: 16px;
  opacity: 0.9;
}
.form-group {
  margin-bottom: 12px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}
.form-control, .form-select {
  width: 100%;
  padding: 9px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 13px;
  background: var(--white);
  color: var(--text-dark);
  outline: none;
}
.weight-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8px;
}
.price-display-box {
  margin-top: 14px;
  background: rgba(0,0,0,0.15);
  padding: 12px;
  border-radius: 6px;
}
.price-display-box small {
  font-size: 11px;
  display: block;
}
.price-value {
  font-size: 26px;
  font-weight: 900;
}
.btn-calc-action {
  margin-top: 12px;
  width: 100%;
  background: var(--dark-card);
  color: var(--white);
  border: none;
  padding: 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.why-us-card {
  background: var(--dark-card);
  color: var(--white);
  padding: 24px;
  border-radius: 12px;
}
.why-us-card h3 {
  font-size: 17px;
  margin-bottom: 16px;
  font-weight: 700;
}
.feature-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.feature-item i {
  color: var(--primary);
  font-size: 18px;
  margin-top: 3px;
}
.feature-item h5 {
  font-size: 13px;
  font-weight: 700;
}
.feature-item p {
  font-size: 11px;
  color: #9ca3af;
}

.reviews-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
}
.review-stat {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.avatars {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 14px 0;
}
.avatars img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}
.quote {
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 8px;
}
.stars {
  color: #eab308;
  font-size: 12px;
}

/* Pickup Areas */
.pickup-areas {
  background: var(--bg-light);
  padding: 24px 0;
  text-align: center;
}
.pickup-areas h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 14px;
}
.chips-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.chip i { color: var(--primary); }

/* Process Flow */
.process-section {
  background: var(--primary);
  color: var(--white);
  padding: 36px 0;
  text-align: center;
}
.process-section h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.process-step h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.process-step p {
  font-size: 11px;
  opacity: 0.9;
}

/* Footer */
footer {
  background: #111;
  color: #d1d5db;
  padding: 40px 0 20px;
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 30px;
  margin-bottom: 30px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a:hover {
  color: var(--white);
}
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.social-links a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.social-links a:hover {
  background: var(--primary);
}
.bottom-bar {
  border-top: 1px solid #222;
  padding-top: 16px;
  text-align: center;
  font-size: 12px;
  color: #6b7280;
}

@media (max-width: 900px) {
  .hero-grid, .calc-row, .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav-menu { display: none; }
  .hero h1 { font-size: 36px; }
}
