.hero {
  position: relative;
  background: url('/wp-content/uploads/2025/05/reliable-parts-services-for-jetskis-and-cars.jpg') center/cover no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  overflow: hidden;
  text-align: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
  backdrop-filter: blur(6px);
  z-index: 1;
}

.hero__container {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.hero__title {
  font-size: 48px;
  color: #fff;
  font-family: 'Georgia', serif;
  text-shadow: 0 0 10px rgba(0,0,0,0.5);
  line-height: 1.3;
  animation: fadeInHeroText 1s ease-out forwards;
  opacity: 0;
}

@keyframes fadeInHeroText {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero__cta {
  margin-top: 10px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 32px;
  }
  .hero__container {
    padding: 20px;
  }
}

    
    
    
    
    
    
    
    
    
    
    
.jdh-services {
  background-color: var(--dark-color);
  padding: 80px 20px;
}

.jdh-section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: var(--light-color);
  letter-spacing: 1px;
}

.jdh-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
  gap: 40px;
}

.jdh-service-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 4px solid var(--accent-color);
  animation: fadeUp 0.8s ease forwards;
  transform: translateY(30px);
  opacity: 0;
}

.jdh-service-card:hover {
  transform: scale(1.03);
}

.jdh-service-card:nth-child(2) { animation-delay: 0.1s; }
.jdh-service-card:nth-child(3) { animation-delay: 0.2s; }
.jdh-service-card:nth-child(4) { animation-delay: 0.3s; }
.jdh-service-card:nth-child(5) { animation-delay: 0.4s; }
.jdh-service-card:nth-child(6) { animation-delay: 0.5s; }

.jdh-service-card__img {
    position: relative;
    padding-top: 65%;
}
.jdh-service-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.jdh-service-card:hover img {
  transform: scale(1.05);
}

.jdh-card-content {
  padding: 25px 20px 30px;
  color: var(--light-color);
}

.jdh-card-content h3 {
  font-size: 22px;
  margin-top: 0;
  color: var(--accent-color);
}

.jdh-card-content p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.5;
}

.jdh-card-content a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.jdh-card-content a:hover {
  border-color: var(--accent-color);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .jdh-section-title {
    font-size: 30px;
  }

  .jdh-service-card {
    border-radius: 8px;
  }

  .jdh-card-content h3 {
    font-size: 20px;
  }

  .jdh-card-content p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .jdh-services {
    padding: 50px 15px;
  }

  .jdh-section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .jdh-services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .jdh-service-card {
    transform: none !important;
    opacity: 1 !important;
    animation: none;
  }

  .jdh-service-card:hover {
    transform: none;
  }

  .jdh-card-content {
    padding: 20px;
  }

  .jdh-card-content h3 {
    font-size: 18px;
  }

  .jdh-card-content p {
    font-size: 14px;
  }

  .jdh-card-content a {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .jdh-section-title {
    font-size: 24px;
  }

  .jdh-card-content h3 {
    font-size: 16px;
  }

  .jdh-card-content p {
    font-size: 13px;
  }
}









.jdh-why {
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
  padding: 100px 20px;
  color: var(--light-color);
}

.jdh-section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 60px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.jdh-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.jdh-why-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.8s ease forwards;
  transform: translateY(20px);
  opacity: 0;
}

.jdh-why-item:hover {
  transform: translateY(0) scale(1.02);
  box-shadow: 0 0 20px rgba(207, 173, 101, 0.4);
}

.jdh-why-item:nth-child(2) { animation-delay: 0.1s; }
.jdh-why-item:nth-child(3) { animation-delay: 0.2s; }
.jdh-why-item:nth-child(4) { animation-delay: 0.3s; }

.jdh-icon-wrapper {
  width: 80px;
  height: 80px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.05);
}

.jdh-icon-wrapper svg {
  width: 40px;
  height: 40px;
  filter: brightness(1.2) contrast(1.2);
}
.jdh-icon-wrapper svg path {
  fill: var(--accent-color);
}

.jdh-why-item h3 {
  color: var(--accent-color);
  font-size: 20px;
  letter-spacing: 0.5px;
}

.jdh-why-item p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}












