/*
      Tailwind-style utility subset.
      Only implements utilities actually used in the original React source.
    */

    :root {
      --color-primary: 14 181 164;
      /* #0eb5a4 */
      --color-secondary: 15 165 151;
      /* #0fa597 */
      --color-accent: 237 246 243;
      /* #EDF6F3 */
      --color-dark: 28 42 60;
      /* #1C2A3C */
      --color-darker: 17 26 40;
      /* #111A28 */
      --color-deepest: 6 19 20;
      /* #061314 */

      /* Layout offsets */
      --header-offset: 96px;
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      height: 100%;
    }

    body {
      margin: 0;
      background: rgb(var(--color-dark));
      color: #fff;
      scroll-behavior: smooth;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;

      /* Avoid accidental horizontal scroll on mobile */
      overflow-x: hidden;
    }

    img,
    video {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font: inherit;
      color: inherit;
      background: transparent;
      border: 0;
      padding: 0;
    }

    /* Scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: rgb(var(--color-darker));
    }

    ::-webkit-scrollbar-thumb {
      background: rgb(var(--color-primary));
      border-radius: 4px;
    }

    /* Why Us (py-24 bg-darker...) card grid: hide per-card icons */
    #whyUsCardGrid .group>.w-8.h-8 {
      display: none;
    }

    /* Why Us: make cards & text more readable */
    #whyUsCardGrid>div {
      border-width: 2px;
      border-style: solid;
      border-color: rgba(255, 255, 255, 0.28);
    }

    #whyUsCardGrid>div:hover {
      border-color: rgba(255, 255, 255, 0.60);
    }

    #whyUsCardGrid>div h5 {
      color: #fff;
      font-weight: 700;
    }

    #whyUsCardGrid>div p {
      color: rgba(255, 255, 255, 0.82);
      font-weight: 600;
    }

    /* Why Us grid LOLO caption alignment */
    #whyUsCardGrid>div {
      text-align: center;
    }

    #whyUsCardGrid>div img {
      margin-left: auto;
      margin-right: auto;
    }

    /* Container */
    .container {
      width: 100%;
      margin-left: auto;
      margin-right: auto;
    }

    @media (min-width: 640px) {
      .container {
        max-width: 640px;
      }
    }

    @media (min-width: 768px) {
      .container {
        max-width: 768px;
      }
    }

    @media (min-width: 1024px) {
      .container {
        max-width: 1024px;
      }
    }

    @media (min-width: 1280px) {
      .container {
        max-width: 1280px;
      }
    }

    /* Layout */
    .min-h-screen {
      min-height: 100vh;
    }

    .h-screen {
      height: 100vh;
    }

    .relative {
      position: relative;
    }

    .absolute {
      position: absolute;
    }

    .fixed {
      position: fixed;
    }

    .inset-0 {
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
    }

    .top-0 {
      top: 0;
    }

    .left-0 {
      left: 0;
    }

    .bottom-10 {
      bottom: 2.5rem;
    }

    .bottom-0 {
      bottom: 0;
    }

    .top-4 {
      top: 1rem;
    }

    .left-4 {
      left: 1rem;
    }

    .top-6 {
      top: 1.5rem;
    }

    .right-6 {
      right: 1.5rem;
    }

    .-top-10 {
      top: -2.5rem;
    }

    .-right-10 {
      right: -2.5rem;
    }

    .-bottom-10 {
      bottom: -2.5rem;
    }

    .-left-10 {
      left: -2.5rem;
    }

    .z-0 {
      z-index: 0;
    }

    .z-10 {
      z-index: 10;
    }

    .z-20 {
      z-index: 20;
    }

    .z-40 {
      z-index: 40;
    }

    .z-50 {
      z-index: 50;
    }

    .w-full {
      width: 100%;
    }

    .w-auto {
      width: auto;
    }

    .w-6 {
      width: 1.5rem;
    }

    .w-5 {
      width: 1.25rem;
    }

    .w-8 {
      width: 2rem;
    }

    .w-12 {
      width: 3rem;
    }

    .w-16 {
      width: 4rem;
    }

    .w-20 {
      width: 5rem;
    }

    .w-48 {
      width: 12rem;
    }

    .w-64 {
      width: 16rem;
    }

    .h-full {
      height: 100%;
    }

    .h-auto {
      height: auto;
    }

    .h-1 {
      height: 0.25rem;
    }

    .h-5 {
      height: 1.25rem;
    }

    .h-6 {
      height: 1.5rem;
    }

    .h-8 {
      height: 2rem;
    }

    .h-10 {
      height: 2.5rem;
    }

    .h-12 {
      height: 3rem;
    }

    .h-16 {
      height: 4rem;
    }

    .flex {
      display: flex;
    }

    .inline-flex {
      display: inline-flex;
    }

    .grid {
      display: grid;
    }

    .hidden {
      display: none;
    }

    .block {
      display: block;
    }

    .items-center {
      align-items: center;
    }

    .items-end {
      align-items: flex-end;
    }

    .items-start {
      align-items: flex-start;
    }

    .justify-between {
      justify-content: space-between;
    }

    .justify-center {
      justify-content: center;
    }

    .flex-col {
      flex-direction: column;
    }

    .flex-wrap {
      flex-wrap: wrap;
    }

    .flex-shrink-0 {
      flex-shrink: 0;
    }

    .overflow-hidden {
      overflow: hidden;
    }

    .overflow-x-hidden {
      overflow-x: hidden;
    }

    .object-cover {
      object-fit: cover;
    }

    .object-contain {
      object-fit: contain;
    }

    /* Premium hero overlay typography */
    @keyframes premiumFadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-scrim {
      background:
        linear-gradient(to bottom, rgba(17, 26, 40, 0.78), rgba(17, 26, 40, 0.55) 55%, rgba(17, 26, 40, 0.72));
    }

    .premium-hero {
      width: 100%;
      max-width: 100%;
      animation: premiumFadeIn 900ms ease-out both;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    }

    .premium-hero-title {
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
      font-weight: 700;
      letter-spacing: 0.02em;
      color: #E6C78B;
      font-size: clamp(1.75rem, 5.8vw, 3.2rem);
      line-height: 1.02;
      margin: 0 0 0.75rem 0;
    }

    .premium-hero-subtitle {
      margin: 0 0 1.25rem 0;
      color: #F5F2EB;
      font-weight: 600;
      letter-spacing: 0.01em;
      font-size: clamp(1.45rem, 4.8vw, 2.1rem);
      line-height: 1.2;
    }

    .premium-hero-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 0.6rem;
    }

    .premium-hero-list .step-label {
      color: #E6C78B;
      font-weight: 500;
    }

    .premium-card {
      border: 3px solid rgba(245, 242, 235, 0.38);
      border-radius: 1rem;
      padding: clamp(1rem, 2vw, 1.75rem);
      transition: border-color 300ms ease;
      background: rgba(17, 26, 40, 0.15);
    }

    .premium-card:hover {
      border-color: rgba(245, 242, 235, 0.70);
    }

    .premium-card a {
      display: inline-flex;
      align-items: center;
      min-height: 44px;
      color: #F5F2EB;
      font-weight: 600;
      letter-spacing: 0.01em;
      font-size: clamp(1.05rem, 2.2vw, 1.35rem);
      line-height: 1.25;
    }

    .premium-hero-list a:hover {
      color: #F5F2EB;
    }

    .premium-hero-list a:focus-visible {
      outline: 2px solid rgba(var(--color-primary), 0.9);
      outline-offset: 4px;
      border-radius: 10px;
    }

    /* Hero: mobile-first safe sizing (prevents text being clipped under fixed header) */
    .hero {
      min-height: 100svh;
      padding-top: calc(var(--header-offset) + env(safe-area-inset-top));
      padding-bottom: 2rem;
    }

    @media (min-width: 768px) {
      .hero {
        padding-top: calc(var(--header-offset) + 1.5rem);
        padding-bottom: 0;
      }
    }

    .whitespace-nowrap {
      white-space: nowrap;
    }

    .whitespace-normal {
      white-space: normal;
    }

    /* Word breaking */
    .break-all {
      word-break: break-all;
    }

    .break-words {
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .text-left {
      text-align: left;
    }

    .text-center {
      text-align: center;
    }

    .font-medium {
      font-weight: 500;
    }

    .font-semibold {
      font-weight: 600;
    }

    .font-bold {
      font-weight: 700;
    }

    .uppercase {
      text-transform: uppercase;
    }

    .italic {
      font-style: italic;
    }

    .leading-tight {
      line-height: 1.1;
    }

    .leading-relaxed {
      line-height: 1.6;
    }

    .rounded-full {
      border-radius: 9999px;
    }

    .rounded-lg {
      border-radius: 0.5rem;
    }

    .rounded-xl {
      border-radius: 0.75rem;
    }

    .rounded-2xl {
      border-radius: 1rem;
    }

    .rounded-3xl {
      border-radius: 1.5rem;
    }

    .border {
      border-width: 1px;
      border-style: solid;
    }

    .border-2 {
      border-width: 2px;
      border-style: solid;
    }

    .border-t {
      border-top-width: 1px;
      border-top-style: solid;
    }

    .border-l-4 {
      border-left-width: 4px;
      border-left-style: solid;
    }

    .border-white\/40 {
      border-color: rgba(255, 255, 255, 0.40);
    }

    .border-white\/70 {
      border-color: rgba(255, 255, 255, 0.70);
    }

    .border-primary {
      border-color: rgb(var(--color-primary));
    }

    .border-primary\/30 {
      border-color: rgba(var(--color-primary), 0.30);
    }

    .border-primary\/50 {
      border-color: rgba(var(--color-primary), 0.50);
    }

    .border-accent\/5 {
      border-color: rgba(var(--color-accent), 0.05);
    }

    .border-accent\/10 {
      border-color: rgba(var(--color-accent), 0.10);
    }

    /* Spacing */
    .px-3 {
      padding-left: 0.75rem;
      padding-right: 0.75rem;
    }

    .px-6 {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }

    .px-8 {
      padding-left: 2rem;
      padding-right: 2rem;
    }

    .px-10 {
      padding-left: 2.5rem;
      padding-right: 2.5rem;
    }

    .px-12 {
      padding-left: 3rem;
      padding-right: 3rem;
    }

    .py-2 {
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
    }

    .py-3 {
      padding-top: 0.75rem;
      padding-bottom: 0.75rem;
    }

    .py-4 {
      padding-top: 1rem;
      padding-bottom: 1rem;
    }

    .py-5 {
      padding-top: 1.25rem;
      padding-bottom: 1.25rem;
    }

    .py-6 {
      padding-top: 1.5rem;
      padding-bottom: 1.5rem;
    }

    .pt-6 {
      padding-top: 1.5rem;
    }

    .pb-0 {
      padding-bottom: 0;
    }

    .pb-6 {
      padding-bottom: 1.5rem;
    }

    .py-20 {
      padding-top: 5rem;
      padding-bottom: 5rem;
    }

    .py-24 {
      padding-top: 6rem;
      padding-bottom: 6rem;
    }

    .py-32 {
      padding-top: 8rem;
      padding-bottom: 8rem;
    }

    .p-2 {
      padding: 0.5rem;
    }

    .p-4 {
      padding: 1rem;
    }

    .p-6 {
      padding: 1.5rem;
    }

    .p-8 {
      padding: 2rem;
    }

    .mb-2 {
      margin-bottom: 0.5rem;
    }

    .mb-4 {
      margin-bottom: 1rem;
    }

    .mb-6 {
      margin-bottom: 1.5rem;
    }

    .mb-8 {
      margin-bottom: 2rem;
    }

    .mb-10 {
      margin-bottom: 2.5rem;
    }

    .mb-12 {
      margin-bottom: 3rem;
    }

    .mb-16 {
      margin-bottom: 4rem;
    }

    .mt-1 {
      margin-top: 0.25rem;
    }

    .mt-6 {
      margin-top: 1.5rem;
    }

    .mt-12 {
      margin-top: 3rem;
    }

    .mx-auto {
      margin-left: auto;
      margin-right: auto;
    }

    .mx-12 {
      margin-left: 3rem;
      margin-right: 3rem;
    }

    .space-x-4> :not([hidden])~ :not([hidden]) {
      margin-left: 1rem;
    }

    .space-x-8> :not([hidden])~ :not([hidden]) {
      margin-left: 2rem;
    }

    .space-y-4> :not([hidden])~ :not([hidden]) {
      margin-top: 1rem;
    }

    .space-y-6> :not([hidden])~ :not([hidden]) {
      margin-top: 1.5rem;
    }

    .space-y-8> :not([hidden])~ :not([hidden]) {
      margin-top: 2rem;
    }

    /* Grid */
    .grid-cols-1 {
      grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .gap-3 {
      gap: 0.75rem;
    }

    .gap-4 {
      gap: 1rem;
    }

    .gap-6 {
      gap: 1.5rem;
    }

    .gap-8 {
      gap: 2rem;
    }

    .gap-16 {
      gap: 4rem;
    }

    .gap-12 {
      gap: 3rem;
    }

    /* Max width */
    .max-w-full {
      max-width: 100%;
    }

    .max-w-md {
      max-width: 28rem;
    }

    .max-w-4xl {
      max-width: 56rem;
    }

    /* Min width */
    .min-w-0 {
      min-width: 0;
    }

    /* Text */
    .text-xs {
      font-size: 0.75rem;
      line-height: 1rem;
    }

    .text-sm {
      font-size: 0.875rem;
      line-height: 1.25rem;
    }

    .text-base {
      font-size: 1rem;
      line-height: 1.5rem;
    }

    .text-lg {
      font-size: 1.125rem;
      line-height: 1.75rem;
    }

    .text-xl {
      font-size: 1.25rem;
      line-height: 1.75rem;
    }

    .text-2xl {
      font-size: 1.5rem;
      line-height: 2rem;
    }

    .text-3xl {
      font-size: 1.875rem;
      line-height: 2.25rem;
    }

    .text-4xl {
      font-size: 2.25rem;
      line-height: 2.5rem;
    }

    .text-5xl {
      font-size: 3rem;
      line-height: 1;
    }

    .text-8xl {
      font-size: 6rem;
      line-height: 1;
    }

    .text-\[10px\] {
      font-size: 10px;
    }

    .tracking-wide {
      letter-spacing: 0.025em;
    }

    .tracking-widest {
      letter-spacing: 0.1em;
    }

    .tracking-\[0\.3em\] {
      letter-spacing: 0.3em;
    }

    .tracking-\[3px\] {
      letter-spacing: 3px;
    }

    .tracking-\[5px\] {
      letter-spacing: 5px;
    }

    .text-white {
      color: #fff;
    }

    .text-primary {
      color: rgb(var(--color-primary));
    }

    .text-yellow-400 {
      color: #FFD700;
    }

    .fill-current {
      fill: currentColor;
    }

    .text-primary\/60 {
      color: rgba(var(--color-primary), 0.6);
    }

    .text-primary\/80 {
      color: rgba(var(--color-primary), 0.8);
    }

    .text-accent\/80 {
      color: rgba(var(--color-accent), 0.8);
    }

    .text-accent\/60 {
      color: rgba(var(--color-accent), 0.6);
    }

    .text-accent\/50 {
      color: rgba(var(--color-accent), 0.5);
    }

    /* Background */
    .bg-transparent {
      background: transparent;
    }

    .bg-dark {
      background: rgb(var(--color-dark));
    }

    .bg-darker {
      background: rgb(var(--color-darker));
    }

    .bg-deepest {
      background: rgb(var(--color-deepest));
    }

    .bg-darker\/90 {
      background: rgba(var(--color-darker), 0.9);
    }

    .bg-darker\/60 {
      background: rgba(var(--color-darker), 0.6);
    }

    .bg-deepest\/80 {
      background: rgba(var(--color-deepest), 0.8);
    }

    .bg-primary {
      background: rgb(var(--color-primary));
    }

    .bg-secondary {
      background: rgb(var(--color-secondary));
    }

    .bg-primary\/10 {
      background: rgba(var(--color-primary), 0.10);
    }

    .bg-primary\/20 {
      background: rgba(var(--color-primary), 0.20);
    }

    .bg-secondary\/10 {
      background: rgba(var(--color-secondary), 0.10);
    }

    /* Effects */
    .shadow-lg {
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.25), 0 4px 6px -4px rgba(0, 0, 0, 0.25);
    }

    .shadow-xl {
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.25), 0 8px 10px -6px rgba(0, 0, 0, 0.25);
    }

    .shadow-2xl {
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    }

    .backdrop-blur-md {
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .blur-3xl {
      filter: blur(64px);
    }

    .grayscale {
      filter: grayscale(1);
    }

    .brightness-200 {
      filter: brightness(2);
    }

    /* Opacity */
    .opacity-0 {
      opacity: 0;
    }

    .opacity-40 {
      opacity: 0.4;
    }

    .opacity-50 {
      opacity: 0.5;
    }

    .opacity-90 {
      opacity: 0.9;
    }

    .opacity-100 {
      opacity: 1;
    }

    /* Transforms (Tailwind-like compositing) */
    .transform {
      --tw-translate-x: 0;
      --tw-translate-y: 0;
      --tw-rotate: 0;
      --tw-scale-x: 1;
      --tw-scale-y: 1;
      transform:
        translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    }

    .-translate-x-1\/2 {
      --tw-translate-x: -50%;
    }

    .-translate-y-1\/2 {
      --tw-translate-y: -50%;
    }

    .translate-x-2 {
      --tw-translate-x: 0.5rem;
    }

    .translate-x-12 {
      --tw-translate-x: 3rem;
    }

    .translate-y-1\/2 {
      --tw-translate-y: 50%;
    }

    .translate-y-4 {
      --tw-translate-y: 1rem;
    }

    .rotate-180 {
      --tw-rotate: 180deg;
    }

    .scale-105 {
      --tw-scale-x: 1.05;
      --tw-scale-y: 1.05;
    }

    .scale-110 {
      --tw-scale-x: 1.10;
      --tw-scale-y: 1.10;
    }

    /* Transition */
    .transition-all {
      transition: all 300ms ease;
    }

    .transition-colors {
      transition: color 300ms ease, background-color 300ms ease, border-color 300ms ease;
    }

    .transition-transform {
      transition: transform 300ms ease;
    }

    .transition-opacity {
      transition: opacity 300ms ease;
    }

    .duration-300 {
      transition-duration: 300ms;
    }

    .duration-500 {
      transition-duration: 500ms;
    }

    .duration-700 {
      transition-duration: 700ms;
    }

    /* Hover */
    .hover\:text-primary:hover {
      color: rgb(var(--color-primary));
    }

    .hover\:text-white:hover {
      color: #fff;
    }

    .hover\:bg-primary:hover {
      background: rgb(var(--color-primary));
    }

    .hover\:bg-secondary:hover {
      background: rgb(var(--color-secondary));
    }

    .hover\:opacity-100:hover {
      opacity: 1;
    }

    .hover\:opacity-40:hover {
      opacity: 0.4;
    }

    .hover\:grayscale-0:hover {
      filter: grayscale(0);
    }

    .hover\:border-primary\/30:hover {
      border-color: rgba(var(--color-primary), 0.30);
    }

    .hover\:border-primary\/50:hover {
      border-color: rgba(var(--color-primary), 0.50);
    }

    .hover\:border-white\/70:hover {
      border-color: rgba(255, 255, 255, 0.70);
    }

    /* Group hover */
    .group:hover .group-hover\:text-primary {
      color: rgb(var(--color-primary));
    }

    .group:hover .group-hover\:bg-primary {
      background: rgb(var(--color-primary));
    }

    .group:hover .group-hover\:text-white {
      color: #fff;
    }

    .group:hover .group-hover\:translate-x-2 {
      --tw-translate-x: 0.5rem;
    }

    .group:hover .group-hover\:translate-y-0 {
      --tw-translate-y: 0;
    }

    .group:hover .group-hover\:scale-110 {
      --tw-scale-x: 1.10;
      --tw-scale-y: 1.10;
    }

    .group:hover .group-hover\:opacity-100 {
      opacity: 1;
    }

    .group:hover .group-hover\:bg-transparent {
      background: transparent;
    }

    /* Misc */
    .focus\:outline-none:focus {
      outline: none;
    }

    .cursor-pointer {
      cursor: pointer;
    }

    .inline-block {
      display: inline-block;
    }

    .aspect-\[3\/4\] {
      aspect-ratio: 3 / 4;
    }

    /* Gradient helpers */
    .via-transparent {
      --tw-gradient-via: rgba(0, 0, 0, 0);
    }

    .to-transparent {
      --tw-gradient-to: rgba(0, 0, 0, 0);
    }

    .from-darker {
      --tw-gradient-from: rgb(var(--color-darker));
    }

    .bg-gradient-to-t {
      background-image: linear-gradient(to top,
          var(--tw-gradient-from, rgba(0, 0, 0, 0.85)),
          var(--tw-gradient-via, rgba(0, 0, 0, 0.25)),
          var(--tw-gradient-to, rgba(0, 0, 0, 0)));
    }

    /* Max height utilities used by accordion */
    .max-h-0 {
      max-height: 0;
    }

    .max-h-60 {
      max-height: 15rem;
    }

    /* Animations */
    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    .animate-fade-in {
      animation: fadeIn 200ms ease-out;
    }

    @keyframes bounce {

      0%,
      100% {
        transform: translate(-50%, -50%);
      }

      50% {
        transform: translate(-50%, calc(-50% - 12px));
      }
    }

    .animate-bounce {
      animation: bounce 1.5s infinite;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-slide-up {
      animation: slideUp 700ms ease-out both;
    }

    .animate-slide-up-delayed {
      animation: slideUp 900ms ease-out 120ms both;
    }

    /* Clients marquee */
    @keyframes scrollX {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    .animate-scroll {
      animation: scrollX 30s linear infinite;
    }

    .pause:hover {
      animation-play-state: paused;
    }

    .hover\:pause:hover {
      animation-play-state: paused;
    }

    /* Responsive (subset) */
    @media (min-width: 640px) {
      .sm\:grid {
        display: grid;
      }

      .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .sm\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .sm\:gap-4 {
        gap: 1rem;
      }

      .sm\:justify-items-center {
        justify-items: center;
      }

      .sm\:tracking-widest {
        letter-spacing: 0.1em;
      }

      .sm\:break-words {
        overflow-wrap: break-word;
        word-break: break-word;
      }
    }

    @media (min-width: 768px) {
      .md\:hidden {
        display: none;
      }

      .md\:flex {
        display: flex;
      }

      .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .md\:grid-cols-12 {
        grid-template-columns: repeat(12, minmax(0, 1fr));
      }

      .md\:col-span-6 {
        grid-column: span 6 / span 6;
      }

      .md\:col-span-3 {
        grid-column: span 3 / span 3;
      }

      .md\:gap-12 {
        gap: 3rem;
      }

      .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
      }

      .md\:text-5xl {
        font-size: 3rem;
        line-height: 1;
      }

      .md\:text-8xl {
        font-size: 6rem;
        line-height: 1;
      }

      .md\:text-base {
        font-size: 1rem;
        line-height: 1.5rem;
      }

      .md\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
      }

      .md\:h-12 {
        height: 3rem;
      }

      .md\:flex-row {
        flex-direction: row;
      }

      .md\:items-end {
        align-items: flex-end;
      }
    }

    @media (min-width: 1024px) {
      .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .lg\:grid-cols-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
      }

      .lg\:block {
        display: block;
      }
    }

    /* Custom typefaces used in source; we approximate without external fonts */
    .font-sans {
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
    }

    .font-display {
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
      letter-spacing: 0.06em;
    }

    /* Small helpers not in Tailwind subset */
    .pointer-events-none {
      pointer-events: none;
    }

    /* Header state */
    header[data-scrolled="true"] {
      background: rgba(var(--color-darker), 0.9);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.25), 0 4px 6px -4px rgba(0, 0, 0, 0.25);
      padding-top: 1rem;
      padding-bottom: 1rem;
    }

    header[data-scrolled="false"] {
      background: transparent;
      padding-top: 1.5rem;
      padding-bottom: 1.5rem;
    }

    /* Hide mobile menu by default (JS toggles) */
    #mobileMenu[aria-hidden="true"] {
      display: none;
    }

    /* Services accordion fallback (JS toggles) */
    .service-content {
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition: max-height 500ms ease, opacity 500ms ease;
    }

    .service-item.is-active .service-content {
      max-height: 15rem;
      opacity: 1;
    }

