/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #3b82f6;
  --orange-dark: #2563eb;
  --yellow: #93c5fd;
  --dark: #1e293b;
  --dark2: #0f172a;
  --gray: #6b7280;
  --light: #f0f7ff;
  --white: #ffffff;
  --card-bg: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--light);
  color: #222;
  line-height: 1.6;
}

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

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.5px;
}

.nav-logo svg { flex-shrink: 0; }

.nav-logo span { color: var(--white); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: #ccc;
  font-weight: 500;
  font-size: 0.97rem;
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: white;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 10px 20px;
  border-radius: 10px;
  transition: background 0.2s;
}

.nav-phone:hover { background: var(--orange-dark); color: #fff; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 60%, #0c2d6b 100%);
  color: white;
  padding: 72px 24px 56px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(59,130,246,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(59,130,246,0.15);
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-desc {
  color: #b0b8cc;
  font-size: 1.08rem;
  margin-bottom: 32px;
  max-width: 480px;
}

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

.btn-primary {
  background: var(--orange);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.1s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-1px); }

.hero-stats {
  display: flex;
  gap: 32px;
}

.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
}

.hero-stat span {
  font-size: 0.82rem;
  color: #8899bb;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* truck SVG illustration */
.hero-truck {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-truck svg {
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 20px 40px rgba(59,130,246,0.30));
  animation: floatTruck 4s ease-in-out infinite;
}

@keyframes floatTruck {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===== FEATURES BAR ===== */
.features-bar {
  background: var(--orange);
  padding: 18px 24px;
}

.features-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}

.feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 700;
  font-size: 0.92rem;
}

/* ===== SECTION WRAPPER ===== */
section { padding: 72px 24px; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  text-align: center;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 2px;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 0.97rem;
}

/* ===== PRICES ===== */
.prices-section { background: #fff; }

.prices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  border: 2px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.price-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.price-card.featured {
  border-color: var(--orange);
  background: linear-gradient(145deg, #eff6ff, #fff);
  box-shadow: 0 8px 32px rgba(59,130,246,0.18);
}

.price-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-icon { font-size: 2.5rem; margin-bottom: 12px; }

.price-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

.price-card-desc {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.price-value {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 4px;
}

.price-value sup {
  font-size: 1rem;
  vertical-align: super;
  font-weight: 700;
}

.price-per {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.price-list {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.price-list li {
  padding: 6px 0;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #f3f4f6;
}

.price-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== JOBS FEED ===== */
.jobs-section { background: var(--light); }

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.job-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
}

.job-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.job-card-img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  background: #e5e7eb;
  display: block;
  position: relative;
}

.job-card-img-placeholder {
  width: 100%;
  height: 185px;
  background: linear-gradient(135deg, #1e293b 0%, #0c2d6b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.job-card-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}

.job-status {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #16a34a;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  z-index: 2;
  letter-spacing: 0.5px;
}

.job-card-body {
  padding: 18px 20px;
}

.job-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.job-date {
  font-size: 0.78rem;
  color: var(--gray);
}

.job-price-tag {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange);
  background: rgba(59,130,246,0.1);
  padding: 2px 10px;
  border-radius: 100px;
}

.job-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.job-card-body p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 12px;
}

.job-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.job-tag {
  font-size: 0.73rem;
  background: #f3f4f6;
  color: #555;
  padding: 2px 10px;
  border-radius: 100px;
  font-weight: 500;
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--dark2), var(--dark));
  color: white;
  text-align: center;
  padding: 72px 24px;
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-section p {
  color: #b0b8cc;
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CONTACTS PAGE ===== */
.contacts-hero {
  background: linear-gradient(135deg, var(--dark2), var(--dark));
  color: white;
  padding: 60px 24px;
  text-align: center;
}

.contacts-hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.contacts-hero p { color: #b0b8cc; font-size: 1.05rem; }

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-block {
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-block h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--dark);
  padding-bottom: 14px;
  border-bottom: 2px solid #f3f4f6;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(59,130,246,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray);
  margin-bottom: 2px;
}

.contact-item-text a,
.contact-item-text span {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
}

.contact-item-text a:hover { color: var(--orange); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 14px; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  background: white;
}

.form-group textarea { min-height: 100px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.map-placeholder {
  background: #e5e7eb;
  border-radius: var(--radius);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.map-placeholder-inner {
  text-align: center;
  z-index: 1;
}

.map-placeholder-inner p {
  font-size: 1rem;
  color: #555;
  margin-top: 8px;
  font-weight: 500;
}

.map-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #d1d5db 25%, #e5e7eb 25%, #e5e7eb 50%, #d1d5db 50%, #d1d5db 75%, #e5e7eb 75%);
  background-size: 40px 40px;
  opacity: 0.5;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: #8899bb;
  padding: 48px 24px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}

.footer-col h4 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: #8899bb;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer-bottom span { color: var(--orange); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-truck { display: none; }
  .prices-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .jobs-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  .nav-links { display: none; }
  .jobs-grid { grid-template-columns: 1fr; }
  .features-bar-inner { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
}
