/* <!-- Custom CSS --> */
  
    :root {
      --primary-blue: #00ccc8;
      --primary-green: #0185c1;
      --light-bg: #f0f9ff;
      --white: #ffffff;
      --dark-text: #1e2a41;
      --gray-bg: #f8f9fc;
    }
    body {
      font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
      color: var(--dark-text);
      scroll-behavior: smooth;
      overflow-x: hidden;
    }
    /* Top bar - NOT sticky anymore */
    .top-bar {
      background: #00ccc8;
      color: white;
      font-size: 0.85rem;
      padding: 6px 0;
      position: relative;
      z-index: 1030;
    }
    .top-bar a {
      color: white;
      text-decoration: none;
      margin: 0 8px;
      transition: 0.2s;
    }
    .top-bar a:hover {
      opacity: 0.8;
    }
    .btn-wa-sm {
      background: #25D366;
      color: white;
      padding: 2px 12px;
      border-radius: 30px;
      font-size: 0.75rem;
      font-weight: 500;
    }
    .btn-call-sm {
      background: #007bff;
      color: white;
      padding: 2px 12px;
      border-radius: 30px;
      font-size: 0.75rem;
    }
    /* Navbar - sticky with proper top offset */
    .navbar {
      background: white;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      padding: 12px 0;
      transition: all 0.3s;
      position: sticky;
      top: 0;
      z-index: 1020;
    }
    .navbar-brand {
      font-weight: 700;
      font-size: 1.6rem;
      color: var(--primary-blue);
      letter-spacing: -0.5px;
    }
    .navbar-brand span {
      color: var(--primary-green);
      font-weight: 300;
    }
    .nav-link {
      font-weight: 500;
      color: #2c3e66;
      margin: 0 6px;
    }
    .nav-link:hover {
      color: var(--primary-green);
    }
    .btn-franchise {
      background: var(--primary-green);
      color: white;
      border-radius: 40px;
      padding: 8px 22px;
      font-weight: 600;
      transition: 0.3s;
    }
    .btn-franchise:hover {
      background: #1e5f3a;
      color: white;
      transform: translateY(-2px);
    }
    /* Hero slider */
    .hero-slide {
      background-size: cover;
      background-position: center;
      min-height: 85vh;
      display: flex;
      align-items: center;
      position: relative;
      background-blend-mode: overlay;
      background-color: rgba(0, 0, 0, 0.5);
    }
    .hero-slide::before {
      content: "";
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(10, 44, 62, 0.65);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      color: white;
    }
    .hero-content h1 {
      font-size: 3rem;
      font-weight: 700;
    }
    .btn-hero {
      margin: 8px;
      border-radius: 40px;
      padding: 10px 28px;
      font-weight: 600;
    }
    /* Section common */
    .section-padding {
      padding: 80px 0;
    }
    .section-title {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: var(--primary-blue);
      position: relative;
      display: inline-block;
    }
    .section-title:after {
      content: '';
      width: 70px;
      height: 3px;
      background: var(--primary-green);
      position: absolute;
      bottom: -12px;
      left: 0;
    }
    .service-card, .why-card {
      background: white;
      border-radius: 20px;
      padding: 30px 20px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.05);
      transition: all 0.3s;
      height: 100%;
      border: 1px solid #eef2f6;
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 30px rgba(0,0,0,0.1);
    }
    .service-icon {
      font-size: 2.8rem;
      color: var(--primary-green);
      margin-bottom: 18px;
    }
    .process-step {
      text-align: center;
      padding: 20px;
      background: #fff;
      border-radius: 50px 20px 50px 20px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    .step-number {
      background: var(--primary-blue);
      width: 60px;
      height: 60px;
      line-height: 60px;
      font-size: 28px;
      font-weight: bold;
      border-radius: 60px;
      color: white;
      margin: 0 auto 20px;
    }
    .testimonial-card {
      background: white;
      border-radius: 24px;
      padding: 30px;
      margin: 15px;
      box-shadow: 0 12px 25px rgba(0,0,0,0.05);
      border-left: 6px solid var(--primary-green);
    }
    .faq-accordion .accordion-button:focus {
      box-shadow: none;
      border-color: #dee2e6;
    }
    .accordion-button:not(.collapsed) {
      background-color: #e8f0fe;
      color: var(--primary-blue);
    }
    footer {
      background: #0a2f44;
      color: #ddd;
      padding-top: 50px;
      padding-bottom: 30px;
    }
    .floating-buttons {
      position: fixed;
      bottom: 25px;
      right: 20px;
      z-index: 1040;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .floating-btn {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      background: #25D366;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      box-shadow: 0 5px 12px rgba(0,0,0,0.2);
      transition: 0.2s;
      text-decoration: none;
    }
    .floating-btn.call {
      background: #007bff;
    }
    .floating-btn.contact {
      background: var(--primary-green);
    }
    .floating-btn:hover {
      transform: scale(1.08);
      color: white;
    }
    @media (max-width: 768px) {
      .hero-content h1 { font-size: 1.9rem; }
      .section-padding { padding: 50px 0; }
      .navbar-brand { font-size: 1.3rem; }
    }
    .swiper-pagination-bullet-active {
      background: var(--primary-green) !important;
    }
    .map-container iframe {
      width: 100%;
      height: 280px;
      border-radius: 20px;
      border: none;
    }
    .contact-info i {
      width: 32px;
      color: var(--primary-green);
    }
    .btn-submit {
      background: var(--primary-green);
      border: none;
      padding: 12px 28px;
      border-radius: 40px;
    }
    /* Fix for anchor links offset due to sticky navbar */
    html {
      scroll-padding-top: 80px;
    }