/* ======================
   Home Tech Services Section
   ====================== */

   .ht-services {
    padding: 6rem 0;
    background: linear-gradient(152deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
  }
  
  .ht-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  /* Section Header */
  .ht-services__header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .ht-services__title {
    font-size: 2.75rem;
    color: #1e265e;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    animation: htFadeUp 0.8s ease;
  }
  
  .ht-services__subtitle {
    color: #64748b;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  /* Service Intro Grid */
  .ht-service-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
  }
  
  .ht-service-visual__media {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 30px rgba(67, 96, 237, 0.15);
  }
  
  .ht-service-visual__image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .ht-service-visual__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(67, 96, 237, 0.3) 0%, transparent 100%);
  }
  
  .ht-service-overview {
    padding: 2rem;
  }
  
  .ht-service-overview__heading {
    font-size: 2.25rem;
    color: #1e265e;
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }
  
  .ht-service-overview__text {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }
  
  .ht-service-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .ht-service-benefits__item {
    padding: 0.8rem 0;
    color: #475569;
    position: relative;
    padding-left: 2.5rem;
    font-size: 1.05rem;
  }
  
  .ht-service-benefits__item::before {
    content: "✓";
    color: #4360ed;
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1.2rem;
  }
  
  /* Service Features Grid */
  .ht-service-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
  }
  
  .ht-service-features__card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
  }
  
  .ht-service-features__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(67, 96, 237, 0.1);
  }
  
  .ht-service-features__icon {
    width: 70px;
    height: 70px;
    background: #4360ed;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    transition: transform 0.3s ease;
  }
  
  .ht-service-features__card:hover .ht-service-features__icon {
    transform: rotate(15deg) scale(1.1);
  }
  
  .ht-service-features__title {
    font-size: 1.3rem;
    color: #1e265e;
    margin-bottom: 1rem;
  }
  
  .ht-service-features__desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Booking CTA */
  .ht-service-cta {
    background: #4360ed;
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .ht-service-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    transform: rotate(30deg);
    animation: htShine 8s infinite;
  }
  
  .ht-service-cta__content {
    position: relative;
    z-index: 1;
  }
  
  .ht-service-cta__heading {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
  }
  
  .ht-service-cta__text {
    color: #e2e8f0;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .ht-service-cta__action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.2rem 3rem;
    background: #5b73f0;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
  }
  
  .ht-service-cta__action:hover {
    background: #2e4cd2;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 76, 210, 0.4);
  }
  
  /* Animations */
  @keyframes htFadeUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes htShine {
    0% { left: -20%; }
    100% { left: 120%; }
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .ht-service-intro {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  
    .ht-service-visual__image {
      height: 400px;
    }
  }
  
  @media (max-width: 768px) {
    .ht-services {
      padding: 4rem 0;
    }
  
    .ht-services__title {
      font-size: 2.25rem;
    }
  
    .ht-service-features {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .ht-service-cta {
      padding: 3rem 1.5rem;
    }
  
    .ht-service-cta__heading {
      font-size: 1.75rem;
    }
  }
  
  @media (max-width: 480px) {
    .ht-services__title {
      font-size: 1.8rem;
    }
  
    .ht-service-overview__heading {
      font-size: 1.6rem;
    }
  
    .ht-service-cta__action {
      width: 100%;
      justify-content: center;
      padding: 1rem;
    }
  }
  