/* --- ABOUT SLIDER RESPONSIVE --- */
    .about-mobile-img-slider {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 2rem;
    }

    .about-main-img {
      width: 100%;
      height: auto;
      max-width: 480px;
      border-radius: 1rem;
      margin-bottom: 1rem;
      object-fit: cover;
    }

    .about-slider-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 480px;
      position: relative;
    }

    .about-slider-btn {
      background: rgba(14, 181, 164, 0.85);
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 2.5rem;
      height: 2.5rem;
      font-size: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 2;
      transition: background 0.2s;
    }

    .about-slider-btn:hover {
      background: rgba(14, 181, 164, 1);
    }

    .about-slider-track {
      flex: 1 1 0%;
      overflow: hidden;
      position: relative;
      min-height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .about-slider-img {
      width: 100%;
      height: auto;
      max-height: 220px;
      object-fit: contain;
      border-radius: 0.75rem;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }

    /* Hide slider on desktop, show grid as before */
    @media (min-width: 769px) {
      .about-mobile-img-slider {
        display: none !important;
      }
    }

    @media (max-width: 768px) {

      /* Hide grid gambar desktop, show slider only */
      #whyUsCardGrid {
        display: none !important;
      }

      .about-mobile-img-slider {
        display: flex !important;
      }
    }

