/* Main CSS file */
body { font-family: Arial, sans-serif; margin: 0; padding: 0; }
/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Layout Basics */
.flex {
  display: flex;
  align-items: center;
}

.space-between {
  justify-content: space-between;
}

.logo {
  height: 85px;
}

.top-header {
  background: white;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

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

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.nav-links a.active {
  color: #004225;
}

.call-btn {
  background-color: #004225;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.hero-section {
  background: url('../img/hero.jpg') no-repeat center center/cover;
  height: 90vh;
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
}

.hero-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-overlay p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn-quote {
  background-color: #004225;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}


body {
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  color: #333;
  line-height: 1.6;
}

/* Containers */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Header */
.site-header {
  background: #1a1a1a;
  color: #fff;
  padding: 20px 0;
}

.site-header h1 {
  margin-bottom: 10px;
}

.site-header nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-left: 0;
}

.site-header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background: #ffd700;
  padding: 60px 0;
  text-align: center;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
}

/* Services Section */
.services h3,
.trust h3 {
  margin-bottom: 20px;
  text-align: center;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.service {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  flex: 1 1 calc(33% - 20px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service h4 {
  margin-bottom: 10px;
}

.service a {
  display: inline-block;
  margin-top: 10px;
  color: #0066cc;
  text-decoration: underline;
}

/* Trust Section */
.trust ul {
  list-style: none;
  text-align: center;
  margin-top: 20px;
}

.trust li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* Footer */
.site-footer {
  background: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 30px 0;
  margin-top: 40px;
}

.site-footer a {
  color: #fff;
  text-decoration: underline;
}

.what-we-buy {
  background: #f4f4f4;
  padding: 60px 0;
  text-align: center;
}

.what-we-buy h2 {
  margin-bottom: 40px;
  font-size: 2rem;
  color: #004225;
}

.buy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}

.buy-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.buy-item img {
  width: 60px;
  margin-bottom: 10px;
}

.buy-item h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #333;
}

.two-col {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.buy-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.buy-item h4 {
  font-size: 1.2rem;
  color: #004225;
}

.about-home {
  background-color: #fafafa;
  padding: 60px 0;
}

.about-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-text {
  flex: 1 1 50%;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #004225;
}

.about-text p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #444;
  line-height: 1.6;
}

.about-image {
  flex: 1 1 45%;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-home {
  background: #fafafa;
  padding: 60px 0;
}

.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-left {
  flex: 1 1 100%;
  max-width: 600px;
}

.contact-left h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #004225;
}

.contact-left p, .contact-left a {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.contact-form button {
  padding: 12px 25px;
  background-color: #004225;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
}

.hours {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.hours li {
  margin-bottom: 8px;
}

.note {
  font-size: 0.9rem;
  color: #777;
  margin-top: 10px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  border: none;
}
.site-footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 50px 0 20px;
  font-size: 0.95rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #ddd;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  margin-top: 40px;
  font-size: 0.85rem;
  color: #aaa;
}

.page-hero {
  background: #004225;
  color: white;
  padding: 60px 0;
  text-align: center;
}
.page-hero p { font-size: 1.1rem; }

.scrap-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 60px 0;
}
.scrap-item {
  flex: 1 1 45%;
}
.scrap-item img {
  width: 100%;
  border-radius: 8px;
  margin-top: 20px;
}
.scrap-info {
  background: #fafafa;
  padding: 40px 0;
  text-align: center;
}
.scrap-info a { margin: 0 10px; }
.scrap-item img:hover {
  transform: scale(1.03);
  transition: 0.3s ease;
}


/* Base Styles */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
}

@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 10px;
    background: #111;
    border-radius: 8px;
    padding: 10px;
  }

  nav.open {
    display: block;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links li {
    margin: 0;
  }
}
/* Step 1: Mobile menu hidden by default */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px; /* adjust based on your header height */
    right: 0;
    width: 100%;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 999;
  }

  nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
    font-size: 2rem;
    background: none;
    border: none;
    color: #004225; /* dark green */
    cursor: pointer;
    margin-left: 1rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links li a {
    padding: 0.5rem 0;
    font-size: 1.1rem;
  }
}

/* Step 2: Hide hamburger button on desktop */
@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }

  nav {
    display: block !important;
  }
}

/* SERVICES PAGE STYLES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 1rem;
}

.service-item {
  background-color: #f8f8f8;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.service-item h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #333;
}

.service-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.cta-section {
  background: #333;
  color: white;
  text-align: center;
  padding: 3rem 1rem;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta-section a.btn-quote {
  background-color: #f5b120;
  color: #000;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.cta-section a.btn-quote:hover {
  background-color: #e1a111;
}

.service-item h2 i {
  margin-right: 0.5rem;
  color: #004225; /* match your brand green */
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #004225;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 0.75rem;
  font-size: 18px;
}


.icon-circle:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease-in-out;
}

.service-item h2 {
  display: flex;
  align-items: center;
}

