
:root {
  --primary: #fa6607;
  --dark: #23272a;
  --light: #fff;
  --gray: #f4f7fa;
  --text: #1a1a1a;
  --nav-height: 64px;
}

/* Reset & base */
* { box-sizing: border-box; }
html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.1em;
  background: var(--gray);
  color: var(--text);
  min-height: 100vh;
  text-align: center;
}

/* NAVBAR & HAMBURGER */
header {
  background: var(--dark);
  color: var(--light);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2em;
  height: var(--nav-height);
  background: var(--dark);
  position: relative;
}
.logo img {
  display: block;
  height: 48px;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 0 auto;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1em;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 32px;
  height: 4px;
  background: var(--light);
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2em;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  padding: 0.3em 0.8em;
  border-radius: 4px;
  transition: color 0.2s;
  background: transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: transparent;
}

/* Hamburger & Responsive Nav */
@media (max-width: 800px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    padding: 1em 5vw;  /* add top & bottom padding */
    height: auto;
  }
  .logo {
    justify-content: flex-start;
    margin: 0;
    flex: 1 0 auto;
  }
  .hamburger {
    display: flex;
    margin-left: auto;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1.4em;
    background: var(--dark);
    border-top: 1px solid #222;
  position: fixed;
    left: 0;
    right: 0;
    top: var(--nav-height);  /* or top: 64px; */
    width: 100vw;
    padding: 1.2em 5vw 2em 5vw;
    z-index: 1000;
  }
  .nav-links.open {
    display: flex;
  }
}
@media (min-width: 801px) {
  .nav-links {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    width: auto;
    position: static;
    background: none;
    padding: 0;
    border: none;
  }
  .hamburger {
    display: none !important;
  }
}

/* HERO SECTION & PER-PAGE HERO VARIANTS */
.full-bleed-hero {
  width: 100%;
  margin: 0;
  position: relative;
  min-height: 350px;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  background-color: #1e1e1e; /* fallback color for image loading */
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5em 1em 5em 1em;
  overflow: hidden;
}
.hero-home {
  background-image: url('../images/home-hero-image.jpg');
}
.hero-services {
  background-image: url('../images/services-hero.jpg');
}
.hero-catalog {
  background-image: url('../images/catalog-hero-2707.jpg');
}
.hero-contact {
  background-image: url('../images/contact-banner.jpg');
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,30,30,0.28) 0%,
    rgba(30,30,30,0.44) 70%
  );
  z-index: 0;
}


.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.hero-content h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.4em;
  text-shadow: 0 2px 10px rgba(30,30,30,0.21);
}
.hero-content p {
  font-size: 1.2em;
  margin: 0;
  text-shadow: 0 2px 10px rgba(30,30,30,0.21);
}
.hero-buttons {
  margin-top: 1.5em;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
}

/* BUTTONS */
.btn {
  padding: 0.8em 2em;
  border-radius: 25px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  font-size: 1em;
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-primary {
  background: var(--primary);
  color: var(--light);
}
.btn-primary:hover {
  background: #e35900;
}
.btn-secondary {
  background: var(--light);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--light);
}
.cta-bar .btn-secondary {
  background: #fff;
  color: var(--primary);
  font-weight: 600;
  border: 2px solid #fff;
  padding: 0.85em 2.3em;
  border-radius: 30px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.18s;
}
.cta-bar .btn-secondary:hover,
.cta-bar .btn-secondary:focus {
  background: #fa6607;
  color: #fff;
  border: 2px solid #fff0e3;
  box-shadow: 0 2px 12px rgba(250,102,7,0.15);
}

/* TRUSTED BAR */
.trusted-bar {
  background: var(--light);
  padding: 1.2em 0 1em 0;
  border-bottom: 1px solid #ececec;
}
.trusted-bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
}
.trusted-bar-title {
  text-align: center;
  font-weight: 600;
  font-size: 1.1em;
  color: #444;
  margin-bottom: 0.6em;
  letter-spacing: 0.01em;
}
.trusted-bar-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4em;
  align-items: center;
}
.trusted-bar-logos img {
  height: 36px;
  max-width: 90px;
  margin: 0 .3em;
  opacity: 0.85;
  border-radius: 4px;
  background: rgb(255, 255, 255);
}
/* MAIN CONTAINER/SECTIONS */
.main-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1em 1.1em 0 1.1em;
}

