      body{
            font-size: 18px !important;
        }
        html{
            font-size: 18px !important;
        }

        /* ===== HERO / MAIN IMAGE ===== */
   /* ===== HERO / MAIN IMAGE ===== */
.hero {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.75));
  z-index: 1;
}

/* inner content centered */
.hero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-title {
  color: #fff;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 6px;
  text-align: center;
  text-shadow:
    -3px -3px 0 #000,
     3px -3px 0 #000,
    -3px  3px 0 #000,
     3px  3px 0 #000;
  letter-spacing: 1px;
}

.hero-subtitle {
  color: #fff;
  max-width: 700px;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

/* breadcrumb + back link inside hero */
.breadcrumb-hero {
  margin-top: 6px;
  font-size: 0.9rem;
  color: #f5f5f5;
}

.breadcrumb-hero .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.breadcrumb-hero .breadcrumb a {
  color: #ffeb3b;
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb-hero .breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb-hero .breadcrumb span.current {
  color: #ffffff;
  font-weight: 600;
}

.hero-back-link {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #fff;
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
}
.hero-back-link i {
  font-size: 0.85rem;
}
.hero-back-link:hover {
  background: rgba(0,0,0,0.6);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero {
    height: 240px;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }
}

        /* ===== VIEW ANIMATION ===== */
        .view-section {
          opacity: 0;
          transform: translateY(10px);
          animation: fadeInUp 0.45s ease-out forwards;
        }
        @keyframes fadeInUp {
          from {
            opacity: 0;
            transform: translateY(15px);
          }
          to {
            opacity: 1;
            transform: translateY(0);
          }
        }

        /* ===== BREADCRUMB ===== */
        .breadcrumb-bar {
          max-width: 1100px;
          margin: 10px auto 15px;
          padding: 6px 15px;
          font-size: 0.9rem;
          color: #666;
        }
        .breadcrumb {
          display: flex;
          flex-wrap: wrap;
          align-items: center;
          gap: 6px;
        }
        .breadcrumb a {
          color: #00796b;
          text-decoration: none;
          font-weight: 500;
        }
        .breadcrumb a:hover {
          text-decoration: underline;
        }
        .breadcrumb span.current {
          color: #000;
          font-weight: 600;
        }
        .back-bar {
          max-width: 1100px;
          margin: 0 auto 18px;
          padding: 0 15px;
        }
        .back-link {
          display: inline-flex;
          align-items: center;
          gap: 6px;
          font-size: 0.9rem;
          color: #444;
          text-decoration: none;
        }
        .back-link i {
          font-size: 0.9rem;
        }
        .back-link:hover {
          color: #00897b;
          text-decoration: underline;
        }

        /* ====== GRID LAYOUT (category squares) ====== */
        .activity-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
          gap: 25px;
          justify-content: center;
        }
        @media (max-width: 992px) {
          .activity-grid {
            grid-template-columns: repeat(2, 1fr) !important;
          }
        }
        @media (max-width: 480px) {
          .activity-grid {
            grid-template-columns: 1fr !important;
          }
        }

        .activity-card {
          position: relative;
          display: block;
          overflow: hidden;
          border-radius: 12px;
          box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
          text-decoration: none;
          color: #000;
          transition: transform 0.3s ease;
        }
        .activity-card:hover {
          transform: scale(1.03);
        }
        .activity-card img {
          width: 100%;
          aspect-ratio: 4 / 3;
          object-fit: cover;
          display: block;
        }
        .activity-card::after {
          content: "";
          position: absolute;
          inset: 0;
          background: linear-gradient(to top, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
          z-index: 1;
        }
        .activity-title {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          margin: 0;
          z-index: 2;
          color: #fff;
          font-size: 3rem;
          font-weight: 900;
          text-align: center;
          letter-spacing: 1px;
          line-height: 1.1;
          text-shadow:
            -3px -3px 0 #000,
             3px -3px 0 #000,
            -3px  3px 0 #000,
             3px  3px 0 #000,
             0px  0px 8px rgba(0,0,0,0.5);
        }
        @media (max-width: 768px) {
          .activity-title {
            font-size: 2rem;
          }
        }

        /* FILTER BAR (same style as services_list.php) */
        .services-filter-bar {
            max-width: 1100px;
            margin: 0 auto 30px;
            padding: 12px 15px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.06);
        }
        .services-filter-bar form {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 14px;
            align-items: flex-end;
        }
        .filter-group {
            flex: 1 1 180px;
            min-width: 160px;
        }
        .filter-group label {
            display: block;
            font-size: 0.82rem;
            margin-bottom: 4px;
            font-weight: 600;
        }
        .filter-group select,
        .filter-group input[type="text"] {
            width: 100%;
            padding: 6px 8px;
            border-radius: 8px;
            border: 1px solid #ccc;
            font-size: 0.9rem;
        }
        .services-filter-actions {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .services-filter-actions button,
        .services-filter-actions a {
            border-radius: 999px;
            padding: 7px 16px;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
            text-decoration: none;
        }
        .btn-apply {
            background: #00897b;
            color: #fff;
            font-weight: 600;
        }
        .btn-clear {
            background: #f1f1f1;
            color: #333;
        }

        /* GRID OF SERVICE CARDS (list view) */
        .services-page-wrap {
            max-width: 1100px;
            margin: 0 auto 40px;
            padding: 0 15px;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 20px;
        }
        .service-card {
            background: #fff;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            display: flex;
            flex-direction: column;
        }
        .service-image-wrapper {
            width: 100%;
            padding-top: 62%;
            position: relative;
            overflow: hidden;
        }
        .service-image-wrapper img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .service-image-placeholder {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #e0f7fa, #fff3e0);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 2rem;
        }
        .service-card-body {
            padding: 10px 12px 12px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .service-card-title {
            font-size: 1.05rem;
            font-weight: 700;
            margin: 0 0 4px;
        }
        .service-badges {
            margin-bottom: 6px;
            font-size: 0.75rem;
        }
        .badge-pill {
            display: inline-block;
            padding: 2px 7px;
            border-radius: 999px;
            margin: 0 4px 4px 0;
            font-size: 0.74rem;
        }
        .badge-beach {
            background: #e0f7fa;
            color: #006064;
        }
        .badge-category {
            background: #fff3e0;
            color: #e65100;
        }
        .service-desc {
            font-size: 0.86rem;
            color: #555;
            margin-bottom: 4px;
        }
        .service-meta {
            font-size: 0.78rem;
            color: #666;
            margin-bottom: 2px;
        }
        .service-meta i {
            margin-right: 4px;
        }
        .service-card-footer {
            margin-top: auto;
            padding-top: 4px;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .service-btn {
            font-size: 0.8rem;
            border-radius: 999px;
            padding: 4px 9px;
            border: none;
            cursor: pointer;
            text-decoration: none;
        }
        .service-btn-whatsapp {
            background: #25D366;
            color: #fff;
        }
        .service-btn-website {
            background: #e3f2fd;
            color: #1565c0;
        }
        .services-empty {
            text-align: center;
            padding: 30px 10px;
            color: #777;
        }

        /* footer & whatsapp like restaurants.php */
        .footer {
          background: #000;
          border-top: 3px solid #00d68f;
          padding: 50px 20px 25px;
          text-align: center;
          color: #f5f5f5;
          font-family: 'Poppins', sans-serif;
        }
        .footer-content { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 28px; align-items: center; }
        .footer-section h4 { font-size: 1.5rem; margin-bottom: 10px; color: #00ffb3; letter-spacing: 1px; }
        .footer-section p, .footer-section a { color: #ddd; text-decoration: none; font-size: 0.95rem; }
        .footer-section a:hover { color: #00d68f; }
        .social { display: flex; gap: 22px; justify-content: center; }
        .social-icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; border: 2px solid #fff; color: #fff; font-size: 1.4rem; transition: all 0.3s ease; }
        .social-icon:hover { background: #00d68f; color: #000; transform: scale(1.15); box-shadow: 0 0 12px #00d68f; }
        .fb:hover { background: #1877F2; color: #fff; box-shadow: 0 0 12px #1877F2; }
        .ig:hover { background: #E4405F; color: #fff; box-shadow: 0 0 12px #E4405F; }
        .wa:hover { background: #25D366; color: #fff; box-shadow: 0 0 12px #25D366; }
        .legal { font-size: 0.9rem; color: #aaa; }
        .legal a { color: #00d68f; text-decoration: none; }
        .legal a:hover { text-decoration: underline; }
        .whatsapp-float {
          position: fixed;
          bottom: 25px;
          right: 25px;
          background-color: #25D366;
          color: #fff;
          width: 60px;
          height: 60px;
          border-radius: 50%;
          text-align: center;
          font-size: 2rem;
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
          z-index: 1000;
          transition: all 0.3s ease;
        }
        .whatsapp-float:hover {
          transform: scale(1.15);
          background-color: #1ebe5d;
          box-shadow: 0 0 15px #25D366;
        }
        .whatsapp-float i { line-height: 60px; }

        /* NAVBAR mobile tweaks */
        @media (max-width: 768px) {
          .navbar { padding: 12px 16px !important; }
          .navbar-brand img { max-height: 80px !important; width: auto; }
          .navbar-toggler { width: 48px !important; height: 38px !important; border: none !important; }
          .navbar-toggler span {
            background-color: #000;
            display: block;
            height: 3.5px;
            margin: 7px 0;
            border-radius: 3px;
          }
          .navbar-nav .nav-link {
            font-size: 1.3rem !important;
            font-weight: 600 !important;
            padding: 14px 0 !important;
            color: #000 !important;
            text-transform: uppercase;
            letter-spacing: 0.5px;
          }
          .navbar-nav .nav-link:hover { color: #ef6c00 !important; }
          .side-menu { padding-top: 90px !important; }
          .side-nav .nav-link {
            font-size: 1.4rem !important;
            font-weight: 600 !important;
            padding: 14px 0 !important;
            color: #fff !important;
          }
          .side-nav .nav-link:hover { color: #ef6c00 !important; }
          .side-nav .nav-item { margin-bottom: 10px; }
        }
       /* ===== LIST VIEW GRID (BUSINESS CARDS) ===== */
.services-page-wrap {
    max-width: 1100px;
    margin: 0 auto 40px;
    padding: 0 15px;
}

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

.service-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-image-wrapper {
    width: 100%;
    padding-top: 62%;
    position: relative;
    overflow: hidden;
}
.service-image-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-image-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #e0f7fa, #fff3e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 2rem;
}

.service-card-body {
    padding: 10px 12px 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.service-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 4px;
}
.service-badges {
    margin-bottom: 6px;
    font-size: 0.75rem;
}
.badge-pill {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 999px;
    margin: 0 4px 4px 0;
    font-size: 0.74rem;
}
.badge-beach {
    background: #e0f7fa;
    color: #006064;
}
.badge-category {
    background: #fff3e0;
    color: #e65100;
}
.service-desc {
    font-size: 0.86rem;
    color: #555;
    margin-bottom: 4px;
}
.service-meta {
    font-size: 0.78rem;
    color: #666;
    margin-bottom: 2px;
}
.service-meta i {
    margin-right: 4px;
}
.service-card-footer {
    margin-top: auto;
    padding-top: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.service-btn {
    font-size: 0.8rem;
    border-radius: 999px;
    padding: 4px 9px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.service-btn-whatsapp {
    background: #25D366;
    color: #fff;
}
.service-btn-website {
    background: #e3f2fd;
    color: #1565c0;
}

.services-empty {
    text-align: center;
    padding: 30px 10px;
    color: #777;
}
 