/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background: #f3f4f8;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

h1, h2, h3, h4, p {
  margin: 0 0 15px;
}

/* Header - Black background, Logo Left, Nav+CTA More Right, Smaller Height, Sticky with Info Bar */
header {
  background: #111;
  box-shadow: 0 2px 16px rgba(0,0,0,0.13);
  padding: 10px 32px 10px 24px;
  border-bottom: none;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1001;
  min-height: 64px;
  margin-bottom: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: flex-start;
  gap: 32px;
}

.logo.blend-logo {
  height: 72px;
  margin-right: 32px;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.10));
  flex-shrink: 0;
}

.navbar-group {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 24px;
}

nav[role="navigation"] {
  display: flex;
  align-items: center;
  gap: 0;
  background: transparent;
  box-shadow: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
  background: transparent;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 1.13em;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ff5733;
}

.quote-button.nav-quote {
  background-color: #ff5733;
  color: white;
  padding: 10px 22px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1em;
  transition: background 0.3s, color 0.3s;
  border: none;
  display: inline-block;
  box-shadow: 0 2px 12px rgba(255,87,51,0.10);
  margin-left: 16px;
}

.quote-button.nav-quote:hover {
  background: #e64a19;
  color: #fff;
}

/* Sticky Info Bar below Header */
.info-bar {
  background-color: #23272f;
  color: #fff;
  padding: 4px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  position: sticky;
  top: 64px;
  z-index: 1000;
  min-height: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  margin-bottom: 18px;
}

.info-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.info-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-left: 0; /* Nudge icons right to align with hero buttons */
}

.social-icons a {
  color: #ff5733;
  font-size: 1.6em; /* Smaller icons */
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #e64a19;
}

.info-right {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 40px; /* Space from icons, not too far */
  margin-right: 0;
}

@media (max-width: 900px) {
  header {
    padding: 6px 8px;
    min-height: 48px;
    margin-bottom: 0;
  }
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    width: 100%;
  }
  .logo.blend-logo {
    margin: 0;
    height: 40px;
    flex-shrink: 0;
  }
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 2em;
    color: #fff;
    margin: 0 12px;
    cursor: pointer;
    z-index: 1100;
  }
  .navbar-group {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: 0;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: #23272f;
    flex-direction: column;
    gap: 0;
    width: 100vw;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    border-radius: 0 0 12px 12px;
    z-index: 1000;
    padding: 18px 0;
  }
  .nav-links.open {
    display: flex;
  }
  .quote-button.nav-quote {
    margin-left: 0;
    margin-right: 0;
    font-size: 1em;
    padding: 8px 16px;
  }
  .info-bar-inner {
    flex-direction: column;
    align-items: stretch;
    max-width: 100vw;
    margin: 0;
  }
  .info-center {
    margin-left: 0;
    justify-content: center;
  }
  .social-icons {
    margin-left: 0;
  }
  .info-right {
    margin-left: 0;
    justify-content: center;
    gap: 10px;
  }
}

/* Hero Section - Make both buttons same size and style */
.hero-buttons .btn-primary,
.hero-buttons .btn-primary.btn-quote-small {
  padding: 10px 22px;
  font-size: 1em;
  margin-left: 8px;
  border-radius: 10px;
  font-weight: bold;
  box-shadow: 0 2px 12px rgba(255,87,51,0.10);
}
.hero-buttons a:first-child {
  margin-left: 0;
}

.hero-buttons a {
  padding: 10px 22px;
  font-size: 1em;
  border-radius: 10px;
  font-weight: bold;
  box-shadow: 0 2px 12px rgba(255,87,51,0.10);
}