/* WELCOME SECTION */
.welcome-section {
  margin-top: 1.1em;
  margin-bottom: 1.1em;
  padding-bottom: 1em;
}
.welcome-section h2 {
  color: var(--primary);
  font-size: 1.25em;
  margin-bottom: 0.5em;
}
.welcome-section p {
  font-size: 1.07em;
  margin-bottom: 1.1em;
}

/* Highlight list: Centered on desktop, left on mobile */
.highlight-list {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  align-items: center;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  font-size: 1em;
  margin-bottom: 0.2em;
  color: #272727;
  max-width: 600px;
  text-align: left;
}
.highlight-item svg {
  flex-shrink: 0;
  margin-right: 0.6em;
  color: var(--primary);
  margin-top: 0.13em;
}
.highlight-item a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
}
@media (max-width: 700px) {
  .highlight-list {
    align-items: stretch;
  }
  .highlight-item {
    margin-left: 0;
    text-align: left;
    max-width: 100%;
  }
}

/* SERVICES PREVIEW */
.services-preview {
  margin-bottom: 2em;
}
.services-preview h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 1.3em;
}
.services-preview .services-grid {
  display: flex;
  gap: 2em;
  justify-content: center;
  flex-wrap: wrap;
}
.service-box {
  background: var(--light);
  flex: 1 1 250px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  text-align: center;
  margin-bottom: 1.5em;
  padding: 1.2em 1em;
  max-width: 340px;
  /* Hover removed for static cards */
}
.service-box h3 {
  font-size: 1.2em;
  margin-bottom: 0.4em;
}
.service-box svg {
  width: 40px;
  height: 40px;
  margin-bottom: 0.5em;
  object-fit: cover;
  border-radius: 8px;
}
.service-box img {
  width: 100%;
  max-width: 280px;
  height: 170px;
  display: block;
  margin: 0 auto 1em auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(36,36,38,0.08);
}
/* Services button spacing */
.services-preview .main-container > div[style*="text-align:center"] {
  margin-bottom: 2em !important;
}
.services-preview .btn.btn-primary {
  margin-bottom: 1.4em;
}

/* home services section */

.service-icon {
  display: block;
  width: 80px;
  height: auto;
  margin: 0 auto 1rem;
}
.service-icon object {
  width: 100%;
  height: auto;
  display: block;
}


/* PROCESS BAR */
.process-bar {
  background: var(--light);
  padding: 1.4em 0 3em 0;
  margin-bottom: 0;
  margin-top: 2em;
  border-top: 1px solid #ececec;
}

.process-bar-inner {
  max-width: 900px;
  margin: 0 auto;
}
.process-bar h2 {
  text-align: center;
  font-size: 1.13em;
  color: var(--primary);
  margin-bottom: 1.1em;
}
.process-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
}
.process-steps li {
  counter-increment: step;
  position: relative;
  min-width: 150px;
  max-width: 220px;
  text-align: left;
  font-size: 0.98em;
  padding-left: 2em;
  background: none;
  border: none;
}
.process-steps li::before {
  content: counter(step) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.2em;
  font-family: inherit;
}
.process-steps strong {
  color: var(--primary);
  font-weight: 700;
}

/* CTA BAR */
.cta-bar {
  background: var(--primary);
  color: var(--light);
  text-align: center;
  padding: 1.7em 1em 1.3em 1em;
  margin: 0;
  width: 100%;
  border-radius: 0;
  border-top: none;
}
.cta-bar h2 {
  font-size: 1.15em;
  font-weight: 600;
  margin: 0 0 0.5em 0;
  color: var(--light);
}
.cta-bar p {
  font-size: 1em;
  margin-bottom: 1em;
}

/* FOOTER */
footer {
  background: var(--dark);
  color: var(--light);
  padding: 2em 0 1em 0;
  margin-top: 0;
  width: 100%;
  box-sizing: border-box;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  gap: 1em;
  font-size: 0.97em;
  box-sizing: border-box;
}
.footer-logo {
  flex: 1 1 150px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 0.7em;
}
.footer-contact {
  flex: 2 1 320px;
  text-align: center;
  min-width: 200px;
}
.footer-contact p {
  margin: 0.25em 0;
}
.footer-contact a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: var(--primary);
}
.footer-social {
  flex: 1 1 150px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1em;
  margin: 1em 0;
}
.footer-social img {
  transition: filter 0.2s, opacity 0.2s;
  opacity: 0.85;
  filter: grayscale(40%);
}
.footer-social a:hover img {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(56%) sepia(72%) saturate(5435%) hue-rotate(2deg) brightness(102%) contrast(103%);
}

