.hero-carpentry-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #3f3f3f 0%, #000000 100%);
  position: relative;
  overflow: hidden;
}

.hero-carpentry-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("https://images.unsplash.com/photo-1466027397211-20d0f2449a3f?q=80&w=1118&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");

  /* background-size: 150px 150px, 80px 80px; */
  background-position: 0 0, 40px 40px;
  background-size: cover;
  opacity: 0.4;
}

/* Hero Content */
.hero-carpentry-content {
  padding-top: 120px;
  position: relative;
  z-index: 2;
}

.carpentry-hero-text {
  color: #fff;
}

.carpentry-main-heading {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.carpentry-sub-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.carpentry-search-box {
  position: relative;
  max-width: 400px;
}

.carpentry-search-input {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.carpentry-search-input:focus {
  outline: none;
  border-color: #fff;
  background: #fff;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.carpentry-search-input::placeholder {
  color: #666;
}

/* Hero Image */
.carpentry-hero-image-wrapper {
  position: relative;
  z-index: 2;
}

.carpentry-hero-image-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 4px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.carpentry-hero-image-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.carpentry-hero-image-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Decorative Tools */
.carpentry-tool-decoration {
  position: absolute;
  opacity: 0.15;
  pointer-events: none;
}

.tool-hammer {
  bottom: 15%;
  left: 5%;
  width: 120px;
  transform: rotate(-25deg);
}

.tool-saw {
  top: 20%;
  left: 8%;
  width: 100px;
  transform: rotate(15deg);
}

.tool-pencil {
  bottom: 25%;
  left: 15%;
  width: 80px;
  transform: rotate(-45deg);
}

.tool-ruler {
  bottom: 35%;
  right: 8%;
  width: 90px;
  transform: rotate(30deg);
}

/* Responsive Design */
@media (max-width: 991px) {
  .carpentry-sub-text {
    font-size: 1rem;
  }

  .hero-carpentry-content {
    padding-top: 100px;
  }

  .carpentry-hero-image-wrapper {
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  .carpentry-main-heading {
    font-size: 2rem;
  }

  .carpentry-sub-text {
    font-size: 0.95rem;
  }

  .carpentry-nav-link {
    font-size: 1.1rem;
  }

  .tool-hammer,
  .tool-saw,
  .tool-pencil,
  .tool-ruler {
    opacity: 0.08;
  }
}

@media (max-width: 576px) {
  .carpentry-main-heading {
    font-size: 1.75rem;
  }

  .carpentry-search-box {
    max-width: 100%;
  }

  .carpentry-contact-btn {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
}

.suggestions {
  width: 63%;
}

@media screen and (max-width: 768px) {
  .suggestions {
    width: 100%;
  }
}