/* Hero Section */
.hero {
  background-image: url('images/hero_background.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 120px 0 100px 0;
  position: relative;
  min-height: 420px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-radius: 0 0 32px 32px;
  max-width: 1200px;
  margin: 0 auto 0 auto;
  margin-top: 0;
}

.hero::after {
  content: "";
  background: rgba(255, 255, 255, 0.18); /* Brighter overlay */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 48px 32px;
  background: rgba(255,255,255,0.13); /* Brighter content background */
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.hero-buttons a {
  display: inline-block;
  margin: 16px 12px 0 12px;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.15em;
  transition: background 0.3s, color 0.3s, border 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.btn-primary {
  background-color: #ff5733;
  color: white;
  border: none;
}

.btn-primary:hover {
  background: #e64a19;
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,87,51,0.15);
}

.btn-secondary {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-secondary:hover {
  background: #fff;
  color: #ff5733;
  border-color: #ff5733;
  box-shadow: 0 4px 16px rgba(255,87,51,0.10);
}

/* Welcome Section - More Info, More Contrast */
.welcome {
  text-align: center;
  padding: 60px 24px 40px 24px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border-radius: 18px;
  margin: 36px auto 0 auto;
  max-width: 900px;
}

.welcome .icon {
  font-size: 48px;
  margin-bottom: 18px;
  color: #ff5733;
}

.welcome p {
  font-size: 1.18em;
  color: #23272f;
  margin-bottom: 12px;
}

/* Features - More Info, Add View More Button */
.features {
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding: 60px 24px 40px 24px;
  background: #f7f8fa;
  gap: 32px;
  border-radius: 18px;
}

.feature {
  flex: 1 1 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 32px 18px 24px 18px;
  margin: 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature .icon {
  font-size: 38px;
  margin-bottom: 14px;
  color: #ff5733;
}

.feature h3 {
  margin-bottom: 10px;
  color: #181c23;
}

.feature p {
  font-size: 1.08em;
  color: #23272f;
  margin-bottom: 18px;
}

.features .view-more-btn {
  margin-top: 24px;
  background: #ff5733;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1.08em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.features .view-more-btn:hover {
  background: #e64a19;
}

/* Gallery Preview */
.gallery-preview {
  text-align: center;
  padding: 50px 20px;
}

.gallery-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: start;
}

.gallery-images a, .service-list .service, .testimonial {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 18px 12px;
  transition: box-shadow 0.2s;
}

.gallery-images a:hover, .service-list .service:hover, .testimonial:hover {
  box-shadow: 0 6px 24px rgba(255,87,51,0.10);
}

.gallery-images img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-images img:hover {
  transform: scale(1.05);
}

.gallery-preview .btn-gallery {
  display: inline-block;
  margin: 32px auto 0 auto;
  padding: 18px 48px;
  border-radius: 10px;
  background-color: #ff5733;
  color: #fff;
  font-size: 1.18em;
  font-weight: bold;
  border: none;
  box-shadow: 0 4px 16px rgba(255,87,51,0.13);
  text-decoration: none;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.gallery-preview .btn-gallery:hover,
.gallery-preview .btn-gallery:focus {
  background: #e64a19;
  color: #fff;
  box-shadow: 0 6px 24px rgba(255,87,51,0.18);
  outline: none;
}

/* Services */
.services {
  padding: 50px 20px;
  background-color: #f2f2f2;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service .icon {
  font-size: 30px;
  margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
  background-color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.testimonial-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial {
  width: 300px;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.07);
}

.testimonial img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
}

/* Quote Section */
.quote-section {
  background-color: #fefefe;
  padding: 50px 20px;
  text-align: center;
}

.quote-section form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-section input,
.quote-section textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

.quote-section button {
  background-color: #ff5733;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s;
}

.quote-section button:hover {
  background: #e64a19;
}

.location-info {
  margin-top: 30px;
}

/* Get a Custom Quote Section */
.quote-box {
  background: #fff;
  border: 2.5px solid #ff5733;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(255,87,51,0.08);
  padding: 48px 32px 40px 32px;
  margin: 56px auto 0 auto;
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.quote-box h2 {
  color: #ff5733;
  margin-bottom: 24px;
}

.quote-box form {
  margin-bottom: 32px;
}

.map-centered {
  display: block;
  margin: 24px auto 0 auto;
  max-width: 320px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.location-info p {
  text-align: center;
  margin-bottom: 10px;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 30px 20px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 10px;
}

footer .social-icons a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s ease;
}

footer .social-icons a:hover {
  color: #ff5733;
}

/* Section Spacing & Card Effects */
section {
  margin: 56px auto 0 auto;
  max-width: 900px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  background: #fff;
  padding: 48px 24px;
}

.features, .gallery-preview, .services, .testimonials, .quote-section {
  background: #f7f8fa;
  box-shadow: none;
  border-radius: 18px;
  margin-bottom: 36px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .header-container, section {
    padding-left: 12px;
    padding-right: 12px;
  }
  .hero {
    padding: 60px 0 60px 0;
    min-height: 320px;
    max-width: 100vw;
    border-radius: 0 0 18px 18px;
  }
  .hero-content {
    padding: 24px 8px;
    max-width: 98vw;
  }
  .features {
    flex-direction: column;
    gap: 18px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    right: 24px;
    background: #23272f;
    flex-direction: column;
    gap: 0;
    width: 200px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    border-radius: 12px;
    z-index: 1000;
    padding: 18px 0;
  }
  .nav-links.open {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
}
@media (min-width: 901px) {
  .hamburger {
    display: none !important;
  }
  .nav-links {
    display: flex !important;
    position: static;
    background: none;
    box-shadow: none;
    width: auto;
    flex-direction: row;
    gap: 40px;
    padding: 0;
  }
}