/* Ensure all slider images are the same size and aspect ratio */
    .ti-slider-images {
      min-width: 510px;
      max-width: 510px;
      display: flex;
      gap: 0.5rem;
      justify-content: center;
      align-items: center;
    }

    .ti-slider-images .ti-review-item {
      width: 170px;
      height: 192px;
      border-radius: 12px;
      border: 2px solid #e5e7eb;
      overflow: hidden;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ti-slider-images .ti-review-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

/*
      Embedded copy of webex-about styles.
      Scoped to .webex-about-embed to avoid affecting the rest of the homepage.
    */

    .webex-about-embed {
      --bg: #111A28;
      --panel: #1C2A3C;
      --accent: #0eb5a4;
      --accentHover: #0fa597;
      --text: #EDF6F3;
      --slate-200: #e2e8f0;
      --slate-300: #cbd5e1;
      --slate-400: #94a3b8;
      --slate-500: #64748b;
      --slate-700: #334155;
      --slate-800: #1f2937;
      --slate-900: #0f172a;

      color: var(--text);
    }

    /* Utility: layout */
    .webex-about-embed .min-h-screen {
      min-height: 100vh;
    }

    .webex-about-embed .h-full {
      height: 100%;
    }

    .webex-about-embed .h-20 {
      height: 5rem;
    }

    .webex-about-embed .h-10 {
      height: 2.5rem;
    }

    .webex-about-embed .h-12 {
      height: 3rem;
    }

    .webex-about-embed .h-\[80vh\] {
      height: 80vh;
    }

    .webex-about-embed .h-\[500px\] {
      height: 500px;
    }

    .webex-about-embed .h-auto {
      height: auto;
    }

    .webex-about-embed .w-full {
      width: 100%;
    }

    .webex-about-embed .w-auto {
      width: auto;
    }

    .webex-about-embed .w-16 {
      width: 4rem;
    }

    .webex-about-embed .w-48 {
      width: 12rem;
    }

    .webex-about-embed .w-80 {
      width: 20rem;
    }

    .webex-about-embed .max-w-\[80\%\] {
      max-width: 80%;
    }

    .webex-about-embed .max-w-2xl {
      max-width: 42rem;
    }

    .webex-about-embed .max-w-3xl {
      max-width: 48rem;
    }

    .webex-about-embed .max-w-4xl {
      max-width: 56rem;
    }

    .webex-about-embed .max-w-7xl {
      max-width: 80rem;
    }

    .webex-about-embed .container {
      width: 100%;
      max-width: 80rem;
      margin-left: auto;
      margin-right: auto;
    }

    .webex-about-embed .mx-auto {
      margin-left: auto;
      margin-right: auto;
    }

    .webex-about-embed .flex {
      display: flex;
    }

    .webex-about-embed .grid {
      display: grid;
    }

    .webex-about-embed .block {
      display: block;
    }

    .webex-about-embed .hidden {
      display: none;
    }

    .webex-about-embed .inline-block {
      display: inline-block;
    }

    .webex-about-embed .inline-flex {
      display: inline-flex;
    }

    .webex-about-embed .flex-col {
      flex-direction: column;
    }

    .webex-about-embed .flex-grow {
      flex: 1 1 auto;
    }

    .webex-about-embed .flex-shrink-0 {
      flex-shrink: 0;
    }

    .webex-about-embed .items-center {
      align-items: center;
    }

    .webex-about-embed .items-start {
      align-items: flex-start;
    }

    .webex-about-embed .items-baseline {
      align-items: baseline;
    }

    .webex-about-embed .justify-between {
      justify-content: space-between;
    }

    .webex-about-embed .justify-center {
      justify-content: center;
    }

    .webex-about-embed .justify-end {
      justify-content: flex-end;
    }

    .webex-about-embed .justify-start {
      justify-content: flex-start;
    }

    .webex-about-embed .gap-2 {
      gap: .5rem;
    }

    .webex-about-embed .gap-3 {
      gap: .75rem;
    }

    .webex-about-embed .gap-8 {
      gap: 2rem;
    }

    .webex-about-embed .gap-12 {
      gap: 3rem;
    }

    .webex-about-embed .space-y-1>*+* {
      margin-top: .25rem;
    }

    .webex-about-embed .space-y-4>*+* {
      margin-top: 1rem;
    }

    .webex-about-embed .space-x-12>*+* {
      margin-left: 3rem;
    }

    .webex-about-embed .space-x-8>*+* {
      margin-left: 2rem;
    }

    .webex-about-embed .overflow-hidden {
      overflow: hidden;
    }

    .webex-about-embed .overflow-y-auto {
      overflow-y: auto;
    }

    /* Utility: position */
    .webex-about-embed .relative {
      position: relative;
    }

    .webex-about-embed .absolute {
      position: absolute;
    }

    .webex-about-embed .fixed {
      position: fixed;
    }

    .webex-about-embed .sticky {
      position: sticky;
    }

    .webex-about-embed .inset-0 {
      inset: 0;
    }

    .webex-about-embed .top-0 {
      top: 0;
    }

    .webex-about-embed .right-6 {
      right: 1.5rem;
    }

    .webex-about-embed .bottom-6 {
      bottom: 1.5rem;
    }

    .webex-about-embed .z-10 {
      z-index: 10;
    }

    .webex-about-embed .z-20 {
      z-index: 20;
    }

    .webex-about-embed .z-50 {
      z-index: 50;
    }

    .webex-about-embed .z-\[60\] {
      z-index: 60;
    }

    /* Utility: spacing */
    .webex-about-embed .p-1 {
      padding: .25rem;
    }

    .webex-about-embed .p-2 {
      padding: .5rem;
    }

    .webex-about-embed .p-3 {
      padding: .75rem;
    }

    .webex-about-embed .p-4 {
      padding: 1rem;
    }

    .webex-about-embed .p-6 {
      padding: 1.5rem;
    }

    .webex-about-embed .p-10 {
      padding: 2.5rem;
    }

    .webex-about-embed .px-2 {
      padding-left: .5rem;
      padding-right: .5rem;
    }

    .webex-about-embed .px-3 {
      padding-left: .75rem;
      padding-right: .75rem;
    }

    .webex-about-embed .px-4 {
      padding-left: 1rem;
      padding-right: 1rem;
    }

    .webex-about-embed .px-8 {
      padding-left: 2rem;
      padding-right: 2rem;
    }

    .webex-about-embed .py-2 {
      padding-top: .5rem;
      padding-bottom: .5rem;
    }

    .webex-about-embed .py-4 {
      padding-top: 1rem;
      padding-bottom: 1rem;
    }

    .webex-about-embed .py-20 {
      padding-top: 5rem;
      padding-bottom: 5rem;
    }

    .webex-about-embed .pt-2 {
      padding-top: .5rem;
    }

    .webex-about-embed .pt-20 {
      padding-top: 5rem;
    }

    .webex-about-embed .pb-3 {
      padding-bottom: .75rem;
    }

    .webex-about-embed .pb-10 {
      padding-bottom: 2.5rem;
    }

    .webex-about-embed .mb-2 {
      margin-bottom: .5rem;
    }

    .webex-about-embed .mb-4 {
      margin-bottom: 1rem;
    }

    .webex-about-embed .mb-6 {
      margin-bottom: 1.5rem;
    }

    .webex-about-embed .mb-8 {
      margin-bottom: 2rem;
    }

    .webex-about-embed .mb-10 {
      margin-bottom: 2.5rem;
    }

    .webex-about-embed .mb-12 {
      margin-bottom: 3rem;
    }

    .webex-about-embed .mb-16 {
      margin-bottom: 4rem;
    }

    .webex-about-embed .mb-20 {
      margin-bottom: 5rem;
    }

    .webex-about-embed .ml-10 {
      margin-left: 2.5rem;
    }

    .webex-about-embed .mt-4 {
      margin-top: 1rem;
    }

    .webex-about-embed .pr-2 {
      padding-right: .5rem;
    }

    /* Utility: typography */
    .webex-about-embed .text-center {
      text-align: center;
    }

    .webex-about-embed .text-sm {
      font-size: .875rem;
      line-height: 1.25rem;
    }

    .webex-about-embed .text-xs {
      font-size: .75rem;
      line-height: 1rem;
    }

    .webex-about-embed .text-base {
      font-size: 1rem;
      line-height: 1.5rem;
    }

    .webex-about-embed .text-lg {
      font-size: 1.125rem;
      line-height: 1.75rem;
    }

    .webex-about-embed .text-xl {
      font-size: 1.25rem;
      line-height: 1.75rem;
    }

    .webex-about-embed .text-2xl {
      font-size: 1.5rem;
      line-height: 2rem;
    }

    .webex-about-embed .text-3xl {
      font-size: 1.875rem;
      line-height: 2.25rem;
    }

    .webex-about-embed .text-4xl {
      font-size: 2.25rem;
      line-height: 2.5rem;
    }

    .webex-about-embed .text-5xl {
      font-size: 3rem;
      line-height: 1;
    }

    .webex-about-embed .text-8xl {
      font-size: 6rem;
      line-height: 1;
    }

    .webex-about-embed .font-medium {
      font-weight: 500;
    }

    .webex-about-embed .font-semibold {
      font-weight: 600;
    }

    .webex-about-embed .leading-tight {
      line-height: 1.1;
    }

    .webex-about-embed .leading-relaxed {
      line-height: 1.625;
    }

    .webex-about-embed .uppercase {
      text-transform: uppercase;
    }

    .webex-about-embed .tracking-widest {
      letter-spacing: .18em;
    }

    .webex-about-embed .text-white {
      color: #fff;
    }

    .webex-about-embed .text-slate-200 {
      color: var(--slate-200);
    }

    .webex-about-embed .text-slate-300 {
      color: var(--slate-300);
    }

    .webex-about-embed .text-slate-400 {
      color: var(--slate-400);
    }

    .webex-about-embed .text-slate-500 {
      color: var(--slate-500);
    }

    .webex-about-embed .text-\[\#0eb5a4\] {
      color: var(--accent);
    }

    .webex-about-embed .font-zen {
      font-family: ui-sans-serif, system-ui, "Segoe UI", Arial;
      text-transform: uppercase;
      letter-spacing: .14em;
    }

    /* Utility: backgrounds, borders, effects */
    .webex-about-embed .bg-\[\#111A28\] {
      background: var(--bg);
    }

    .webex-about-embed .bg-\[\#1C2A3C\] {
      background: var(--panel);
    }

    .webex-about-embed .bg-slate-900\/50 {
      background: rgba(15, 23, 42, .5);
    }

    .webex-about-embed .bg-slate-900\/60 {
      background: rgba(15, 23, 42, .6);
    }

    .webex-about-embed .bg-slate-800 {
      background: var(--slate-800);
    }

    .webex-about-embed .bg-\[\#0eb5a4\] {
      background: var(--accent);
    }

    .webex-about-embed .bg-\[\#0fa597\] {
      background: var(--accentHover);
    }

    .webex-about-embed .bg-\[\#0eb5a4\]\/20 {
      background: rgba(14, 181, 164, .2);
    }

    .webex-about-embed .bg-\[\#111A28\]\/50 {
      background: rgba(17, 26, 40, .5);
    }

    .webex-about-embed .bg-\[\#111A28\]\/80 {
      background: rgba(17, 26, 40, .8);
    }

    .webex-about-embed .border {
      border-width: 1px;
      border-style: solid;
    }

    .webex-about-embed .border-b {
      border-bottom-width: 1px;
      border-bottom-style: solid;
    }

    .webex-about-embed .border-t {
      border-top-width: 1px;
      border-top-style: solid;
    }

    .webex-about-embed .border-slate-700 {
      border-color: var(--slate-700);
    }

    .webex-about-embed .border-slate-800 {
      border-color: rgba(30, 41, 59, 1);
    }

    .webex-about-embed .border-slate-700\/50 {
      border-color: rgba(51, 65, 85, .5);
    }

    .webex-about-embed .rounded {
      border-radius: .25rem;
    }

    .webex-about-embed .rounded-md {
      border-radius: .375rem;
    }

    .webex-about-embed .rounded-lg {
      border-radius: .5rem;
    }

    .webex-about-embed .rounded-xl {
      border-radius: .75rem;
    }

    .webex-about-embed .rounded-2xl {
      border-radius: 1rem;
    }

    .webex-about-embed .rounded-3xl {
      border-radius: 1.5rem;
    }

    .webex-about-embed .rounded-full {
      border-radius: 9999px;
    }

    .webex-about-embed .rounded-tr-none {
      border-top-right-radius: 0;
    }

    .webex-about-embed .rounded-tl-none {
      border-top-left-radius: 0;
    }

    .webex-about-embed .shadow-2xl {
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .55);
    }

    .webex-about-embed .backdrop-blur-md {
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    /* Utility: transforms, transitions */
    .webex-about-embed .transition-all {
      transition: all .25s ease;
    }

    .webex-about-embed .transition-colors {
      transition: color .2s ease, background-color .2s ease, border-color .2s ease;
    }

    .webex-about-embed .transition-transform {
      transition: transform .25s ease;
    }

    .webex-about-embed .duration-300 {
      transition-duration: .3s;
    }

    .webex-about-embed .transform {
      transform: translateZ(0);
    }

    .webex-about-embed .hover\:scale-105:hover {
      transform: scale(1.05);
    }

    .webex-about-embed .hover\:scale-110:hover {
      transform: scale(1.10);
    }

    .webex-about-embed .hover\:bg-slate-800:hover {
      background: var(--slate-800);
    }

    .webex-about-embed .hover\:bg-slate-900\/50:hover {
      background: rgba(15, 23, 42, .5);
    }

    .webex-about-embed .hover\:bg-\[\#0fa597\]:hover {
      background: var(--accentHover);
    }

    .webex-about-embed .group:hover .group-hover\:scale-110 {
      transform: scale(1.10);
    }

    .webex-about-embed .group:hover .group-hover\:inline {
      display: inline;
    }

    .webex-about-embed .opacity-70 {
      opacity: .7;
    }

    .webex-about-embed .opacity-100 {
      opacity: 1;
    }

    .webex-about-embed .opacity-0 {
      opacity: 0;
    }

    .webex-about-embed .hover\:opacity-100:hover {
      opacity: 1;
    }

    .webex-about-embed .grayscale {
      filter: grayscale(1);
    }

    .webex-about-embed .hover\:grayscale-0:hover {
      filter: grayscale(0);
    }

    /* Utility: misc */
    .webex-about-embed .object-cover {
      object-fit: cover;
    }

    .webex-about-embed .focus\:outline-none:focus {
      outline: none;
    }

    .webex-about-embed .focus\:border-\[\#0eb5a4\]:focus {
      border-color: var(--accent);
    }

    .webex-about-embed .disabled\:opacity-50:disabled {
      opacity: .5;
      cursor: not-allowed;
    }

    /* Responsive variants used */
    @media (min-width: 768px) {
      .webex-about-embed .md\:block {
        display: block;
      }

      .webex-about-embed .md\:hidden {
        display: none;
      }

      .webex-about-embed .md\:w-1\/2 {
        width: 50%;
      }

      .webex-about-embed .md\:w-96 {
        width: 24rem;
      }

      .webex-about-embed .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .webex-about-embed .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .webex-about-embed .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .webex-about-embed .md\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
      }

      .webex-about-embed .md\:text-5xl {
        font-size: 3rem;
        line-height: 1;
      }

      .webex-about-embed .md\:text-8xl {
        font-size: 6rem;
        line-height: 1;
      }
    }

    /* Components / page-specific */
    .webex-about-embed .nav-link {
      color: #fff;
      text-decoration: none;
    }

    .webex-about-embed .nav-link:hover {
      color: var(--accent);
    }

    .webex-about-embed .btn {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      text-decoration: none;
      border: 0;
      cursor: pointer;
    }

    .webex-about-embed .btn-primary {
      background: var(--accent);
      color: #fff;
    }

    .webex-about-embed .btn-primary:hover {
      background: var(--accentHover);
    }

    .webex-about-embed .hero-overlay-1 {
      background: rgba(15, 23, 42, .6);
    }

    .webex-about-embed .hero-overlay-2 {
      background: linear-gradient(to right, var(--bg), transparent);
    }

    .webex-about-embed .bg-gradient-to-t {
      background: linear-gradient(to top, var(--bg), transparent);
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .webex-about-embed .animate-fadeIn-1 {
      animation: fadeIn .8s ease-out forwards;
    }

    .webex-about-embed .animate-fadeIn-2 {
      animation: fadeIn 1s ease-out .2s forwards;
    }

    .webex-about-embed .animate-fadeIn-3 {
      animation: fadeIn 1s ease-out .4s forwards;
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(calc(-50% - 24px));
      }
    }

    .webex-about-embed .animate-scroll {
      animation: scroll 30s linear infinite;
    }

    .webex-about-embed .animate-scroll:hover {
      animation-play-state: paused;
    }

    /* Reduce motion */
    @media (prefers-reduced-motion: reduce) {

      .webex-about-embed .animate-scroll,
      .webex-about-embed .animate-fadeIn-1,
      .webex-about-embed .animate-fadeIn-2,
      .webex-about-embed .animate-fadeIn-3 {
        animation: none !important;
      }

      .webex-about-embed .transition-all,
      .webex-about-embed .transition-colors,
      .webex-about-embed .transition-transform {
        transition: none !important;
      }


      /* Samakan perilaku <a> dan <div> */
      .premium-card-item {
        display: block;
        font-size: 1rem;
        line-height: 1.5;
        font-weight: inherit;
        color: inherit;
      }

      /* Matikan SEMUA pengaruh default <a> */
      .premium-card-item,
      .premium-card-item:link,
      .premium-card-item:visited,
      .premium-card-item:hover,
      .premium-card-item:active {
        font-size: 1rem;
        line-height: 1.5;
        text-decoration: none;
        color: inherit;
      }

      /* Teks inti (opsional tapi aman) */
      .premium-card-text {
        font-size: inherit;
        line-height: inherit;
        font-weight: inherit;
      }


    }

