body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;}

h2 {
    color: #ff5722;
    font-weight: 500; /* Semi-bold */
    margin-bottom: .8rem;
    text-align: center;
    line-height: 1.3;  
    font-family: 'Roboto', sans-serif;
}
/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Header Style */
header {
  padding: 2rem;
  background: white;
  width: 100%;
}

/* Location Container */
.location-container {
  display: flex;
  gap: 2rem;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

/* Each location block */
.location {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 200px; /* Allows flexible width but ensures a minimum size */
  justify-content: center;
}

/* Icon Style */
.icon {
  width: 1rem;
  height: 1rem;
  color: #ff5722;
  flex-shrink: 0;
}

/* Text Style */
span {
  font-size: clamp(1rem, 1.5vw, 1.5rem); /* Responsive font */
  font-weight: bold;
  color: #000000;
  line-height: 1.4;
}

/* Mobile Layout (smaller but side by side) */
@media (max-width: 768px) {
  .location-container {
    gap: 1rem; /* Smaller gap */
    justify-content: space-between; /* Evenly space items */
  }

  .location {
    flex: 1 1 150px; /* Allow more shrinkage */
    justify-content: flex-start; /* Align left within each container */
  }

  .icon {
    width: 1.5rem; /* Make icon smaller */
    height: 1.5rem;
  }

  span {
    font-size: clamp(0.9rem, 3vw, 1.2rem); /* Slightly smaller font for mobile */
  }
}



/* STICKY NAV */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: black;
  z-index: 1000;
  padding: 0.4rem 1rem; /* Adjust the padding to control navbar height */
  box-shadow: 0 2px 5px #ff5722;
}

.navbutton.active {
  color: #ff5722;
}

.navbutton {
  color: #ff5722; /* Orange text */
  text-decoration: none;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: .2rem;
  padding: 8px 12px; /* Adjust padding for buttons */
  transition: all 0.3s ease;
  border-radius: 5px;
}

.navbutton:hover {
  color: white;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

/* LOGO */
.nav-logo img {
  max-width: 3.5rem; /* Adjust logo size */
  height: auto;
}

/* DESKTOP NAV LINKS */
.nav-links {
  display: flex;
  gap: 2rem;
}

/* HAMBURGER ICON - HIDDEN BY DEFAULT */
.nav-toggle {
  display: none;
  font-size: 1.8rem;
  background-color: #ff5722;
  color: white;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; /* Push directly below navbar */
    left: 0;
    right: 0;
    background-color: black;
    padding: 1rem 2rem;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-toggle {
    display: block;
  } 
}
/* Headings and Paragraph Styling */
#ocg {
  color: black;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

#sbhheading {
  color: #ff5722; /* Orange color */
  text-align: center;
  font-size: 3rem; /* Twice the size of h2 (2rem * 2) */
  margin-top: 0;
  margin-bottom: 1rem;
}

.social-links {
  height: 5rem;
  display: flex;
  justify-content: center;  /* Horizontally center */
  align-items: center;      /* Vertically center */
  gap: 4rem;                /* Even spacing between icons */
}

.social-links a img {
  width: 48px;
  height: 48px;
  transition: transform 0.2s ease;
}

.social-links a:hover img {
  transform: scale(1.1);
}

#p1 {
  color: #ffffff; /* Dark grey */
  font-size: 1.3rem; /* Slightly larger than default */
  font-weight: 500;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1rem auto;
  
}

p:not(#p1) {
  color: #000000; /* Lighter grey for other paragraphs */
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 1rem auto;
  text-align: center;
}

#about-section {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  background-color: #ffffff;
}

#intro {
  margin-bottom: 2rem;
   padding: 0 5%;  
}

#rangecardsection {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem 1rem;
}

.rangecard-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rangecard {
  position: relative;
  width: clamp(220px, 20vw, 300px);
  height: clamp(280px, 25vw, 380px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: white;
  border: 1px solid #ff5622;
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  color: inherit;
  overflow: hidden;
  text-decoration: none;
}

.rangecard:hover {
  transform: scale(1.05);
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.3);
  outline: 3px solid #ff5622;
}

