
    * { font-family: 'Inter', sans-serif; }

    .nav-link { color: #333; font-size: 14px; font-weight: 500; transition: color 0.2s; text-decoration: none; }
    .nav-link:hover, .nav-link.active { color: var(--ch-orange); }

    .hero-section {
      background: var(--ch-blue);
      min-height: 480px;
      position: relative;
      overflow: hidden;
    }
    .hero-overlay {
      background: linear-gradient(90deg, rgba(26,58,92,0.97) 0%, rgba(26,58,92,0.88) 38%, rgba(26,58,92,0.3) 65%, rgba(26,58,92,0) 100%);
    }
    @media (max-width: 768px) {
      .hero-overlay {
        background: linear-gradient(180deg, rgba(26,58,92,0.95) 0%, rgba(26,58,92,0.80) 50%, rgba(26,58,92,0.93) 100%);
      }
    }

    .badge-tag {
      background: #e8f4ea;
      color: #2d7a3a;
      font-size: 11px;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 20px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .btn-primary {
      background: var(--ch-orange);
      color: #fff;
      padding: 10px 22px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background 0.2s, transform 0.15s;
      border: none;
      cursor: pointer;
      text-decoration: none;
    }
    .btn-primary:hover { background: #C5600A; transform: translateY(-1px); }

    .btn-outline {
      border: 2px solid var(--ch-orange);
      color: var(--ch-orange);
      padding: 8px 20px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.2s;
      background: transparent;
      cursor: pointer;
      text-decoration: none;
    }
    .btn-outline:hover { background: var(--ch-orange); color: #fff; }

    .play-btn {
      width: 36px;
      height: 36px;
      background: var(--ch-orange);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: transform 0.2s;
    }
    .play-btn:hover { transform: scale(1.1); }

    .feature-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: #444;
      font-weight: 500;
    }
    .feature-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
    }

    .brand-logo {
      filter: grayscale(20%);
      transition: filter 0.2s, opacity 0.2s;
      opacity: 0.9;
      cursor: pointer;
    }
    .brand-logo:hover { filter: grayscale(0%); opacity: 1; }

    .service-card {
      background: #fcfdfe;
      border: 1px solid #e5e9ee;
      border-radius: 8px;
      padding: 14px 13px;
      min-height: 86px;
      display: flex;
      align-items: center;
      gap: 11px;
      box-shadow: 0 1px 3px rgba(0,43,89,0.06);
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .service-card:hover {
      box-shadow: 0 6px 20px rgba(232,115,12,0.15);
      transform: translateY(-2px);
    }
    .service-card:hover .service-icon {
      transform: scale(1.08);
    }

    .service-icon {
      width: 46px;
      height: 56px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.25s ease;
    }
    .service-icon svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .testimonial-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 10px;
      padding: 18px;
      transition: box-shadow 0.2s, background 0.2s;
      height: 100%;
      box-sizing: border-box;
    }
    .testimonial-card:hover { background: rgba(255,255,255,0.13); box-shadow: 0 4px 20px rgba(0,0,0,0.25); }

    .stars { color: #F5A623; font-size: 13px; }

    .form-input {
      width: 100%;
      border: 1px solid #d1d5db;
      border-radius: 6px;
      padding: 9px 12px;
      font-size: 13px;
      color: #333;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      box-sizing: border-box;
      height: 40px;
    }
    textarea.form-input {
      min-height: 40px;
      height: 40px;
      resize: vertical;
      line-height: 1.4;
      padding: 9px 12px;
    }
    .form-input:focus { border-color: var(--ch-orange); box-shadow: 0 0 0 3px rgba(232,115,12,0.1); }
    .form-label { font-size: 12px; font-weight: 600; color: #444; margin-bottom: 4px; display: block; }

    .section-link {
      color: var(--ch-orange);
      font-size: 13px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      text-decoration: none;
      transition: gap 0.2s;
      white-space: nowrap;
    }
    .section-link:hover { gap: 8px; }

    .dot { width: 8px; height: 8px; border-radius: 50%; background: #d1d5db; transition: background 0.2s; cursor: pointer; }
    .dot.active { background: var(--ch-orange); }

    .slider-arrow {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid #E5E9EF;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
      font-size: 12px;
      color: #555;
      flex-shrink: 0;
    }
    .slider-arrow:hover { background: var(--ch-orange); color: #fff; border-color: var(--ch-orange); }

    .contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #555; }
    .contact-icon { color: var(--ch-orange); width: 18px; margin-top: 2px; flex-shrink: 0; }

    .rating-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 20px;
      padding: 4px 12px;
      font-size: 13px;
      font-weight: 600;
      color: #fff;
    }

    #testimonialSlider { overflow: hidden; }
    #testimonialTrack { display: flex; transition: transform 0.4s ease; gap: 15px; }
    .t-card-wrap { flex: 0 0 calc(20% - 12px); min-width: 0; }

    @media (max-width: 1280px) { .t-card-wrap { flex: 0 0 calc(33.33% - 10px); } }
    @media (max-width: 768px) { .t-card-wrap { flex: 0 0 calc(50% - 8px); } }
    @media (max-width: 480px) { .t-card-wrap { flex: 0 0 calc(100% - 0px); } }

    .gmap-container { border-radius: 8px; overflow: hidden; border: 1px solid #ddd; }

    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: #f1f1f1; }
    ::-webkit-scrollbar-thumb { background: var(--ch-orange); border-radius: 3px; }
  