/* ============================================
   I TALK TRASH — Stylesheet
   Brand: Yellow (#FFCC00) + Blue (#03A9F5) + Dark
   ============================================ */

:root {
  --primary: #FFCC00;
  --primary-dark: #e6b800;
  --primary-light: #ffe066;
  --blue: #03A9F5;
  --blue-dark: #0288D1;
  --dark: #1a1a1a;
  --dark-mid: #2d2d2d;
  --dark-light: #3d3d3d;
  --light: #f7f5f0;
  --white: #ffffff;
  --gray: #888;
  --gray-light: #e0e0e0;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.accent {
  color: var(--primary);
}

/* Honey pot (anti-bot) — hidden from real users */
.form-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
  line-height: 1.2;
}

.btn-primary {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 204, 0, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   STICKY CALL BAR (Mobile)
   ============================================ */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--blue);
  text-align: center;
  padding: 12px;
}

.sticky-call a {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .sticky-call {
    display: block;
  }
  body {
    padding-bottom: 50px;
  }
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--primary);
  padding: 8px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-logo img {
  height: 100px;
  width: auto;
}

.top-bar-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tagline {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--dark);
}

.tagline-sub {
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(0,0,0,0.6);
}

.top-bar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.phone-link {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  transition: var(--transition);
}

.phone-link:hover {
  color: var(--blue);
}

.estimate-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  background: rgba(0,0,0,0.1);
  padding: 6px 16px;
  border-radius: 50px;
  transition: var(--transition);
}

.estimate-link:hover {
  background: rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .top-bar-inner {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
  .top-bar-left {
    flex-direction: column;
    gap: 4px;
  }
  .top-bar-logo img {
    height: 70px;
  }
  .top-bar-right {
    gap: 12px;
  }
  .navbar {
    top: 130px;
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 116px;
  left: 0;
  right: 0;
  z-index: 1001;
  padding: 0;
  background: var(--dark);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.logo img {
  height: 70px;
  width: auto;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

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

.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.9rem !important;
}

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

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* Hamburger → X animation */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 162px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg picture,
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(3, 169, 245, 0.88) 0%,
    rgba(26, 26, 26, 0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 204, 0, 0.2);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 0;
  animation: fadeInUp 0.8s ease;
  text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  color: var(--primary);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  margin: 0 auto 36px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary);
  letter-spacing: 0.04em;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  margin: 6px auto 0;
  border-right: 2px solid rgba(255, 255, 255, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    margin-top: 180px;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
}

/* ============================================
   SERVICES (Junk Removal)
   ============================================ */
.haul-services {
  padding: 100px 0;
  background: var(--light);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.service-image {
  position: relative;
  height: 200px;
  overflow: visible;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-icon {
  position: absolute;
  bottom: -22px;
  right: 20px;
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(255, 204, 0, 0.4);
  z-index: 2;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  padding: 28px 24px 8px;
}

.service-card p {
  padding: 0 24px 20px;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
}

.cta-card .service-icon {
  position: static;
  margin-bottom: 16px;
}

.cta-card h3 {
  color: var(--white);
  padding: 0 0 8px;
}

.cta-card p {
  color: rgba(255,255,255,0.85);
  padding: 0 0 20px;
}

.cta-card .btn-primary {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}

.cta-card .btn-primary:hover {
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

/* ============================================
   EXCAVATION SERVICES
   ============================================ */
.excavation-services {
  padding: 100px 0;
  background: var(--white);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--dark);
  color: var(--white);
}

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

.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.about-content p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}

.check {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.about-cta {
  font-weight: 600 !important;
  color: var(--primary) !important;
  font-size: 1.05rem !important;
}

.about-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.about-image {
  text-align: center;
}

.about-image img {
  max-height: 450px;
  margin: 0 auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.3));
  transition: var(--transition);
}

.about-image img:hover {
  transform: scale(1.03);
}

/* ============================================
   FUN BANNER
   ============================================ */
.fun-banner {
  padding: 60px 0;
  background: var(--primary);
}

.fun-items {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.fun-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.fun-emoji {
  font-size: 2rem;
}

/* ============================================
   RECYCLE SECTION
   ============================================ */
.recycle-section {
  padding: 100px 0;
  background: var(--light);
}

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

.recycle-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.recycle-content p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
}

.recycle-image img {
  max-height: 350px;
  margin: 0 auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}

/* ============================================
   FAQ / GOOD TO KNOW
   ============================================ */
.faq {
  padding: 100px 0;
  background: var(--white);
}

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

.faq-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}

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

.faq-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.faq-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.faq-card > p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.faq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-list li {
  font-size: 0.9rem;
  color: var(--dark-mid);
  padding-left: 20px;
  position: relative;
}

.faq-list li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--blue);
  font-weight: 700;
  font-size: 1.2rem;
}

.faq-card a {
  color: var(--blue);
  text-decoration: underline;
  transition: var(--transition);
}
.faq-card a:hover {
  color: var(--primary-dark);
}

.faq-note {
  margin-top: 16px !important;
  font-size: 0.85rem !important;
  font-style: italic;
  color: var(--dark-mid) !important;
}

/* ============================================
   SERVICE AREA
   ============================================ */
.service-area {
  padding: 100px 0;
  background: var(--blue);
  color: var(--white);
}

.service-area .section-tag {
  background: var(--white);
  color: var(--blue);
}

.service-area .section-header h2 {
  color: var(--white);
}

.service-area .section-header p {
  color: rgba(255,255,255,0.75);
}

.cities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.city {
  background: rgba(255,255,255,0.15);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.city:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.service-area-note {
  text-align: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
}

.service-area-note a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--dark);
  color: var(--white);
}

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

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact-icon {
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 204, 0, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}

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

/* --- Contact Form --- */
.contact-form {
  background: var(--dark-mid);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--dark-light);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  color: var(--primary);
}

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

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.75);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--dark);
  border: 2px solid var(--dark-light);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FFCC00' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select option {
  background: var(--dark);
  color: var(--white);
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 14px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #111;
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 0 24px;
}

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

.footer-logo {
  height: 100px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.social-link {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  transition: var(--transition);
}

.social-link:hover {
  color: var(--primary-light);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid,
  .contact-grid,
  .recycle-grid {
    grid-template-columns: 1fr;
  }
  .about-image {
    order: -1;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right var(--transition);
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
  }
  .nav-links.active {
    right: 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .about-checks {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .fun-items {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn-lg {
    width: 100%;
    max-width: 280px;
  }
  .about-buttons {
    flex-direction: column;
    align-items: center;
  }
}