.jdh-about {
  background: linear-gradient(135deg, #0d0d0d, #1c1c1c);
  padding: 100px 20px;
  color: var(--light-color);
}

.jdh-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.jdh-about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0,0,0,0.4);
}

.jdh-about-content {
  max-width: 600px;
}

.jdh-about-content .jdh-section-title {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(207,173,101,0.2);
}

.jdh-about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 20px;
}

.jdh-button {
  display: inline-block;
  padding: 12px 26px;
  background-color: var(--accent-color);
  color: var(--light-color);
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.jdh-button:hover {
  color: var(--dark-color);
  background-color: var(--light-color);
}


@media (max-width: 768px) {
  .jdh-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .jdh-about-content .jdh-section-title {
    font-size: 26px;
    text-align: center;
  }

  .jdh-about-content {
    text-align: center;
    max-width: 100%;
  }

  .jdh-button {
    margin-top: 10px;
  }
}











.jdh-testimonials {
  background-color: #111;
  padding: 100px 20px;
  color: var(--light-color);
}

.jdh-testimonials .jdh-section-title {
  text-align: center;
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 60px;
  text-transform: uppercase;
}

.jdh-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.jdh-testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  font-size: 15px;
  line-height: 1.7;
  position: relative;
  transition: transform 0.3s ease;
}

.jdh-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(207,173,101,0.2);
}

.jdh-testimonial-card p {
  color: #e0e0e0;
  font-style: italic;
  margin-bottom: 25px;
}

.jdh-testimonial-card h3 {
  font-size: 16px;
  color: var(--accent-color);
  margin: 0;
}

.jdh-testimonial-card span {
  display: block;
  color: #aaa;
  font-size: 13px;
}



@media (max-width: 768px) {
  .jdh-testimonials .jdh-section-title {
    font-size: 26px;
  }

  .jdh-testimonial-card {
    font-size: 14px;
    padding: 24px;
  }
}














.jdh-cta-rich {
  position: relative;
  padding: 140px 20px;
  background-color: #0b0b0b;
  overflow: hidden;
  text-align: center;
}

.jdh-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(207,173,101,0.08), transparent 80%),
              url('https://www.transparenttextures.com/patterns/gold-fish-scale.png');
  background-size: cover;
  opacity: 0.1;
  animation: shimmerBg 10s linear infinite;
  z-index: 0;
}

.jdh-cta-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 30px;
  border-radius: 24px;
  backdrop-filter: blur(20px);
  box-shadow: inset 0 0 0 1px rgba(207,173,101,0.1),
              0 0 40px rgba(207,173,101,0.15);
}

.jdh-cta-container h2 {
  font-size: 34px;
  color: var(--accent-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow: 0 0 10px rgba(207,173,101,0.25);
}

.jdh-cta-container p {
  color: #ccc;
  font-size: 16px;
  margin-bottom: 36px;
  line-height: 1.7;
}


@keyframes shimmerBg {
  0% { background-position: 0 0; }
  100% { background-position: 1000px 0; }
}



@media (max-width: 768px) {
  .jdh-cta-container h2 {
    font-size: 26px;
  }

  .jdh-cta-container p {
    font-size: 14px;
  }

  .jdh-button-glare {
    padding: 12px 28px;
    font-size: 14px;
  }
}













.jdh-faq {
  background: linear-gradient(135deg, #0d0d0d, #1b1b1b);
  padding: 100px 20px;
  color: var(--light-color);
}

.jdh-faq .jdh-section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 60px;
  color: var(--accent-color);
  text-transform: uppercase;
}

.jdh-faq-item {
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: background 0.3s ease;
}

.jdh-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  font-weight: bold;
  font-size: 16px;
  color: var(--accent-color);
  cursor: pointer;
  transition: background 0.3s ease;
}

.jdh-faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.jdh-faq-item.active .jdh-faq-icon {
  transform: rotate(180deg);
}

.jdh-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, padding 0.3s ease;
  padding: 0 24px;
}

.jdh-faq-item.active .jdh-faq-answer {
  max-height: 300px;
  padding: 20px 24px 30px;
}

.jdh-faq-answer p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .jdh-faq .jdh-section-title {
    font-size: 26px;
  }

  .jdh-faq-question {
    font-size: 15px;
  }

  .jdh-faq-answer p {
    font-size: 14px;
  }
}