/* Responsive video container to match text height */
    .video-responsive {
      position: relative;
      width: 100%;
      min-height: 320px;
      display: flex;
      align-items: stretch;
      /* Height will be set by JS for desktop, fallback for mobile */
    }

    .video-responsive iframe {
      width: 100%;
      height: 100%;
      display: block;
    }

    @media (max-width: 767px) {
      .video-responsive {
        min-height: 220px;
        height: 220px !important;
      }
    }

    /* --- PORTFOLIO GRID VISIBILITY FIX --- */
    /* Ensure #whyUsCardGrid is always visible and grid */
    #whyUsCardGrid {
      display: grid !important;
      grid-template-columns: repeat(1, minmax(0, 1fr));
      gap: 1.5rem;
    }

    @media (min-width: 640px) {
      #whyUsCardGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (min-width: 768px) {
      #whyUsCardGrid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }

    /* Responsive image in portfolio */
    .portfolio-img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

.whatsapp-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 9999;
      background-color: #25D366;
      color: white;
      padding: 16px;
      border-radius: 50%;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
      text-decoration: none;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      background-color: #20bd5a;
    }

    /* Scroll to Top Button */
    .scroll-to-top {
      position: fixed;
      bottom: 100px;
      right: 24px;
      z-index: 9998;
      background-color: transparent;
      color: rgba(255, 255, 255, 0.3);
      width: auto;
      height: auto;
      padding: 10px;
      border-radius: 0;
      box-shadow: none;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      cursor: pointer;
    }

    .scroll-to-top.is-visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .scroll-to-top:hover {
      background-color: transparent;
      color: #0eb5a4;
      transform: translateY(-5px);
    }