.footer-copy {
  width: 100%;
  text-align: center;
  margin-top: 1em;
  color: #aaa;
  font-size: 0.9em;
}

/* CONTACT PAGE STYLES */
.contact-main {
  max-width: 1000px;
  margin: -3.0em auto 5.5em auto;   /* overlays hero, adds space at bottom */
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(36,36,38,0.07);
  padding: 2.5em 2em 2.5em 2em;
  display: flex;
  gap: 2em;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.contact-info {
  flex: 1 1 250px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 1.6em;
  justify-content: flex-start;
  text-align: left;
}
.contact-info h2 {
  color: var(--primary, #fa6607);
  font-size: 1.17em;
  margin-bottom: 0.7em;
  margin-top: 0;
  letter-spacing: 0.02em;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.8em;
  font-size: 1.07em;
  color: #23272a;
  margin-bottom: 0.6em;
  word-break: break-all;
}
.contact-detail a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
.contact-detail a:hover {
  color: #fa6607;
}
.contact-icon {
  width: 1.4em;
  height: 1.4em;
  color: #fa6607;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-hours {
  margin-top: 0.7em;
  font-size: 0.98em;
  color: #6a6a6a;
}
.contact-form-area {
  flex: 2 1 360px;
  min-width: 270px;
}
.contact-form-area h2 {
  color: var(--primary, #fa6607);
  font-size: 1.13em;
  margin-top: 0;
  margin-bottom: 1em;
  letter-spacing: 0.01em;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.15em;
}
.contact-form label {
  font-weight: 600;
  font-size: 0.98em;
  margin-bottom: 0.17em;
  display: block;
}
.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 1em;
  border-radius: 8px;
  border: 1px solid #dadada;
  padding: 0.8em 0.8em;
  width: 100%;
  background: #fff;
  resize: vertical;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #fa6607;
}
.contact-form textarea {
  min-height: 90px;
  max-height: 240px;
}
.contact-form button {
  align-self: center;
  margin-top: 0.2em;
}

/* CONTACT PAGE RESPONSIVE */
@media (max-width: 950px) {
  .contact-main {
    flex-direction: column;
    padding: 2.2em 1em 2.2em 1em;
    max-width: 600px;
    margin-top: -2.2em;
    margin-bottom: 2.5em;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 600px) {
  .contact-main {
    border-radius: 10px;
    padding: 1.1em 1em 1.2em 1em;
    margin-top: -2.3em;
    margin-bottom: 2.5em;
    box-shadow: 0 3px 16px rgba(36,36,38,0.07);
    max-width: 400px;   /* ADDED: limits the width of the card */
    margin-left: auto;  /* centers the card horizontally */
    margin-right: auto; /* centers the card horizontally */
  }
  .contact-form button {
    width: 100%;
  }
}



/* MOBILE GENERAL */
@media (max-width: 1100px) {
  .navbar,
  .footer-content,
  .services-preview .main-container {
    max-width: 96vw;
    padding-left: 1vw;
    padding-right: 1vw;
  }
}
@media (max-width: 900px) {
  .services-preview .services-grid {
    flex-direction: column;
    gap: 1em;
    align-items: center;
  }
  .hero-content h1 {
    font-size: 2em;
  }
  .full-bleed-hero {
    min-height: 220px;
    padding: 3em 1em;
  }
}
@media (max-width: 800px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
    padding-left: 0;
    padding-right: 0;
    max-width: 100vw;
  }
  .footer-logo,
  .footer-contact,
  .footer-social {
    flex: none;
    width: 100%;
    justify-content: center !important;
    margin-bottom: 0.5em;
  }
  .footer-logo-img {
    margin-bottom: 0.5em;
  }
  .footer-social {
    justify-content: center;
    margin: 0.5em 0;
  }
}
@media (max-width: 700px) {
  .highlight-list {
    align-items: stretch;
  }
  .highlight-item {
    margin-left: 0;
    text-align: left;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.15em;
    margin-bottom: 0.4em;
  }
  .hero-content p {
    font-size: 1em;
    margin-bottom: 1.2em;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 0.7em;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 270px;
    margin: 0 auto;
  }
  .footer-content {
    gap: 1em;
  }
  .full-bleed-hero {
    padding: 2.5em 0.5em;
    min-height: 130px;
  }
}
@media (max-width: 600px) {
  .trusted-bar-inner {
    padding-left: 1em;
    padding-right: 1em;
  }
  .trusted-bar-logos img {
    height: 28px;
    max-width: 60px;
  }
}