.rangecard img {
  max-width: 60%;
  height: auto;
  margin-bottom: .5rem;
}

.rangecard h2 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  font-weight: bold;
}

.rangecard p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: #333;
}

.rangecard-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: black;
  color: white;
  border: 0.5px solid #ff5722;
  border-radius: 7px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.8rem;
  transition: all 0.2s ease-in;
  text-align: center;
  box-shadow: 0 0 0 0 transparent;
  position: relative;
  overflow: hidden;
}

.rangecard-btn:hover {
  background-color: #ff5722;
  color: white;
}



.section {
    background: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 21px;
    background: #ffffff;
    box-shadow: -13px -13px 25px #d9d9d9,
                13px 13px 25px #ffffff;
    border: 1px solid rgba(105, 105, 105, 0.212);
    display: flex;
    flex-direction: column; /* Arrange items vertically */
    align-items: center; /* Horizontally center the items */
    justify-content: center; /* Vertically center the items */
    text-align: center; /* Ensures text inside is centered */
    padding: 20px;
    overflow: hidden;
    margin: 20px; /* Adjust this value as needed */
  }

  #sbh {
    color: #ff5722; /* Bright orange */
    text-shadow: 0 0 2px rgba(255, 87, 34, 0.8); /* Original glow */
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
  }
  .contact-info p{
    font-size: 1.2rem;
  }
  #spacer {
    height: 35vh; /* Maintains section height as 40% of the viewport height */
    background-size: contain;
background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #000000;
  }
  #spacer2 {
    height: 40vh; /* Maintains section height as 40% of the viewport height */
    background-size: cover;
    background-position: center center; /* Centers the background image */
    background-attachment: fixed;
  }
#spacer3 {
  height: 40vh; /* Maintains section height as 40% of the viewport height */
    background-size: cover;
    background-position: center center; /* Centers the background image */
    background-attachment: fixed;
}


  button {
    position: relative;
    padding: 10px 20px;
    border-radius: 7px;
    border: 0.5px solid #ff5722;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    background: transparent;
    color: #000000;
    overflow: hidden;
    box-shadow: 0 0 0 0 transparent;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
  }
  .image-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px; /* Space between images */
    padding: 10px;
  }
  
  .image-row img {
    width: 100%;
    max-width: 500px; /* Limits image size on larger screens */
    height: auto;
    flex: 1 1 300px; /* Flex-basis: 300px, but images grow/shrink with screen */
    object-fit: cover;
    border-radius: 8px; /* Optional: rounded corners */
  }
  
 #contactusbutton {
  background-color: black;
  border: 1px solid #ff5722;
  margin: 1rem auto;       /* centers the button */
  width: fit-content;      /* button shrinks to text size */
  text-align: center;
  border-radius: .5rem;
}

#contactusbutton a {
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  display: block;
  padding: 16px 40px;
}

#contactusbutton:hover {
  background-color: #ff5722;
}

#contactusbutton a:hover {
  color: white; /* keeps text white */
}


  .testimonial {
    background: #ddd;
    padding: 0.5rem;
    border-left: 5px solid #444;
    margin:1rem;
  }
  
#ph { color: #ff5722;
text-decoration: none;
}
#ph :hover { color: #d33f13;}

/* Footer Container */
/* Footer Main Container */
.footer-container {
    display: flex;
    justify-content: space-between; /* Ensures sections are spaced evenly */
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    align-items: center;
    background-color: black; /* Full-width black background */
    padding: 10px;
    width: 100%;
    margin: 0 auto; /* Centers content */
  }
  
  /* Footer Section */
  .footer-section {
    flex: 1; /* Allows sections to take equal space */
    padding: 10px;
    min-width: 250px; /* Prevents sections from getting too small */
    text-align: center;
    color: rgb(255, 255, 255); /* Ensures text is visible */
  }
  #footer-head{
