/* Styles for service.html */

    /* ===== SERVICE HERO SLIDER ===== */
    #service-slider {
      position: relative;
      height: 70vh;
      min-height: 450px;
      overflow: hidden;
    }

    #service-slider .hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      transition: opacity 1s ease;
    }

    #service-slider .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(10,60,35,0.85) 0%, rgba(15,81,50,0.7) 50%, rgba(0,0,0,0.5) 100%);
      z-index: 1;
    }

    #service-slider .hero-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 20px;
      color: #fff;
    }

    #service-slider .hero-badge {
      background: rgba(255,193,7,0.2);
      border: 1px solid rgba(255,193,7,0.5);
      color: #ffc107;
      padding: 6px 20px;
      border-radius: 50px;
      font-size: 0.85rem;
      margin-bottom: 16px;
      letter-spacing: 1px;
      animation: fadeInDown 0.8s ease;
    }

    #service-slider .hero-title-main {
      font-size: clamp(1.8rem, 5vw, 3.2rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: 16px;
      text-shadow: 0 2px 20px rgba(0,0,0,0.5);
      animation: fadeInUp 0.9s ease;
    }

    #service-slider .hero-subtitle {
      font-size: clamp(0.95rem, 2.5vw, 1.2rem);
      color: rgba(255,255,255,0.9);
      max-width: 600px;
      line-height: 1.7;
      margin-bottom: 28px;
      animation: fadeInUp 1s ease;
    }

    #service-slider .hero-cta-group {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
      animation: fadeInUp 1.1s ease;
    }

    #service-slider .btn-hero-primary {
      background: linear-gradient(135deg, #ffc107, #e6a800);
      color: #1a1a1a;
      border: none;
      padding: 14px 32px;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(255,193,7,0.4);
    }

    #service-slider .btn-hero-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(255,193,7,0.6);
    }

    #service-slider .btn-hero-secondary {
      background: rgba(255,255,255,0.15);
      color: #fff;
      border: 2px solid rgba(255,255,255,0.5);
      padding: 12px 28px;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
      text-decoration: none;
    }

    #service-slider .btn-hero-secondary:hover {
      background: rgba(255,255,255,0.25);
      border-color: #fff;
    }

    /* ===== MOVING IMAGES STRIP ===== */
    .moving-images-strip {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 80px;
      overflow: hidden;
      z-index: 3;
      background: rgba(0,0,0,0.3);
      backdrop-filter: blur(5px);
    }

    .moving-images-track {
      display: flex;
      gap: 4px;
      animation: slideImages 20s linear infinite;
      height: 100%;
    }

    .moving-image-thumb {
      min-width: 120px;
      height: 80px;
      background-size: cover;
      background-position: center;
      border-radius: 4px;
      opacity: 0.7;
      transition: opacity 0.3s;
      flex-shrink: 0;
    }

    .moving-image-thumb:hover {
      opacity: 1;
    }

    @keyframes slideImages {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ===== SERVICE DETAIL SECTION ===== */
    .service-detail-section {
      padding: 70px 0;
      background: #fff;
    }

    .service-detail-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .service-detail-text h2 {
      font-size: 2rem;
      color: #0f5132;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 15px;
    }

    .service-detail-text h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, #ffc107, #0f5132);
      border-radius: 2px;
    }

    .service-detail-text p {
      font-size: 1.05rem;
      line-height: 1.9;
      color: #444;
      margin-bottom: 30px;
    }

    .service-detail-image {
      position: relative;
    }

    .service-detail-image img {
      width: 100%;
      height: 350px;
      object-fit: cover;
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(15,81,50,0.2);
    }

    .service-detail-image::before {
      content: '';
      position: absolute;
      top: -15px;
      right: -15px;
      width: 100%;
      height: 100%;
      border: 3px solid #ffc107;
      border-radius: 16px;
      z-index: -1;
    }

    /* ===== WHAT WE OFFER SECTION ===== */
    .what-we-offer {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8fffe 0%, #e8f5ee 100%);
    }

    .what-we-offer .section-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .what-we-offer .section-header h2 {
      font-size: 2.2rem;
      color: #0f5132;
      margin-bottom: 12px;
    }

    .what-we-offer .section-header p {
      color: #666;
      font-size: 1.05rem;
      max-width: 600px;
      margin: 0 auto;
    }

    .offer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .offer-card {
      background: #fff;
      border-radius: 16px;
      padding: 28px 22px;
      text-align: center;
      box-shadow: 0 4px 20px rgba(15,81,50,0.08);
      border: 1px solid rgba(15,81,50,0.08);
      transition: all 0.35s ease;
      position: relative;
      overflow: hidden;
    }

    .offer-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #0f5132, #ffc107);
      transform: scaleX(0);
      transition: transform 0.35s ease;
    }

    .offer-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 40px rgba(15,81,50,0.15);
    }

    .offer-card:hover::before {
      transform: scaleX(1);
    }

    .offer-card .offer-icon {
      font-size: 2.5rem;
      margin-bottom: 14px;
      display: block;
      transition: transform 0.3s ease;
    }

    .offer-card:hover .offer-icon {
      transform: scale(1.15);
    }

    .offer-card h3 {
      font-size: 1rem;
      font-weight: 700;
      color: #0f5132;
      margin-bottom: 10px;
    }

    .offer-card p {
      font-size: 0.88rem;
      color: #666;
      line-height: 1.6;
    }

    /* ===== CTA SECTION ===== */
    .service-cta-section {
      padding: 70px 0;
      background: linear-gradient(135deg, #0f5132, #1a7a4f);
      text-align: center;
      color: #fff;
    }

    .service-cta-section h2 {
      font-size: 2rem;
      margin-bottom: 14px;
    }

    .service-cta-section p {
      font-size: 1.05rem;
      opacity: 0.9;
      margin-bottom: 30px;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-cta-gold {
      background: linear-gradient(135deg, #ffc107, #e6a800);
      color: #1a1a1a;
      border: none;
      padding: 15px 36px;
      border-radius: 50px;
      font-size: 1.05rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(255,193,7,0.4);
    }

    .btn-cta-gold:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(255,193,7,0.6);
    }

    .btn-cta-outline {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255,255,255,0.6);
      padding: 13px 32px;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-cta-outline:hover {
      background: rgba(255,255,255,0.15);
      border-color: #fff;
    }
     /* ===== FOOTER ENHANCED ===== */
    .footer {
      background: linear-gradient(135deg, #071f12 0%, #0a3c23 100%);
      color: rgba(255,255,255,0.85);
      padding: 60px 0 20px;
      margin-top: 0;
    }

    .footer-section h3 {
      color: #ffc107;
      margin-bottom: 20px;
      font-size: 1.1rem;
    }

    .footer-section p {
      color: rgba(255,255,255,0.75);
      margin-bottom: 10px;
      font-size: 0.9rem;
    }

    .footer-section a {
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-section a:hover {
      color: #ffc107;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 20px;
      color: rgba(255,255,255,0.5);
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
      .offer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .service-detail-grid {
        grid-template-columns: 1fr;
      }
      .service-detail-image {
        order: -1;
      }
    }

    @media (max-width: 576px) {
      #service-slider {
        height: 60vh;
        min-height: 380px;
      }
      .offer-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .offer-card {
        padding: 20px 16px;
      }
      .offer-card .offer-icon {
        font-size: 2.2rem;
      }
      .offer-card h3 {
        font-size: 1rem;
      }
      .offer-card p {
        font-size: 0.88rem;
      }
      .moving-images-strip {
        height: 60px;
      }
      .moving-image-thumb {
        min-width: 90px;
        height: 60px;
      }
    }
  