/* === Advantage Disposal === */

:root {
  --blue: #0033cc;
  --blue-dark: #001f80;
  --blue-light: #3366ff;
  --blue-pale: #e0e8ff;
  --yellow: #d4a017;
  --yellow-dark: #b8860b;
  --yellow-light: #f0d060;
  --white: #ffffff;
  --off-white: #f5f7fb;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.15);
}

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

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
}

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

/* ══════════════════════════════
   NAVIGATION
   ══════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-dark);
}

.logo-light {
  font-weight: 500;
  color: var(--gray-600);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}

.nav-link:hover {
  color: var(--blue-dark);
  background: var(--blue-pale);
}

.nav-link.active {
  color: var(--blue-dark);
  font-weight: 600;
}

.nav-cta {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--blue);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  margin-left: 8px;
  transition: background 0.15s;
}

.nav-cta:hover {
  background: var(--blue-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
}

/* ══════════════════════════════
   HERO
   ══════════════════════════════ */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url('truck1.jpg') center/cover no-repeat;
  padding-top: 68px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,31,128,0.92) 0%, rgba(0,51,204,0.8) 60%, rgba(212,160,23,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 80px 24px 80px 48px;
  color: var(--white);
}

.hero-tag {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--blue-pale);
  margin-bottom: 12px;
}

.hero-title {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ══════════════════════════════
   PAGE HEADER
   ══════════════════════════════ */
.page-header {
  padding: 120px 0 48px;
  background: var(--blue-dark);
}

.page-header .container {
  max-width: 800px;
}

.page-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.page-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
}

/* ══════════════════════════════
   SECTIONS
   ══════════════════════════════ */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--off-white);
}

.section-dark {
  background: var(--blue-dark);
  color: var(--white);
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue);
  margin-bottom: 8px;
}

.section-label.center,
.section-heading.center,
.section-desc.center {
  text-align: center;
}

.section-heading {
  font-size: 36px;
  font-weight: 800;
  color: var(--blue-dark);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 600px;
}

.section-desc.center {
  margin: 0 auto 48px;
}

/* ══════════════════════════════
   SERVICES GRID
   ══════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: box-shadow 0.25s, transform 0.25s;
}

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

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ══════════════════════════════
   RENTAL HIGHLIGHT
   ══════════════════════════════ */
.rental-section {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  color: var(--blue-dark);
}

.rental-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.rental-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.rental-visual {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}

.rental-icon-big {
  font-size: 64px;
  margin-bottom: 16px;
}

.rental-label {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
}

.rental-sublabel {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ══════════════════════════════
   FEATURES
   ══════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  text-align: center;
  padding: 32px 20px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--blue);
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ══════════════════════════════
   SERVICE AREA
   ══════════════════════════════ */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.area-tag {
  background: var(--blue-pale);
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 24px;
}

/* ══════════════════════════════
   SPLIT LAYOUT
   ══════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ══════════════════════════════
   ABOUT STATS
   ══════════════════════════════ */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue-dark);
  letter-spacing: -1px;
  display: block;
}

.stat-label {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 500;
  margin-top: 4px;
}

/* ══════════════════════════════
   CONTACT
   ══════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.contact-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
}

.contact-item a {
  color: var(--gray-600);
  text-decoration: none;
}

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

.contact-form {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  outline: none;
  background: var(--white);
  transition: border-color 0.15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

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

.form-status {
  font-size: 14px;
  margin-top: 12px;
  text-align: center;
}

/* ══════════════════════════════
   BUTTONS
   ══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
  font-family: inherit;
}

.btn-primary {
  background: var(--yellow);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--yellow-dark);
}

.btn-green {
  background: var(--blue);
  color: var(--white);
}

.btn-green:hover {
  background: var(--blue-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--gray-200);
}

.btn-outline:hover {
  background: var(--blue-pale);
  border-color: var(--blue);
}

.btn-full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ══════════════════════════════
   CTA
   ══════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
}

/* ══════════════════════════════
   FOOTER
   ══════════════════════════════ */
.footer {
  background: var(--blue-dark);
  padding: 48px 0 32px;
  border-top: 3px solid var(--yellow);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.footer-concept {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer-concept a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.footer-concept a:hover {
  color: var(--white);
}

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    flex-direction: column;
    padding: 12px 24px 20px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .nav-cta {
    text-align: center;
    margin-left: 0;
    margin-top: 8px;
  }

  .hero {
    min-height: 460px;
  }

  .hero-content {
    padding: 60px 24px;
  }

  .hero-title {
    font-size: 34px;
  }

  .services-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .split,
  .rental-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .section-heading {
    font-size: 28px;
  }

  .page-title {
    font-size: 30px;
  }

  .section {
    padding: 56px 0;
  }

  .page-header {
    padding: 100px 0 36px;
  }
}