color: #ff5622;
  }

  /* Logo Styling */
  .footer-section.logo img {
    max-width: 150px;
    height: auto;
  }
  
  /* About Section */
  .footer-section.about p {
    max-width: 400px;
    margin: 0 auto; /* Centers text */
  }
  
  /* Links */
  .footer-section a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 14px;
    margin: 5px 0;
  }
  
  .footer-section a:hover {
    text-decoration: underline;
  }
  
  /* Social Icons */
  .social-icons-foot {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  
  .social-icons-foot a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
  }
  
  /* Social Media Icons */
  .social-icons-foot svg {
    width: 24px;
    height: 24px;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    background-color: #ff5722;
    color: #fff;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    width: 100%;
    margin-top: .3rem;
  }

.footer-bottom p {
  font-size: 0.7em !important; /* smaller text */
  line-height: 1.2 !important;   /* tighter spacing */
  margin: 0.2rem 0 !important;   /* less vertical spacing */
}

  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-section {
      max-width: 100%}}



.responsive-image-wrapper {
  width: 100vw;  /* Full viewport width */
  margin: 0;
  padding: 0;
  overflow: hidden; /* Optional: hides anything spilling over */
}

#abouttoppic {
  width: 100%;
  height: auto;
  display: block;
}
.icon-buttons-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.icon-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: black;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  background: none;
  cursor: pointer;
}

.icon-button img {
  width: 3rem;
  height: auto;
}

.divider {
  width: 1px;
  height: 40px; /* Adjust to match icon height */
  background-color: black;
}
.orange-link-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffffff;
  color: #ff5722;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
  letter-spacing: .05rem;
}

.orange-link-btn:hover {
  background-color: #e6491900;
  transform: scale(1.05);
}
.center-wrapper {
  text-align: center;
}

 /* grid options */

.bin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin: 2rem auto;
}

.bin-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: bold;
  font-size: 1rem;
  color: #000;
  border-right: 1px solid #ddd;
  padding-right: 1rem;
}

.bin-item:last-child,
.bin-item:nth-child(3n) {
  border-right: none;
}

.icon-svg {
  width: 24px;
  height: 24px;
  color: #ff5722;
}

/* Responsive for smaller screens */
@media (max-width: 600px) {
  .bin-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
 /* skip bin stacks */
.skipbin-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
}

.skipbin-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
}

.text-content {
  flex: 1;
  max-width: 60%;
}

.text-content h3 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  color: #000;
}

.text-content p3 {
  font-size: 1rem;
  color: #666666;
  display: block; /* Makes p3 behave like a normal block element */
  margin: 0;
}

.skipbin-item img {
  width: 25vw;
  max-width: 150px;
  height: auto;
  border-radius: 8px;
}

/* Mobile-friendly layout */
@media (max-width: 600px) {
  .skipbin-item {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .text-content {
    max-width: 100%;
  }

  .skipbin-item img {
    width: 100%;
    max-width: none;
  }
}
/* Quote form section*/
/* ===== Quote Form Section Container ===== */
#quote-form-section {
  max-width: 800px;
  margin: 0rem auto;
  padding: 4rem 0.5%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  font-family: sans-serif;
}


/* ===== Heading ===== */
#quote-form-section h2 {
  text-align: center;
  color: #ff5722;
  margin-bottom: 1.5rem;
}

/* ===== Form Fields (Text, Select, Textarea) ===== */
form input,
form select,
form textarea {
  width: 100%;
  padding: 0.75rem;
  margin: 0.5rem 0;
  border: 2px solid #ff5722;
  border-radius: 6px;
  font-size: 1rem;
  color: #000;
}

form input::placeholder,
form textarea::placeholder {
  color: #000;
  opacity: 1;
}

/* ===== Form Group Layout (Two Inputs Side by Side) ===== */
.form-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-group input,
.form-group select {
  flex: 1;
  min-width: 240px;
}

/* ===== Checkbox and Radio Groups ===== */
.checkbox-group,
.radio-group {
  display: flex;
  flex-direction: column;
  margin: 0.5rem 0;
  gap: 4px;
}

/* ===== Label Styles for Checkboxes/Radios ===== */
.checkbox-group label,
.radio-group label {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  line-height: 1.2;
  gap: 0.4rem;
}

