      :root {
        --bg: #0f0f1b;
        --bg2: rgba(20, 20, 35, 0.65);
        --bg3: rgba(30, 30, 50, 0.85);
        --accent: #ff6708;
        --accent2: #ffd700;
        --text: #e2e8f0;
        --text2: #94a3b8;
        --border: rgba(255, 255, 255, 0.08);
        --green: #10b981;
        --blue: #38bdf8;
        --gold: #ffd700;
        --red: #ef4444;
      }
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html,
      body {
        overflow-x: hidden;
      }
      body {
        font-family:
          "Outfit",
          "Segoe UI",
          system-ui,
          -apple-system,
          sans-serif;
        background-image: url("/bgClient.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-color: #0f0f1b;
        color: var(--text);
        line-height: 1.7;
      }
      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        font-family: "Montserrat", "Outfit", sans-serif;
      }
      a {
        color: var(--accent);
        text-decoration: none;
      }
      a:hover {
        text-decoration: none;
      }

      /* Header Styles - Matching React TopBar */
      .site-header {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        background-color: rgba(10, 10, 15, 0.92);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        z-index: 99999;
        transition: all 0.3s ease;
      }
      .header-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px;
        position: relative;
      }
      .logo img {
        height: 50px;
        transition: height 0.3s ease;
        display: block;
      }
      .header-nav {
        display: flex;
        align-items: center;
        gap: 24px;
      }
      .header-nav a {
        text-decoration: none;
        color: rgba(255, 255, 255, 0.8) !important;
        font-family: "Roboto", sans-serif;
        font-weight: 700;
        font-size: 0.92rem;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        padding: 8px 10px;
        transition: all 0.3s ease;
        position: relative;
        white-space: nowrap;
      }
      .header-nav a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: #ff6708;
        transition: all 0.3s ease;
        transform: translateX(-50%);
      }
      .header-nav a:hover {
        color: #fff !important;
      }
      .header-nav a:hover::after {
        width: 70%;
      }
      .header-nav a.btn-admin {
        border: 1.5px solid #ff6708 !important;
        border-radius: 4px;
        background: rgba(255, 103, 8, 0.05) !important;
        padding: 8px 18px;
        color: #fff !important;
      }
      .header-nav a.btn-admin::after {
        display: none;
      }
      .header-nav a.btn-admin:hover {
        background: #ff6708 !important;
        box-shadow: 0 0 15px rgba(255, 103, 8, 0.4);
        color: #fff !important;
      }

      /* Mobile styles for checkbox-hack hamburger menu */
      .mobile-menu-btn {
        display: none;
        flex-direction: column;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.08);
        border: 1.5px solid rgba(255, 255, 255, 0.18);
        border-radius: 8px;
        cursor: pointer;
        padding: 5px;
        align-items: center;
        gap: 4px;
        z-index: 1000;
      }
      .mobile-menu-btn span {
        width: 20px;
        height: 2.5px;
        background-color: #fff;
        transition: all 0.3s ease;
        border-radius: 2px;
      }
      .mobile-menu-close-btn {
        display: none;
      }
      .mobile-menu-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 999998;
      }
      .menu-toggle-checkbox:checked ~ .mobile-menu-overlay {
        display: block;
      }

      @media (max-width: 992px) {
        .mobile-menu-btn {
          display: flex;
        }
        .header-nav {
          position: fixed;
          top: 0;
          right: 0;
          width: 280px;
          height: 100vh;
          background-color: #111118;
          box-shadow: -6px 0 40px rgba(0, 0, 0, 0.7);
          z-index: 999999;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          gap: 20px;
          transform: translateX(100%);
          transition: transform 0.3s ease;
          padding: 40px 20px;
        }
        .header-nav a {
          display: block;
          width: 80%;
          text-align: center;
          font-size: 1.05rem;
          padding: 12px 0;
        }
        .header-nav a.btn-admin {
          width: 80%;
          box-sizing: border-box;
        }
        .mobile-menu-close-btn {
          display: flex;
          position: absolute;
          top: 14px;
          right: 14px;
          background: rgba(255, 255, 255, 0.05);
          border: 1px solid rgba(255, 255, 255, 0.12);
          border-radius: 50%;
          width: 36px;
          height: 36px;
          color: #888;
          font-size: 1rem;
          cursor: pointer;
          align-items: center;
          justify-content: center;
          transition: all 0.2s ease;
        }
        .mobile-menu-close-btn:hover {
          background: rgba(255, 255, 255, 0.1);
          color: #fff;
        }
        .menu-toggle-checkbox:checked ~ .header-nav {
          transform: translateX(0);
        }
      }

      /* BREADCRUMB */
      .breadcrumb {
        background: var(--bg2);
        border-bottom: 1px solid var(--border);
        padding: 0.6rem 0;
      }
      .breadcrumb-inner {
        max-width: 960px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.82rem;
        color: var(--text2);
      }
      .breadcrumb-inner a {
        color: var(--text2);
      }
      .breadcrumb-inner a:hover {
        color: var(--accent);
      }
      .breadcrumb-sep {
        color: var(--border);
      }
      .breadcrumb-current {
        color: var(--text);
      }

      /* HERO */
      .hero {
        background: linear-gradient(
          135deg,
          rgba(15, 15, 27, 0.8) 0%,
          rgba(26, 10, 0, 0.8) 50%,
          rgba(15, 15, 27, 0.8) 100%
        );
        text-align: center;
        padding: 8.5rem 1.5rem 4.5rem;
        border-bottom: 1px solid var(--border);
        position: relative;
        overflow: hidden;
      }
      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse at 50% 0%,
          rgba(255, 103, 8, 0.18) 0%,
          transparent 70%
        );
      }
      .hero h1 {
        font-size: clamp(2rem, 4.2vw, 2.7rem);
        font-weight: 800;
        color: var(--text);
        margin-bottom: 1rem;
        position: relative;
      }
      .hero h1 span {
        color: var(--accent);
      }
      .hero p {
        color: var(--text2);
        font-size: 1.1rem;
        max-width: 640px;
        margin: 0 auto 1.75rem;
        position: relative;
      }
      .hero-cta {
        display: inline-flex;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
      }
      .btn {
        padding: 0.75rem 2rem;
        border-radius: 8px;
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        font-size: 0.95rem;
        cursor: pointer;
        transition: all 0.2s;
        border: none;
        display: inline-block;
      }
      .btn-primary {
        background: var(--accent);
        color: #fff;
      }
      .btn-primary:hover {
        background: var(--accent2);
        transform: translateY(-2px);
        color: #fff;
      }
      .btn-outline {
        background: transparent;
        color: var(--text);
        border: 1px solid var(--border);
      }
      .btn-outline:hover {
        border-color: var(--accent);
        color: var(--accent);
      }

      /* BADGES */
      .badges {
        display: flex;
        gap: 0.75rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 1.75rem;
      }
      .badge {
        background: var(--bg3);
        border: 1px solid var(--border);
        padding: 0.3rem 0.9rem;
        border-radius: 100px;
        font-size: 0.8rem;
        color: var(--text2);
      }
      .badge.green {
        border-color: var(--green);
        color: var(--green);
      }
      .badge.orange {
        border-color: var(--accent);
        color: var(--accent);
      }
      .badge.blue {
        border-color: var(--blue);
        color: var(--blue);
      }

      /* TRUST STRIP */
      .trust-strip {
        background: var(--bg2);
        border-bottom: 1px solid var(--border);
        padding: 0.9rem 0;
      }
      .trust-inner {
        max-width: 960px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
      }
      .trust-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.85rem;
        color: var(--text2);
      }
      .trust-item strong {
        color: var(--text);
      }

      /* CONTAINER */
      .container {
        max-width: 1000px;
        margin: 30px auto;
        padding: 40px 32px !important;
        background: rgba(10, 10, 18, 0.85) !important;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px !important;
      }
      @media (max-width: 768px) {
        .container {
          padding: 24px 16px !important;
          margin: 15px auto !important;
          border-radius: 12px !important;
        }
      }
      p a {
        color: #ff6708 !important;
        font-weight: 600;
        text-decoration: none;
      }
      p a:hover {
        color: #ff8533 !important;
        text-decoration: underline !important;
      }

      /* SECTION */
      section {
        padding: 3.5rem 0;
        border-bottom: 1px solid var(--border);
      }
      section:last-child {
        border-bottom: none;
      }
      .section-title {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
      }
      .section-title span {
        color: var(--accent);
      }
      .section-sub {
        color: var(--text2);
        margin-bottom: 2rem;
      }

      /* PRICE TABLE */
      .price-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
        gap: 1.25rem;
      }
      .price-card {
        border-radius: 12px;
        padding: 1.5rem;
        transition:
          border-color 0.2s,
          transform 0.2s;
        position: relative;
      }
      .price-card:hover {
        border-color: var(--accent);
        transform: translateY(-4px);
      }
      .price-card.featured {
        border-color: var(--accent);
      }
      .price-card .best-badge {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--accent);
        color: #fff;
        font-size: 0.7rem;
        font-weight: 700;
        padding: 0.2rem 0.8rem;
        border-radius: 100px;
        white-space: nowrap;
      }
      .price-card .tag {
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--accent);
        background: rgba(255, 103, 8, 0.12);
        padding: 0.2rem 0.7rem;
        border-radius: 100px;
        display: inline-block;
        margin-bottom: 0.75rem;
      }
      .price-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
      }
      .price-card .price {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--accent);
        margin-bottom: 0.75rem;
      }
      .price-card .price span {
        font-size: 1rem;
        font-weight: 400;
        color: var(--text2);
      }
      .price-card ul {
        list-style: none;
      }
      .price-card ul li {
        font-size: 0.9rem;
        color: var(--text2);
        padding: 0.3rem 0;
        border-bottom: 1px solid var(--border);
      }
      .price-card ul li:last-child {
        border-bottom: none;
      }
      .price-card ul li::before {
        content: "✓ ";
        color: var(--green);
        font-weight: 700;
      }
      .price-card .cta-btn {
        display: block;
        text-align: center;
        margin-top: 1.25rem;
        background: var(--bg3);
        border: 1px solid var(--border);
        color: var(--text);
        padding: 0.6rem;
        border-radius: 8px;
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.2s;
      }
      .price-card .cta-btn:hover {
        background: var(--accent);
        border-color: var(--accent);
        color: #fff;
      }
      .price-card.featured .cta-btn {
        background: var(--accent);
        border-color: var(--accent);
        color: #fff;
      }
      .price-card.featured .cta-btn:hover {
        background: var(--accent2);
        border-color: var(--accent2);
      }

      /* CONTENT SEO */
      .content-block {
        border-radius: 12px;
        padding: 2rem;
      }
      .content-block h2 {
        font-size: 1.35rem;
        color: var(--accent);
        margin-bottom: 1rem;
      }
      .content-block h3 {
        font-size: 1.1rem;
        margin: 1.75rem 0 0.6rem;
        color: var(--text);
      }
      .content-block p {
        color: var(--text2);
        margin-bottom: 0.85rem;
      }
      .content-block strong {
        color: var(--text);
      }
      .content-block ul {
        list-style: none;
        margin: 0.5rem 0 1rem 0;
      }
      .content-block ul li {
        color: var(--text2);
        padding: 0.3rem 0;
      }
      .content-block ul li::before {
        content: "✓ ";
        color: var(--green);
        font-weight: 700;
      }
      .content-block a {
        color: var(--accent);
      }

      /* STEPS */
      .steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
      }
      .step-card {
        border-radius: 12px;
        padding: 1.5rem;
        text-align: center;
        position: relative;
      }
      .step-num {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 103, 8, 0.15);
        border: 2px solid var(--accent);
        color: var(--accent);
        font-weight: 800;
        font-size: 1.1rem;
        margin-bottom: 1rem;
      }
      .step-card h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
      }
      .step-card p {
        font-size: 0.88rem;
        color: var(--text2);
      }

      /* COMPARE TABLE */
      .compare-table {
        width: 100%;
        border-collapse: collapse;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(15, 15, 27, 0.94) !important;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
      }
      .compare-table th {
        background: rgba(30, 30, 50, 0.95);
        padding: 0.9rem 1rem;
        text-align: left;
        font-size: 0.85rem;
        color: var(--text2);
        font-weight: 600;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }
      .compare-table th:first-child {
        width: 40%;
      }
      .compare-table td {
        padding: 0.85rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 0.9rem;
        vertical-align: top;
        color: #ffffff !important;
      }
      .compare-table tr:last-child td {
        border-bottom: none;
      }
      .compare-table tr:nth-child(even) td {
        background: rgba(20, 20, 35, 0.35);
      }
      .compare-table tr:nth-child(odd) td {
        background: rgba(10, 10, 15, 0.35);
      }
      .compare-table .col-label {
        color: var(--text2);
        font-weight: 500;
      }
      .compare-table .col-rent {
        color: var(--green);
        font-weight: 600;
      }
      .compare-table .col-buy {
        color: var(--text2);
      }

      /* WHY GRID */
      .why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
      }
      .why-card {
        border-radius: 12px;
        padding: 1.5rem;
        text-align: center;
      }
      .why-card .icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
      }
      .why-card h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
      }
      .why-card p {
        font-size: 0.85rem;
        color: var(--text2);
      }

      /* FAQ */
      .faq-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }
      .faq-item {
        border-radius: 10px;
        overflow: hidden;
      }
      .faq-q {
        padding: 1rem 1.25rem;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        list-style: none;
      }
      .faq-q::after {
        content: "+";
        color: var(--accent);
        font-size: 1.25rem;
        flex-shrink: 0;
      }
      details[open] .faq-q::after {
        content: "−";
      }
      .faq-a {
        padding: 0 1.25rem 1rem;
        color: var(--text2);
        font-size: 0.95rem;
      }

      /* CONTACT */
      .contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
      }
      .contact-card {
        border-radius: 12px;
        padding: 1.25rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        transition:
          transform 0.3s ease,
          box-shadow 0.3s ease;
      }
      .contact-card:hover {
        transform: translateY(-4px);
        box-shadow:
          0 8px 30px rgba(255, 103, 8, 0.2),
          0 0 0 1px rgba(255, 103, 8, 0.35);
      }
      .contact-card .icon {
        font-size: 1.75rem;
      }
      .contact-card .label {
        font-size: 0.8rem;
        color: var(--text2);
      }
      .contact-card .value {
        font-weight: 600;
        font-size: 0.95rem;
      }

      /* CTA BANNER */
      .cta-banner {
        background: linear-gradient(
          135deg,
          rgba(255, 103, 8, 0.12) 0%,
          rgba(255, 103, 8, 0.05) 100%
        );
        border: 1px solid rgba(255, 103, 8, 0.3);
        border-radius: 16px;
        padding: 2.5rem;
        text-align: center;
        margin: 3.5rem 0;
      }
      .cta-banner h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
      }
      .cta-banner p {
        color: var(--text2);
        margin-bottom: 1.5rem;
      }
      .cta-banner .btns {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
      }

      /* Global Container Glassmorphism styles */
      .content-block,
      .stat-card,
      .review-card,
      .guarantee-card,
      .price-card,
      .compare-col,
      .step-card,
      .why-card,
      .faq-item,
      .sidebar-card,
      .sidebar-cta,
      .contact-card,
      .compare-table {
        background: rgba(15, 15, 27, 0.88) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px !important;
      }

      .contact-card,
      .why-card {
        padding: 24px 20px !important;
      }

      /* ===== FOOTER REDESIGN ===== */
      footer,
      .site-footer {
        background:
          radial-gradient(
            circle at 15% 20%,
            rgba(255, 103, 8, 0.04) 0%,
            transparent 50%
          ),
          linear-gradient(
            180deg,
            rgba(11, 11, 21, 0.97) 0%,
            rgba(5, 5, 10, 0.99) 100%
          ) !important;
        border-top: 1px solid rgba(255, 103, 8, 0.22) !important;
        padding: 0 !important;
        margin-top: 60px !important;
        color: #94a3b8 !important;
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        font-family:
          "Outfit",
          "Segoe UI",
          system-ui,
          -apple-system,
          sans-serif !important;
      }

      /* Isolate footer typography from index.css resets */
      .site-footer *,
      .site-footer div,
      .site-footer span,
      .site-footer p,
      .site-footer a {
        font-family:
          "Outfit",
          "Segoe UI",
          system-ui,
          -apple-system,
          sans-serif !important;
      }

      .site-footer .footer-col-title,
      .site-footer .footer-logo-text {
        font-family: "Montserrat", sans-serif !important;
      }

      /* Elegant Glowing Accent Line */
      .site-footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 1200px;
        height: 1.5px;
        background: linear-gradient(
          90deg,
          transparent 0%,
          rgba(255, 103, 8, 0.7) 50%,
          transparent 100%
        );
        filter: drop-shadow(0 0 5px rgba(255, 103, 8, 0.9));
      }

      .footer-top {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 24px 44px;
        display: grid;
        grid-template-columns: 1.5fr 0.9fr 1.6fr;
        gap: 48px;
      }

      /* Column Brand */
      .footer-col-brand .footer-logo-text {
        font-family: "Montserrat", sans-serif;
        font-size: 1.65rem;
        font-weight: 900;
        background: linear-gradient(90deg, #ff6708, #ffd700, #ff6708);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: 0.8px;
        margin-bottom: 12px;
        animation: footer-logo-shine 6s linear infinite;
      }
      @keyframes footer-logo-shine {
        0% {
          background-position: 0% center;
        }
        100% {
          background-position: 200% center;
        }
      }

      .footer-col-brand p {
        font-size: 0.9rem;
        color: #94a3b8;
        line-height: 1.75;
        margin-bottom: 24px;
        max-width: 320px;
      }

      /* Hotline Glossy Card */
      .footer-hotline {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        background: rgba(255, 103, 8, 0.05);
        border: 1px solid rgba(255, 103, 8, 0.25);
        border-radius: 14px;
        padding: 12px 20px;
        text-decoration: none !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow:
          0 4px 12px rgba(0, 0, 0, 0.15),
          inset 0 1px 0 rgba(255, 255, 255, 0.03);
      }
      .footer-hotline:hover {
        background: rgba(255, 103, 8, 0.1);
        border-color: rgba(255, 103, 8, 0.45);
        transform: translateY(-3px);
        box-shadow:
          0 8px 24px rgba(255, 103, 8, 0.2),
          inset 0 1px 0 rgba(255, 255, 255, 0.08);
      }

      .hl-icon-wrap {
        position: relative;
        width: 44px;
        height: 44px;
        background: linear-gradient(135deg, #ff6708, #ff8c3a);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        flex-shrink: 0;
        box-shadow: 0 4px 12px rgba(255, 103, 8, 0.35);
      }
      .hl-icon-wrap svg {
        display: block;
        transition: transform 0.3s;
        width: 20px;
        height: 20px;
        fill: currentColor;
      }
      .footer-hotline:hover .hl-icon-wrap svg {
        animation: footer-phone-shake 0.5s ease-in-out;
      }
      @keyframes footer-phone-shake {
        0%,
        100% {
          transform: rotate(0);
        }
        20%,
        60% {
          transform: rotate(-15deg);
        }
        40%,
        80% {
          transform: rotate(15deg);
        }
      }
      .hl-pulse {
        position: absolute;
        bottom: 1px;
        right: 1px;
        width: 10px;
        height: 10px;
        background: #10b981;
        border: 2px solid #ff7a22; /* Blends with bottom-right gradient color */
        border-radius: 50%;
        animation: hl-pulse-anim 2s infinite;
      }
      @keyframes hl-pulse-anim {
        0% {
          box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
        }
        70% {
          box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
        }
        100% {
          box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
        }
      }

      .hl-content {
        display: flex;
        flex-direction: column;
        gap: 2px;
      }
      .hl-label {
        font-size: 0.65rem;
        font-weight: 700;
        color: #64748b;
        letter-spacing: 1.2px;
        text-transform: uppercase;
      }
      .hl-number {
        font-size: 1.1rem;
        font-weight: 800;
        color: #ff6708 !important;
        letter-spacing: 0.5px;
        line-height: 1.2;
      }

      /* Footer Hours styling */
      .footer-working-hours {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 103, 8, 0.03);
        border: 1px solid rgba(255, 103, 8, 0.15);
        border-radius: 30px;
        padding: 6px 12px;
        font-size: 0.8rem;
        color: #cbd5e1;
        margin-bottom: 20px;
        transition: all 0.3s ease;
      }

      .footer-working-hours:hover {
        background: rgba(255, 103, 8, 0.06);
        border-color: rgba(255, 103, 8, 0.3);
        color: #f1f5f9;
      }

      .hours-emoji {
        font-size: 0.95rem;
        line-height: 1;
      }

      /* Navigation Columns */
      .footer-col-title {
        font-family: "Montserrat", sans-serif;
        font-size: 0.82rem;
        font-weight: 800;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #e2e8f0;
        margin-bottom: 24px;
        position: relative;
        display: inline-block;
      }
      .footer-col-title::after {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #ff6708, #ffd700);
        border-radius: 2px;
      }

      .footer-col-nav ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 14px;
      }
      .footer-col-nav ul li a {
        color: #94a3b8 !important;
        font-size: 0.95rem;
        text-decoration: none;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        display: inline-flex;
        align-items: center;
        font-weight: 700 !important;
        text-transform: none !important;
      }
      .footer-col-nav ul li a:hover {
        color: #ff6708 !important;
        transform: translateX(6px);
      }
      .footer-col-nav ul li a::before {
        content: "\2192";
        color: #ff6708;
        font-weight: bold;
        font-size: 0.8rem;
        opacity: 0;
        margin-right: 0px;
        transition: all 0.25s;
        width: 0;
        display: inline-block;
      }
      .footer-col-nav ul li a:hover::before {
        opacity: 1;
        width: auto;
        margin-right: 8px;
      }

      /* Social Section - 2x2 Grid Layout */
      .footer-social-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }
      .footer-social-link {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 16px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.06);
        text-decoration: none !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-transform: none !important;
      }
      .footer-social-link:hover {
        background: rgba(255, 255, 255, 0.05);
        transform: translateY(-2px);
      }
      .footer-social-link.zalo:hover {
        border-color: rgba(33, 150, 243, 0.4);
        box-shadow: 0 4px 20px rgba(33, 150, 243, 0.15);
      }
      .footer-social-link.fb:hover {
        border-color: rgba(0, 42, 180, 0.4);
        box-shadow: 0 4px 20px rgba(0, 42, 180, 0.15);
      }
      .footer-social-link.tiktok:hover {
        border-color: rgba(255, 255, 255, 0.35);
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
      }
      .footer-social-link.messenger:hover {
        border-color: rgba(255, 255, 255, 0.4);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      }

      .sl-icon {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: transform 0.3s;
        overflow: hidden;
      }
      .sl-icon img {
        max-width: 20px;
        max-height: 20px;
        display: block;
        object-fit: contain;
      }
      .sl-icon svg {
        display: block;
        width: 16px;
        height: 16px;
        fill: currentColor;
      }
      .footer-social-link:hover .sl-icon {
        transform: scale(1.1);
      }

      /* Matching the Floating Button Styling */
      .footer-social-link.zalo .sl-icon {
        background-color: #2196f3;
      }
      .footer-social-link.fb .sl-icon {
        background-color: rgb(0, 42, 180);
      }
      .footer-social-link.tiktok .sl-icon {
        background-color: #010101;
        color: #ffffff !important;
        border: 1px solid rgba(255, 255, 255, 0.15);
        filter: drop-shadow(1px 1px 0px #fe2c55)
          drop-shadow(-1px -1px 0px #25f4ee);
      }
      .footer-social-link.messenger .sl-icon {
        background-color: #ffffff;
      }

      .sl-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
      }
      .sl-name {
        font-size: 0.72rem;
        color: #64748b;
        font-weight: 700 !important;
        text-transform: none !important;
      }
      .sl-handle {
        font-size: 0.88rem;
        font-weight: 700 !important;
        color: #e2e8f0;
        text-transform: none !important;
      }

      /* Footer Bottom */
      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        padding: 22px 24px;
        background: rgba(4, 4, 8, 0.4);
      }
      .footer-bottom-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
      }
      .footer-bottom-inner span {
        font-size: 0.8rem;
        color: #475569;
      }
      .footer-bottom-inner .footer-tags {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
      }
      .footer-bottom-inner .footer-tags a {
        font-size: 0.8rem;
        color: #475569 !important;
        transition:
          color 0.2s,
          transform 0.2s;
        text-decoration: none;
        text-transform: uppercase !important;
        font-weight: 700 !important;
      }
      .footer-bottom-inner .footer-tags a:hover {
        color: #ff6708 !important;
        transform: translateY(-1px);
      }

      /* Responsive Adjustments */
      @media (max-width: 992px) {
        .footer-top {
          grid-template-columns: 1.2fr 1fr;
          gap: 36px;
        }
        .footer-col-social {
          grid-column: span 2;
        }
        .footer-social-links {
          grid-template-columns: repeat(4, 1fr);
        }
      }
      @media (max-width: 768px) {
        .footer-top {
          grid-template-columns: 1fr;
          gap: 40px;
          padding: 48px 20px 32px;
        }
        .footer-col-social {
          grid-column: auto;
        }
        .footer-col-brand p {
          max-width: 100%;
        }
        .footer-social-links {
          grid-template-columns: 1fr 1fr;
        }
        .footer-bottom-inner {
          flex-direction: column;
          text-align: center;
          gap: 16px;
        }
        .footer-bottom-inner .footer-tags {
          justify-content: center;
        }
      }
      @media (max-width: 480px) {
        .footer-social-links {
          grid-template-columns: 1fr;
        }
      }

      /* Floating Contact Buttons */
      #button-contact-vr {
        position: fixed;
        bottom: 40px;
        z-index: 99999;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .button-contact {
        position: relative;
      }
      .phone-vr {
        position: relative;
        visibility: visible;
        background-color: transparent;
        width: 50px;
        height: 50px;
        cursor: pointer;
        -webkit-backface-visibility: hidden;
        -webkit-transform: translateZ(0);
        display: block;
      }
      .phone-vr-circle-fill {
        width: 50px;
        height: 50px;
        top: 0;
        left: 0;
        position: absolute;
        border-radius: 50%;
        transition: all 0.5s;
        transform-origin: 50% 50%;
        animation: zoom 2s infinite;
      }
      #fb-vr .phone-vr-circle-fill {
        box-shadow: 0 0 0 0 #002ab4;
        background-color: rgba(0, 42, 180, 0.7);
      }
      #zalo-vr .phone-vr-circle-fill {
        box-shadow: 0 0 0 0 #2196f3;
        background-color: rgba(33, 150, 243, 0.7);
      }
      #messenger-vr .phone-vr-circle-fill {
        box-shadow: 0 0 0 0 #ffffff;
        background-color: rgba(255, 255, 255, 0.9);
      }
      .phone-vr-img-circle {
        width: 38px;
        height: 38px;
        top: 6px;
        left: 6px;
        position: absolute;
        border-radius: 50%;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      #fb-vr .phone-vr-img-circle {
        background-color: rgb(0, 42, 180);
      }
      #zalo-vr .phone-vr-img-circle {
        background-color: #2196f3;
      }
      #messenger-vr .phone-vr-img-circle {
        background-color: #ffffff;
      }
      .phone-vr-img-circle img {
        max-height: 20px;
        max-width: 20px;
        display: block;
        object-fit: contain;
      }
      .phone-vr-img-circle a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
      }
      @keyframes zoom {
        0% {
          transform: scale(0.9);
        }
        70% {
          transform: scale(1);
          box-shadow: 0 0 0 10px transparent;
        }
        100% {
          transform: scale(0.9);
          box-shadow: 0 0 0 0 transparent;
        }
      }