/* ===== Custom Checkbox Styling ===== */
.checkbox-group input[type="checkbox"] {
  appearance: none;
  width: 1.2rem;
  height: 1.2rem;
  background-color: #ff5722;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  display: grid;
  place-content: center;
  border: none;
}

/* White tick inside checkbox when selected */
.checkbox-group input[type="checkbox"]::before {
  content: '';
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.checkbox-group input[type="checkbox"]:checked::before {
  opacity: 1;
}

/* ===== Textarea Resize Behavior ===== */
textarea {
  resize: vertical;
}

/* ===== Submit Button Styles ===== */
 .radio-group {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  gap: 0.4rem;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 2px 0;
  font-size: 0.95rem;
  line-height: 1.2;
}

/* Custom styled radio buttons */
.radio-group input[type="radio"] {
  appearance: none;
  width: 1.2rem;
  height: 1.2rem;
  border: none;
  background-color: #ff5722; /* orange background */
  border-radius: 50%; /* circle shape */
  position: relative;
  cursor: pointer;
  display: grid;
  place-content: center;
}

/* White dot inside when selected */
.radio-group input[type="radio"]::before {
  content: '';
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: white;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.radio-group input[type="radio"]:checked::before {
  opacity: 1;
}

.submit {
 display: block;
  margin: 1rem auto;
  position: relative;
  padding: 10px 20px;
  border-radius: 7px;
  border: 1px solid #ff5722;
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  background-color: black;
  color: white;
  cursor: pointer;
  overflow: hidden;
  box-shadow: none;
  transition: all 0.2s ease-in;
}
.submit:hover {
  background-color: #ff5722;
  color: white;
  border-color: #ff5722;
}
.section-heading {
  display: block;
  font-size: 1.rem; /* Bigger size */
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #121212;
}



/* ===== FAQ Collapsible Section ===== */
.collapsible-menu {
  max-width: 900px;
  margin: 2rem auto;
}

/* Each collapsible section wrapper */
.collapsible-section {
  margin-bottom: 0.5rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border: 1px solid #e0e0e0;
}

/* Header (orange by default) */
.collapsible-header {
  cursor: pointer;
  padding: 15px 20px;
  font-weight: bold;
  background-color: #ff5722; /* orange header */
  color: #000;               /* black text */
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
  font-size: 1.1rem;
}

/* Header hover */
.collapsible-header:hover {
  background-color: #ab3511; /* darker orange on hover */
}

/* Arrow inside header */
.collapsible-header span {
  transition: transform 0.3s ease;
}

/* Rotate arrow when section is active */
.collapsible-section.active .collapsible-header span {
  transform: rotate(90deg);
}

/* Collapsible content */
.collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background-color: #fff; /* white content */
  color: #000;
  padding: 0 20px;
  font-size: 1rem;
  line-height: 1.5;
}

/* Expand content when active */
.collapsible-section.active .collapsible-content {
  max-height: 1000px; /* plenty of space for content */
  padding: 15px 20px;
}

/* Paragraph inside content */
.collapsible-content p {
  margin: 0 0 1rem 0;
}

#here {
  color: #000000;
  text-decoration: underline;
  font-weight: bold;
}

#here :hover {
  color: #000000;
}
.services-list {
    list-style: disc inside;
    margin-left: 0;
    padding-left: 0;
}

.services-list li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}
/* ===== Contact Section ===== */
#contact-section {
  background-color: #44444421;
  padding: 4rem 1rem;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  color: #000;
  border-radius: 0.7rem;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

.section-subtitle {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  color: #ff5722;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Methods */
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.contact-item a {
  color: #000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: #ff5722;
}

/* Icons plain orange */
.contact-item .icon {
  font-size: 1.2rem;
  color: #ff5722;
}

/* Locations */
.contact-locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
}

.appointment-note {
  font-size: 0.95rem;
  color: #383838;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-methods,
  .contact-locations {
    flex-direction: column;
    gap: 1rem;
  }
}
