
    :root {
      --color-primary: #f8f9fb;
      --color-secondary: #1c1c2e;
      --color-accent: #b8975a;
      --color-accent-light: #d4b483;
      --color-accent-gold: #c9a84c;
      --color-accent-gold-light: #e8c97a;
      --color-bg-dark: #0a0d1f;
      --color-bg-section: #0d1128;
      --color-card-bg: #111530;
      --color-card-border: rgba(201, 168, 76, 0.18);
      --color-border: #e8e2d9;
      --color-gold: #c9a96e;
      --color-muted: #7a7a9a;
      --color-star: rgba(201, 168, 76, 0.25);
      --color-text-muted: rgba(248, 249, 251, 0.6);
      --transition-speed: 0.45s;
    }

    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      margin: 0;
      padding: 0;
      background-color: var(--color-primary);
      color: var(--color-primary);
      overflow-x: hidden;
    }

    /* ── HEADER ── */
    #v3-header {
      width: 100%;
      z-index: 1050;
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

    #v3-header.sticky-active {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      box-shadow: 0 2px 16px rgba(28,28,46,0.10);
    }

    .v3-navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2rem;
      height: 72px;
      position: relative;
    }

    /* ── LOGO ── */
    .v3-logo-wrap {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      text-decoration: none;
      flex-shrink: 0;
    }

    .v3-logo-wrap img {
      height: 60px;
      width: auto;
      object-fit: contain;
    }

    .v3-brand-name {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--color-secondary);
      letter-spacing: 0.01em;
      white-space: nowrap;
    }

    /* ── DESKTOP NAV ── */
    .v3-nav-desktop {
      display: flex;
      align-items: center;
      gap: 0.15rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .v3-nav-desktop > li {
      position: relative;
    }

    .v3-nav-desktop > li > a,
    .v3-nav-desktop > li > button.v3-dropdown-toggle {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      padding: 0.45rem 0.75rem;
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--color-secondary);
      text-decoration: none;
      background: none;
      border: none;
      cursor: pointer;
      border-radius: 6px;
      transition: color 0.2s, background 0.2s;
      white-space: nowrap;
      font-family: 'DM Sans', sans-serif;
    }

    .v3-nav-desktop > li > a:hover,
    .v3-nav-desktop > li > button.v3-dropdown-toggle:hover {
      color: var(--color-accent);
      background: rgba(184,151,62,0.07);
    }

    .v3-nav-desktop > li > a.v3-active {
      color: var(--color-accent);
      font-weight: 600;
    }

    /* dropdown caret */
    .v3-caret {
      display: inline-block;
      width: 0;
      height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 5px solid currentColor;
      transition: transform 0.2s;
      flex-shrink: 0;
    }

    .v3-dropdown-toggle[aria-expanded="true"] .v3-caret {
      transform: rotate(180deg);
    }

    /* ── DROPDOWN MENU ── */
    .v3-dropdown-menu {
      display: none;
      position: absolute;
      top: calc(100% + 6px);
      left: 50%;
      transform: translateX(-50%);
      background: #fff;
      border: 1px solid rgba(28,28,46,0.09);
      border-radius: 10px;
      box-shadow: 0 8px 32px rgba(28,28,46,0.13);
      min-width: 180px;
      padding: 0.5rem 0;
      list-style: none;
      margin: 0;
      z-index: 2000;
      animation: v3FadeDown 0.18s ease;
    }

    .v3-dropdown-menu.v3-open {
      display: block;
    }

    @keyframes v3FadeDown {
      from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
      to   { opacity: 1; transform: translateX(-50%) translateY(0); }
    }

    .v3-dropdown-menu li a {
      display: block;
      padding: 0.5rem 1.2rem;
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--color-secondary);
      text-decoration: none;
      transition: background 0.15s, color 0.15s;
      white-space: nowrap;
    }

    .v3-dropdown-menu li a:hover {
      background: rgba(184,151,62,0.08);
      color: var(--color-accent);
    }

    .v3-dropdown-menu li a.v3-active {
      color: var(--color-accent);
      font-weight: 600;
    }

    /* ── RIGHT ACTIONS ── */
    .v3-actions {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      flex-shrink: 0;
    }

    .v3-search-btn {
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.4rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-secondary);
      transition: background 0.2s, color 0.2s;
    }

    .v3-search-btn:hover {
      background: rgba(28,28,46,0.07);
      color: var(--color-accent);
    }

    .v3-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.42rem 1.1rem;
      border: 1.5px solid var(--color-secondary);
      border-radius: 999px;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--color-secondary);
      text-decoration: none;
      background: transparent;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
      white-space: nowrap;
      font-family: 'DM Sans', sans-serif;
    }

    .v3-cta-btn:hover {
      background: var(--color-secondary);
      color: #fff;
      border-color: var(--color-secondary);
    }

    /* ── HAMBURGER ── */
    .v3-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      border-radius: 8px;
      transition: background 0.2s;
    }

    .v3-hamburger:hover {
      background: rgba(28,28,46,0.07);
    }

    .v3-hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--color-secondary);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }

    .v3-hamburger.v3-open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .v3-hamburger.v3-open span:nth-child(2) {
      opacity: 0;
    }

    .v3-hamburger.v3-open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* ── MOBILE DRAWER ── */
    .v3-mobile-drawer {
      display: none;
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      bottom: 0;
      background: #fff;
      z-index: 1040;
      overflow-y: auto;
      padding: 1rem 1.5rem 2rem;
      animation: v3SlideDown 0.25s ease;
    }

    .v3-mobile-drawer.v3-open {
      display: block;
    }

    @keyframes v3SlideDown {
      from { opacity: 0; transform: translateY(-12px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .v3-mobile-nav {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .v3-mobile-nav > li {
      border-bottom: 1px solid rgba(28,28,46,0.07);
    }

    .v3-mobile-nav > li > a,
    .v3-mobile-nav > li > button.v3-mob-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 0.85rem 0;
      font-size: 1rem;
      font-weight: 500;
      color: var(--color-secondary);
      text-decoration: none;
      background: none;
      border: none;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      text-align: left;
    }

    .v3-mobile-nav > li > a:hover,
    .v3-mobile-nav > li > button.v3-mob-toggle:hover {
      color: var(--color-accent);
    }

    .v3-mobile-nav > li > button.v3-mob-toggle svg {
      transition: transform 0.2s ease;
    }

    .v3-mobile-nav > li > button.v3-mob-toggle[aria-expanded="true"] svg {
      transform: rotate(180deg);
    }

    .v3-mob-children {
      display: none;
      padding: 0 0 0.5rem 1rem;
      list-style: none;
      margin: 0;
    }

    .v3-mob-children.v3-open {
      display: block;
    }

    .v3-mob-children li a {
      display: block;
      padding: 0.5rem 0;
      font-size: 0.9rem;
      color: #555;
      text-decoration: none;
      transition: color 0.15s;
    }

    .v3-mob-children li a:hover {
      color: var(--color-accent);
    }

    .v3-mobile-nav > li > a.v3-active,
    .v3-mob-children li a.v3-active {
      color: var(--color-accent);
      font-weight: 600;
    }

    .v3-mobile-actions {
      margin-top: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .v3-mobile-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      padding: 0.7rem 1.2rem;
      border: 1.5px solid var(--color-secondary);
      border-radius: 999px;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--color-secondary);
      text-decoration: none;
      background: transparent;
      transition: background 0.2s, color 0.2s;
      font-family: 'DM Sans', sans-serif;
    }

    .v3-mobile-cta:hover {
      background: var(--color-secondary);
      color: #fff;
    }

    /* ── Unified Button System ── */
    .v3-cta-btn,
    .v3-mobile-cta,
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-primary-custom,
    .btn-outline-custom,
    .load-more-btn {
      border-radius: 999px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
      box-shadow: 0 4px 14px rgba(28, 28, 46, 0.08);
    }

    .v3-cta-btn:hover,
    .v3-mobile-cta:hover,
    .btn-hero-primary:hover,
    .btn-hero-secondary:hover,
    .btn-primary-custom:hover,
    .btn-outline-custom:hover,
    .load-more-btn:hover {
      transform: translateY(-2px);
    }

    /* ── SEARCH OVERLAY ── */
    .v3-search-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(28,28,46,0.55);
      z-index: 2100;
      align-items: flex-start;
      justify-content: center;
      padding-top: 120px;
    }

    .v3-search-overlay.v3-open {
      display: flex;
    }

    .v3-search-box {
      background: #fff;
      border-radius: 14px;
      padding: 1.5rem;
      width: 90%;
      max-width: 560px;
      box-shadow: 0 16px 48px rgba(28,28,46,0.18);
      position: relative;
    }

    .v3-search-box input {
      width: 100%;
      border: 1.5px solid rgba(28,28,46,0.15);
      border-radius: 8px;
      padding: 0.7rem 1rem;
      font-size: 1rem;
      font-family: 'DM Sans', sans-serif;
      color: var(--color-secondary);
      outline: none;
      transition: border-color 0.2s;
    }

    .v3-search-box input:focus {
      border-color: var(--color-accent);
    }

    .v3-search-close {
      position: absolute;
      top: 0.75rem;
      right: 0.75rem;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 1.3rem;
      color: var(--color-secondary);
      line-height: 1;
      padding: 0.2rem 0.4rem;
      border-radius: 6px;
      transition: background 0.2s;
    }

    .v3-search-close:hover {
      background: rgba(28,28,46,0.07);
    }

    /* ── BODY OFFSET when sticky ── */
    body.v3-sticky-offset {
      padding-top: 72px;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 991.98px) {
      .v3-nav-desktop {
        display: none;
      }

      .v3-hamburger {
        display: flex;
      }

      .v3-cta-btn {
        display: none;
      }

      .v3-search-btn {
        display: flex;
      }
    }

    @media (min-width: 992px) {
      .v3-hamburger {
        display: none;
      }

      .v3-mobile-drawer {
        display: none !important;
      }
    }

    /* ── HERO WRAPPER ── */
    .hero-section {
      position: relative;
      width: 100%;
      min-height: 88vh;
      background-color: var(--color-primary);
      display: flex;
      align-items: stretch;
      overflow: hidden;
    }

    /* ── SLIDER TRACK ── */
    .hero-slider {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    .hero-slides-track {
      display: flex;
      transition: transform var(--transition-speed) cubic-bezier(0.77, 0, 0.175, 1);
      will-change: transform;
      height: 100%;
    }

    .hero-slide {
      min-width: 100%;
      width: 100%;
      position: relative;
      display: grid;
      grid-template-columns: 1fr;
      align-items: center;
      padding: 20px;
    }

    /* ── DECORATIVE BG ZODIAC ── */
    .hero-slide::before {
      content: '';
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0.04;
      pointer-events: none;
      z-index: 0;
    }

    /* ── LEFT PANEL ── */
    .slide-left {
      position: relative;
      z-index: 2;
      padding: 40px 48px 140px 64px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 20px;
    }

    .slide-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--color-muted);
      margin-bottom: 4px;
    }

    .slide-badge::before {
      content: '';
      display: block;
      width: 24px;
      height: 1px;
      background: var(--color-gold);
    }

    .slide-title-main {
      font-size: clamp(2.6rem, 4.5vw, 4.2rem);
      font-weight: 900;
      line-height: 1.05;
      color: var(--color-secondary);
      letter-spacing: -1.5px;
    }

    .slide-title-ghost {
      font-size: clamp(2.4rem, 4.2vw, 3.9rem);
      font-weight: 900;
      line-height: 1.05;
      color: transparent;
      -webkit-text-stroke: 1.5px #c5c8d8;
      letter-spacing: -1.5px;
    }

    .slide-title-accent {
      font-size: clamp(2.6rem, 4.5vw, 4.2rem);
      font-weight: 900;
      line-height: 1.05;
      color: var(--color-secondary);
      letter-spacing: -1.5px;
    }

    .slide-service-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--color-gold);
      margin-top: 8px;
    }

    .slide-subtitle {
      font-size: clamp(1.15rem, 1.8vw, 1.45rem);
      font-weight: 700;
      color: var(--color-secondary);
      line-height: 1.3;
    }

    .slide-description {
      font-size: 13px;
      color: var(--color-muted);
      line-height: 1.75;
      max-width: 80%;
      text-align: center;
    }

    .slide-cta-group {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 8px;
    }

    .btn-hero-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--color-secondary);
      color: var(--color-primary);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-decoration: none;
      padding: 13px 28px;
      border-radius: 50px;
      transition: background var(--transition-speed), transform 0.2s;
      border: 2px solid var(--color-secondary);
    }

    .btn-hero-primary:hover {
      background: var(--color-accent);
      border-color: var(--color-accent);
      color: #fff;
      transform: translateY(-2px);
    }

    .btn-hero-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--color-secondary);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-decoration: none;
      padding: 13px 28px;
      border-radius: 50px;
      border: 2px solid #d0d3e0;
      transition: border-color var(--transition-speed), color var(--transition-speed), transform 0.2s;
    }

    .btn-hero-secondary:hover {
      border-color: var(--color-secondary);
      color: var(--color-secondary);
      transform: translateY(-2px);
    }

    /* ── ZODIAC WHEEL DECORATION ── */
    .zodiac-wheel-wrap {
      position: absolute;
      bottom: -60px;
      left: 20px;
      width: 340px;
      height: 340px;
      opacity: 0.12;
      pointer-events: none;
      z-index: 1;
    }

    .zodiac-wheel-wrap img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      animation: slowSpin 60s linear infinite;
    }

    @keyframes slowSpin {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    /* ── CENTER PANEL ── */
    .slide-center {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
      padding: 20px 16px;
    }

    .hero-arch-frame {
      position: relative;
      width: 280px;
      max-width: 90%;
    }

    .hero-arch-frame::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 140px 140px 0 0;
      background: linear-gradient(180deg, #dce4f0 0%, #eef1f7 100%);
      z-index: 0;
    }

    .hero-arch-frame img.hero-person-img {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 380px;
      object-fit: cover;
      object-position: top center;
      border-radius: 140px 140px 0 0;
      display: block;
    }

    .hero-sun-icon {
      position: absolute;
      top: -22px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      width: 52px;
      height: 52px;
      object-fit: contain;
      filter: drop-shadow(0 4px 12px rgba(201,168,76,0.5));
      animation: floatBob 3s ease-in-out infinite;
    }

    @keyframes floatBob {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(-8px); }
    }

    .hero-crystal-img {
      width: 80px;
      height: 80px;
      object-fit: contain;
      filter: drop-shadow(0 6px 16px rgba(0,0,0,0.18));
      animation: floatBob 4s ease-in-out infinite reverse;
    }

    /* Slider dots */
    .hero-dots {
      display: flex;
      gap: 8px;
      justify-content: center;
      margin-top: 4px;
    }

    .hero-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #c5c8d8;
      border: none;
      padding: 0;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
    }

    .hero-dot.active {
      background: var(--color-secondary);
      transform: scale(1.4);
    }

    /* ── RIGHT PANEL ── */
    .slide-right {
      position: relative;
      z-index: 2;
      padding: 40px 64px 40px 32px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      gap: 16px;
    }

    .right-illustration {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      pointer-events: none;
      z-index: 0;
      opacity: 0.18;
    }

    .right-illustration img {
      height: 90%;
      max-height: 480px;
      object-fit: contain;
    }

    .slide-right-content {
      position: relative;
      z-index: 1;
    }

    .slide-right-title {
      font-size: clamp(2.4rem, 3.8vw, 3.8rem);
      font-weight: 900;
      line-height: 1.08;
      color: var(--color-secondary);
      letter-spacing: -1.5px;
    }

    .slide-right-title-ghost {
      font-size: clamp(2.2rem, 3.5vw, 3.5rem);
      font-weight: 900;
      line-height: 1.08;
      color: transparent;
      -webkit-text-stroke: 1.5px #c5c8d8;
      letter-spacing: -1.5px;
      display: block;
    }

    /* ── STATS STRIP ── */
    .hero-stats-strip {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 10;
      background: rgba(28,28,46,0.04);
      backdrop-filter: blur(6px);
      border-top: 1px solid rgba(28,28,46,0.07);
      padding: 14px 64px;
      display: flex;
      align-items: center;
      gap: 0;
    }

    .stat-item {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      border-right: 1px solid rgba(28,28,46,0.1);
      padding: 4px 16px;
    }

    .stat-item:last-child { border-right: none; }

    .stat-value {
      font-size: 1.4rem;
      font-weight: 900;
      color: var(--color-secondary);
      letter-spacing: -0.5px;
    }

    .stat-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--color-muted);
    }

    /* ── PREV / NEXT ARROWS ── */
    .hero-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 20;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--color-primary);
      border: 1.5px solid #d0d3e0;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.3s, border-color 0.3s, transform 0.2s;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }

    .hero-arrow:hover {
      background: var(--color-secondary);
      border-color: var(--color-secondary);
    }

    .hero-arrow:hover svg { stroke: #fff; }

    .hero-arrow svg {
      width: 16px;
      height: 16px;
      stroke: var(--color-secondary);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: stroke 0.3s;
    }

    .hero-arrow-prev { left: 16px; }
    .hero-arrow-next { right: 16px; }

    /* ── RESPONSIVE ── */
    @media (max-width: 991.98px) {
      .hero-slide {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        min-height: auto;
        padding: 10px;
      }

      .slide-left {
        padding: 10px 24px;
        align-items: center;
        text-align: center;
      }

      .slide-description { max-width: 100%; }
      .slide-cta-group { justify-content: center; }

      .slide-center { padding: 16px; }

      .hero-arch-frame { width: 220px; }
      .hero-arch-frame img.hero-person-img { height: 300px; }

      .slide-right {
        padding: 16px 24px 32px;
        align-items: center;
        text-align: center;
      }

      .right-illustration { display: none; }

      .hero-stats-strip {
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 8px;
      }

      .stat-item {
        flex: 1 1 40%;
        border-right: none;
        border-bottom: 1px solid rgba(28,28,46,0.08);
      }

      .zodiac-wheel-wrap { display: none; }
    }

    @media (max-width: 575.98px) {
      .slide-title-main,
      .slide-title-accent { font-size: 2rem; }
      .slide-title-ghost { font-size: 1.9rem; }
      .slide-right-title { font-size: 2rem; }
      .slide-right-title-ghost { font-size: 1.9rem; }
    }

    /* ── SECTION WRAPPER ── */
    .quote-section {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--color-primary);
      overflow: hidden;
      padding: 80px 20px;
    }

    /* ── BACKGROUND WHEEL ── */
    .wheel-bg {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      z-index: 0;
    }

    .wheel-svg {
      width: min(900px, 95vw);
      height: min(900px, 95vw);
      opacity: 0.07;
      animation: slowRotate 120s linear infinite;
    }

    @keyframes slowRotate {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    /* ── CONTENT ── */
    .quote-content {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 780px;
      width: 100%;
    }

    /* ── DECORATIVE STARS ── */
    .deco-stars {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-bottom: 36px;
    }

    .deco-line {
      width: 48px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--color-gold));
    }

    .deco-line.right {
      background: linear-gradient(90deg, var(--color-gold), transparent);
    }

    .deco-star {
      color: var(--color-gold);
      font-size: 14px;
      line-height: 1;
    }

    .deco-moon {
      color: var(--color-gold);
      font-size: 16px;
      line-height: 1;
    }

    /* ── QUOTE TEXT ── */
    .quote-mark-open {
      display: block;
      font-size: clamp(48px, 8vw, 80px);
      line-height: 0.6;
      color: var(--color-gold);
      font-family: 'DM Sans', serif;
      font-weight: 300;
      margin-bottom: 8px;
      opacity: 0.6;
    }

    .quote-text {
      font-size: clamp(22px, 4vw, 42px);
      font-weight: 600;
      line-height: 1.45;
      color: var(--color-secondary);
      letter-spacing: -0.3px;
      margin-bottom: 32px;
      font-style: normal;
    }

    .quote-mark-close {
      display: block;
      font-size: clamp(48px, 8vw, 80px);
      line-height: 0.3;
      color: var(--color-gold);
      font-weight: 300;
      opacity: 0.6;
      margin-top: 4px;
    }

    /* ── AUTHOR ── */
    .author-block {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      margin-top: 40px;
    }

    .author-divider {
      width: 32px;
      height: 1px;
      background-color: var(--color-muted);
      margin-bottom: 4px;
    }

    .author-name {
      font-size: 15px;
      font-weight: 500;
      color: var(--color-muted);
      letter-spacing: 0.5px;
      font-style: italic;
    }

    .author-title {
      font-size: 12px;
      font-weight: 400;
      color: var(--color-muted);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      opacity: 0.7;
    }

    /* ── FLOATING STARS (ambient) ── */
    .ambient-star {
      position: absolute;
      border-radius: 50%;
      background: var(--color-gold);
      opacity: 0;
      animation: twinkle var(--dur, 4s) ease-in-out infinite var(--delay, 0s);
    }

    @keyframes twinkle {
      0%, 100% { opacity: 0; transform: scale(0.5); }
      50%       { opacity: var(--max-op, 0.4); transform: scale(1); }
    }

    /* ── BOTTOM QUOTE CARDS ── */
    .quotes-grid {
      position: relative;
      z-index: 1;
      padding: 60px 24px 80px;
      background-color: var(--color-primary);
    }

    .quotes-grid-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-label {
      text-align: center;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--color-gold);
      margin-bottom: 12px;
    }

    .section-heading {
      font-size: clamp(20px, 3vw, 30px);
      font-weight: 700;
      color: var(--color-secondary);
      margin-bottom: 48px;
    }

    .quote-card {
      background: #ffffff;
      border: 1px solid rgba(28, 28, 46, 0.08);
      border-radius: 20px;
      padding: 36px 32px;
      height: 100%;
      display: flex;
      flex-direction: column;
      gap: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .quote-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--color-gold), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .quote-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(28, 28, 46, 0.1);
    }

    .quote-card:hover::before {
      opacity: 1;
    }

    .card-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(201,169,110,0.15), rgba(201,169,110,0.05));
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .card-icon svg {
      width: 22px;
      height: 22px;
      fill: var(--color-gold);
    }

    .card-quote-text {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.7;
      color: var(--color-accent);
      flex: 1;
      font-style: italic;
    }

    .card-author {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 16px;
      border-top: 1px solid rgba(28, 28, 46, 0.07);
    }

    .card-author-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      border: 2px solid rgba(201,169,110,0.3);
    }

    .card-author-info {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .card-author-name {
      font-size: 18px;
      font-weight: 600;
      color: var(--color-secondary);
    }

    .card-author-role {
      font-size: 12px;
      color: var(--color-muted);
      letter-spacing: 0.3px;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .quote-card { padding: 28px 24px; }
      .deco-line { width: 32px; }
    }

    /* ── SECTION WRAPPER ── */
    .about-section {
      background-color: var(--color-primary);
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 80px 0;
    }

    /* ── DECORATIVE BACKGROUND ── */
    .about-section::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -120px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(184,151,90,0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .about-section::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 350px;
      height: 350px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(28,28,46,0.05) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ── FLOATING ICONS ── */
    .deco-icon {
      position: absolute;
      pointer-events: none;
      opacity: 0.18;
      animation: floatIcon 6s ease-in-out infinite;
    }

    .deco-icon--sun {
      top: 28px;
      left: 28px;
      width: 48px;
      animation-delay: 0s;
    }

    .deco-icon--moon {
      top: 28px;
      right: 28px;
      width: 44px;
      animation-delay: 2s;
    }

    @keyframes floatIcon {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-10px) rotate(8deg); }
    }

    /* ── IMAGE COLUMN ── */
    .about-image-col {
      position: relative;
    }

    .about-image-wrapper {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(28,28,46,0.18), 0 8px 24px rgba(28,28,46,0.10);
    }

    .about-image-wrapper img {
      width: 100%;
      height: 620px;
      object-fit: cover;
      object-position: center!important;
      display: block;
      transition: transform 0.6s ease;
    }

    .about-image-wrapper:hover img {
      transform: scale(1.03);
    }

    /* ── BADGE CARD (floating) ── */
    .about-badge-card {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--color-secondary);
      color: #fff;
      border-radius: 16px;
      padding: 16px 24px;
      display: flex;
      align-items: center;
      gap: 14px;
      box-shadow: 0 12px 40px rgba(28,28,46,0.35);
      white-space: nowrap;
      min-width: 220px;
      animation: badgeFloat 4s ease-in-out infinite;
    }

    @keyframes badgeFloat {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(-6px); }
    }

    .about-badge-card .badge-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--color-accent);
      flex-shrink: 0;
    }

    .about-badge-card .badge-label {
      font-size: 11px;
      font-weight: 500;
      color: var(--color-accent-light);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      line-height: 1.2;
    }

    .about-badge-card .badge-title {
      font-size: 13px;
      font-weight: 600;
      color: #fff;
      line-height: 1.3;
      margin-top: 2px;
    }

    /* ── CONTENT COLUMN ── */
    .about-content-col {
      padding-left: 48px;
    }

    .about-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--color-accent);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }


    .about-heading {
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 700;
      line-height: 1.15;
      color: var(--color-secondary);
      margin-bottom: 8px;
    }

    .about-heading .highlight {
      color: var(--color-accent);
      font-weight: 300;
      font-style: italic;
    }

    .about-divider {
      width: 48px;
      height: 3px;
      background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
      border-radius: 2px;
      margin: 24px 0;
    }

    .about-description {
      font-size: 15px;
      line-height: 1.85;
      color: #4a4a6a;
      margin-bottom: 0;
    }

    .about-description p + p {
      margin-top: 16px;
    }

    /* ── STATS GRID ── */
    .stats-grid {
      display: flex;
      gap: 0;
      margin-top: 44px;
      border-top: 1px solid var(--color-border);
      padding-top: 36px;
    }

    .stat-item {
      flex: 1;
      position: relative;
      padding: 0 24px 0 0;
    }

    .stat-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      height: 40px;
      width: 1px;
      background: var(--color-border);
    }

    .stat-item:first-child {
      padding-left: 0;
    }

    .stat-value {
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 700;
      color: var(--color-secondary);
      line-height: 1;
      margin-bottom: 6px;
      display: flex;
      align-items: baseline;
      gap: 2px;
    }

    .stat-value .stat-plus {
      font-size: 1.2rem;
      color: var(--color-accent);
      font-weight: 600;
    }

    .stat-label {
      font-size: 12px;
      font-weight: 500;
      color: var(--color-secondary);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      line-height: 1.4;
    }

    /* ── COUNTER ANIMATION ── */
    .stat-value[data-counted="false"] {
      opacity: 0;
      transform: translateY(12px);
    }

    .stat-value.counted-in {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    /* ── SECOND IMAGE (optional accent) ── */
    .about-image2-wrapper {
      position: absolute;
      top: 40px;
      right: -20px;
      width: 140px;
      height: 140px;
      border-radius: 20px;
      overflow: hidden;
      border: 4px solid var(--color-primary);
      box-shadow: 0 12px 32px rgba(28,28,46,0.18);
      display: none;
    }

    .about-image2-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 991.98px) {
      .about-content-col {
        padding-left: 0;
        margin-top: 48px;
      }

      .about-image-wrapper img {
        height: 480px;
      }

      .stats-grid {
        flex-wrap: wrap;
        gap: 24px;
      }

      .stat-item:not(:last-child)::after {
        display: none;
      }

      .stat-item {
        flex: 0 0 calc(33.333% - 16px);
        padding: 0;
      }
    }

    @media (max-width: 575.98px) {
      .about-section {
        padding: 0;
      }

      .about-image-wrapper img {
        height: 380px;
      }

      .about-heading {
        font-size: 1.75rem;
      }

      .stat-item {
        flex: 0 0 calc(50% - 12px);
      }

      .about-badge-card {
        min-width: 180px;
        padding: 12px 16px;
      }
    }

    /* ── Section ── */
    .services-section {
      padding: 50px 0 112px;
      background-color: var(--color-primary);
      position: relative;
      overflow: hidden;
    }

    .services-section::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -120px;
      width: 480px;
      height: 480px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(180,170,210,0.13) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ── Header ── */
    .section-eyebrow {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #8b7fb8;
      margin-bottom: 18px;
    }

    .section-heading {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      line-height: 1.18;
      color: var(--color-secondary);
      margin-bottom: 20px;
      
    }

    .section-description {
      font-size: 1rem;
      line-height: 1.7;
      color: #5a5a7a;
      margin-bottom: 0;
    }

    .view-all-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.9rem;
      font-weight: 600;
      color: #c9a84c;
      text-decoration: none;
      transition: gap 0.25s ease;
    }

    .view-all-link:hover {
      gap: 10px;
      color: #b8922e;
    }

    .view-all-link svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    /* ── Cards ── */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
      gap: 24px;
      margin-top: 56px;
    }

    .service-card {
      background: #ffffff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 2px 16px rgba(28,28,46,0.06);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      cursor: pointer;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 40px rgba(28,28,46,0.13);
    }

    .card-image-wrap {
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      position: relative;
      background: #e8e4f0;
    }

    .card-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.45s ease;
    }

    .service-card:hover .card-image-wrap img {
      transform: scale(1.06);
    }

    .card-body-inner {
      padding: 24px 24px 28px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .card-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--color-secondary);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .card-description {
      font-size: 0.875rem;
      line-height: 1.65;
      color: #6b6b8a;
      flex: 1;
      margin-bottom: 20px;
    }

    .card-footer-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid #f0eef8;
      padding-top: 16px;
    }

    .card-count {
      font-size: 0.78rem;
      color: #9898b0;
      font-weight: 500;
    }

    .card-cta {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 0.85rem;
      font-weight: 700;
      color: #c9a84c;
      text-decoration: none;
      transition: gap 0.2s ease, color 0.2s ease;
    }

    .card-cta:hover {
      gap: 9px;
      color: #b8922e;
    }

    .card-cta svg {
      width: 14px;
      height: 14px;
    }

    /* ── Responsive ── */
    @media (max-width: 991.98px) {
      .services-section {
        padding: 72px 0 88px;
      }

      .header-row {
        margin-bottom: 0;
      }

      .view-all-wrap {
        margin-top: 16px;
      }
    }

    @media (max-width: 575.98px) {
      .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
      }

      .section-heading {
        font-size: 1.75rem;
      }
    }

    /* ── HERO SECTION ── */
    .hero-section {
      position: relative;
      min-height: 420px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 20px;
    }


    .hero-deco-star {
      position: absolute;
      opacity: 0.18;
      pointer-events: none;
    }
    .hero-deco-star.s1 { left: 5%; top: 30%; width: 60px; }
    .hero-deco-star.s2 { right: 4%; top: 15%; width: 80px; opacity: 0.12; }
    .hero-deco-star.s3 { left: 18%; bottom: 20%; width: 30px; opacity: 0.1; }
    .hero-deco-moon {
      position: absolute;
      right: 3%;
      top: 10%;
      width: 90px;
      opacity: 0.1;
      pointer-events: none;
    }

    .hero-eyebrow {
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--color-accent-gold-light);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 10px;
      position: relative;
      z-index: 2;
    }
    .hero-eyebrow span { opacity: 0.6; }

    .hero-title {
      font-size: clamp(2.6rem, 6vw, 4rem);
      font-weight: 700;
      color: var(--color-primary);
      text-align: center;
      margin: 0 0 18px;
      position: relative;
      z-index: 2;
      line-height: 1.1;
    }

    .hero-divider {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0 auto 22px;
      position: relative;
      z-index: 2;
    }
    .hero-divider-line {
      width: 60px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--color-accent-gold), transparent);
    }
    .hero-divider-icon {
      font-size: 0.85rem;
      color: var(--color-accent-gold-light);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .hero-description {
      font-size: 1rem;
      color: var(--color-text-muted);
      text-align: center;
      max-width: 520px;
      line-height: 1.7;
      position: relative;
      z-index: 2;
      margin: 0 auto;
    }

    /* ── BREADCRUMB ── */
    .breadcrumb-wrapper {
      background: rgba(13, 17, 40, 0.85);
      border-bottom: 1px solid rgba(201, 168, 76, 0.12);
      padding: 12px 0;
      position: relative;
      z-index: 10;
    }

    .breadcrumb {
      margin: 0;
      padding: 0;
      background: transparent;
      flex-wrap: wrap;
    }

    .breadcrumb-item {
      font-size: 0.82rem;
      color: var(--color-text-muted);
    }

    .breadcrumb-item a {
      color: var(--color-accent-gold-light);
      text-decoration: none;
      transition: color 0.2s;
    }
    .breadcrumb-item a:hover { color: var(--color-primary); }

    .breadcrumb-item.active {
      color: var(--color-primary);
      font-weight: 500;
    }

    .breadcrumb-item + .breadcrumb-item::before {
      content: '›';
      color: rgba(201, 168, 76, 0.4);
      padding: 0 8px;
    }

    /* ── FILTER BAR ── */
    .filter-bar {
      padding: 36px 0 10px;
    }

    .filter-btn {
      background: transparent;
      border: 1px solid rgba(201, 168, 76, 0.25);
      color: var(--color-text-muted);
      border-radius: 50px;
      padding: 7px 20px;
      font-size: 0.82rem;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
      transition: all 0.25s;
      white-space: nowrap;
    }
    .filter-btn:hover,
    .filter-btn.active {
      background: var(--color-accent-gold);
      border-color: var(--color-accent-gold);
      color: var(--color-secondary);
      font-weight: 600;
    }

    /* ── ITEMS GRID ── */
    .items-section {
      padding: 20px 0 80px;
    }

    .item-card {
      background: var(--color-card-bg);
      border: 1px solid var(--color-card-border);
      border-radius: 16px;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
      height: 100%;
      display: flex;
      flex-direction: column;
      cursor: pointer;
    }
    .item-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.3);
      border-color: rgba(201, 168, 76, 0.4);
    }

    .item-thumb {
      position: relative;
      overflow: hidden;
      aspect-ratio: 16/9;
      background: #0a0d1f;
    }

    .item-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
      display: block;
    }
    .item-card:hover .item-thumb img {
      transform: scale(1.06);
    }

    .item-play-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 13, 31, 0.45);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .item-card:hover .item-play-overlay { opacity: 1; }

    .play-btn-circle {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: rgba(201, 168, 76, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(4px);
    }
    .play-btn-circle svg {
      width: 20px;
      height: 20px;
      fill: var(--color-secondary);
      margin-left: 3px;
    }

    .item-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--color-secondary);
      color: var(--color-accent-gold-light);
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 50px;
      border: 1px solid rgba(201,168,76,0.3);
    }

    .item-duration {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: rgba(10,13,31,0.8);
      color: var(--color-primary);
      font-size: 0.72rem;
      padding: 3px 8px;
      border-radius: 6px;
      backdrop-filter: blur(4px);
    }

    .item-body {
      padding: 20px 22px 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .item-category {
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--color-accent-gold);
      margin-bottom: 8px;
      font-weight: 500;
    }

    .item-title {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--color-primary);
      margin: 0 0 10px;
      line-height: 1.4;
    }

    .item-description {
      font-size: 0.875rem;
      color: var(--color-text-muted);
      line-height: 1.65;
      margin: 0 0 18px;
      flex: 1;
    }

    .item-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(201,168,76,0.1);
      padding-top: 14px;
      margin-top: auto;
    }

    .item-meta {
      font-size: 0.75rem;
      color: var(--color-text-muted);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .item-meta svg {
      width: 13px;
      height: 13px;
      opacity: 0.5;
    }

    .item-link {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--color-accent-gold-light);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: gap 0.2s, color 0.2s;
    }
    .item-link:hover {
      color: var(--color-primary);
      gap: 9px;
    }
    .item-link svg {
      width: 14px;
      height: 14px;
    }

    /* ── LOAD MORE ── */
    .load-more-btn {
      background: transparent;
      border: 1px solid rgba(201,168,76,0.35);
      color: var(--color-accent-gold-light);
      border-radius: 50px;
      padding: 12px 40px;
      font-size: 0.9rem;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.25s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .load-more-btn:hover {
      background: var(--color-accent-gold);
      border-color: var(--color-accent-gold);
      color: var(--color-secondary);
      font-weight: 600;
    }
    .load-more-btn svg {
      width: 16px;
      height: 16px;
      transition: transform 0.3s;
    }
    .load-more-btn:hover svg { transform: rotate(180deg); }

    /* ── DECORATIVE STARS ── */
    .deco-star-svg {
      display: inline-block;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 767px) {
      .hero-section { min-height: 320px; padding: 40px 16px 50px; }
      .hero-title { font-size: 2.2rem; }
      .filter-bar { padding: 24px 0 6px; }
      .filter-bar .d-flex { flex-wrap: wrap; gap: 8px !important; }
    }

    /* ── Section Wrapper ── */
    .contact-section {
      padding: 80px 0 100px;
      background-color: var(--color-primary);
    }

    /* ── Map ── */
    .contact-map-wrap {
      position: relative;
      margin-top: 48px;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(201,169,110,0.2);
      box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    }

    .contact-map-wrap iframe {
      display: block;
      width: 100%;
      height: 380px;
      border: none;
      filter: saturate(0.85) brightness(0.9);
    }

    .contact-map-label {
      position: absolute;
      bottom: 16px;
      left: 50%;
      transform: translateX(-50%);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 18px;
      background: rgba(13,13,26,0.88);
      color: var(--color-accent);
      font-size: 0.82rem;
      font-weight: 600;
      border-radius: 999px;
      border: 1px solid rgba(201,169,110,0.3);
      backdrop-filter: blur(8px);
      white-space: nowrap;
      pointer-events: none;
    }

    .contact-map-label svg {
      width: 14px;
      height: 14px;
      stroke: var(--color-accent);
    }

    @media (max-width: 767px) {
      .contact-map-wrap iframe { height: 260px; }
    }

    /* ── Section Title ── */
    .contact-section__title {
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 700;
      color: var(--color-secondary);
      text-align: center;
      margin-bottom: 56px;
      letter-spacing: -0.5px;
    }

    /* ── Map ── */
    .map-wrapper {
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(28, 28, 46, 0.10);
      height: 460px;
      position: relative;
    }

    .map-wrapper iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }

    /* ── Info Card ── */
    .info-card {
      background: #ffffff;
      border-radius: 18px;
      padding: 40px 36px;
      box-shadow: 0 8px 40px rgba(28, 28, 46, 0.08);
      height: 100%;
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    /* ── Info Block ── */
    .info-block__label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      color: #9ca3af;
      margin-bottom: 10px;
    }

    .info-block__title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--color-secondary);
      margin-bottom: 6px;
    }

    .info-block__text {
      font-size: 0.95rem;
      color: #6b7280;
      line-height: 1.65;
      margin: 0;
    }

    .info-block__link {
      font-size: 0.95rem;
      color: var(--color-secondary);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
    }

    .info-block__link:hover {
      color: #4f46e5;
    }

    /* ── Hours Table ── */
    .hours-table {
      width: 100%;
      border-collapse: collapse;
    }

    .hours-table tr td {
      padding: 5px 0;
      font-size: 0.92rem;
      color: #6b7280;
    }

    .hours-table tr td:last-child {
      text-align: right;
      font-weight: 600;
      color: var(--color-secondary);
    }

    .hours-table tr td.closed {
      color: #ef4444;
      font-weight: 600;
    }

    /* ── Divider ── */
    .info-divider {
      border: none;
      border-top: 1px solid #f0f0f5;
      margin: 0;
    }

    /* ── Buttons ── */
    .btn-primary-custom {
      background-color: var(--color-secondary);
      color: var(--color-primary);
      border: none;
      border-radius: 50px;
      padding: 13px 28px;
      font-size: 0.92rem;
      font-weight: 600;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
      transition: background 0.22s, transform 0.18s;
      text-decoration: none;
      display: inline-block;
    }

    .btn-primary-custom:hover {
      background-color: #2d2d4e;
      transform: translateY(-1px);
      color: var(--color-primary);
    }

    .btn-outline-custom {
      background-color: transparent;
      color: var(--color-secondary);
      border: 2px solid var(--color-secondary);
      border-radius: 50px;
      padding: 11px 28px;
      font-size: 0.92rem;
      font-weight: 600;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
      transition: background 0.22s, color 0.22s, transform 0.18s;
      text-decoration: none;
      display: inline-block;
    }

    .btn-outline-custom:hover {
      background-color: var(--color-secondary);
      color: var(--color-primary);
      transform: translateY(-1px);
    }

    .btn-group-custom {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* ── Contact Detail Row ── */
    .contact-detail-row {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .contact-detail-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background-color: #f3f4f6;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-detail-icon svg {
      width: 16px;
      height: 16px;
      stroke: var(--color-secondary);
    }

    /* ── Working Hours Rows ── */
    .hours-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 6px 0;
      border-bottom: 1px solid #f5f5f8;
    }

    .hours-row:last-child {
      border-bottom: none;
    }

    .hours-row__day {
      font-size: 0.9rem;
      color: #6b7280;
    }

    .hours-row__time {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--color-secondary);
    }

    .hours-row__time.closed {
      color: #ef4444;
    }

    /* ── Responsive ── */
    @media (max-width: 991.98px) {
      .map-wrapper {
        height: 340px;
        margin-bottom: 28px;
      }

      .info-card {
        padding: 32px 24px;
      }
    }

    @media (max-width: 575.98px) {
      .contact-section {
        padding: 56px 0 72px;
      }

      .contact-section__title {
        margin-bottom: 36px;
      }

      .map-wrapper {
        height: 280px;
      }
    }

    footer {
      background: linear-gradient(180deg, #0d0d1f 0%, #0a0a18 100%);
      border-top: 1px solid rgba(248, 249, 251, 0.08);
      position: relative;
      overflow: hidden;
    }

    footer::before {
      content: '';
      position: absolute;
      top: -120px;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 300px;
      background: radial-gradient(ellipse, rgba(180, 140, 255, 0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .footer-top {
      padding: 64px 0 48px;
    }

    .footer-brand-col {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .footer-logo {
      width: 190px;
      height: auto;
      object-fit: contain;
      margin-bottom: 16px;
      filter: drop-shadow(0 10px 22px rgba(201, 169, 110, 0.2));
    }

    .footer-desc {
      font-size: 0.875rem;
      line-height: 1.75;
      color: rgba(248, 249, 251, 0.6);
      max-width: 280px;
      margin-bottom: 28px;
    }

    .social-links {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(248, 249, 251, 0.06);
      border: 1px solid rgba(248, 249, 251, 0.1);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
    }

    .social-link:hover {
      background: rgba(180, 140, 255, 0.18);
      border-color: rgba(180, 140, 255, 0.45);
      color: #fff;
      transform: translateY(-2px);
    }

    .social-link svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    footer .social-link,
    footer .social-link:hover {
      color: #fff !important;
    }

    footer .social-link svg,
    footer .social-link svg * {
      fill: #fff !important;
      stroke: none;
    }

    .footer-whatsapp-btn {
      margin-top: 14px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 16px;
      border-radius: 999px;
      background: linear-gradient(180deg, #25d366 0%, #1ab154 100%);
      color: #062d16;
      font-size: 0.84rem;
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
      transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    }

    .footer-whatsapp-btn svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
    }

    .footer-whatsapp-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(37, 211, 102, 0.35);
      filter: brightness(1.03);
      color: #052611;
    }

    /* ── CUSTOM CURSOR ── */
    @media (pointer: fine) {
      *, *::before, *::after { cursor: none !important; }

      .custom-cursor {
        position: fixed;
        top: 0;
        left: 0;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #0d0d1a;
        pointer-events: none;
        z-index: 999999;
        transform: translate(0, 0);
        transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease, background 0.2s ease;
        will-change: transform;
        margin-left: 0;
        margin-top: 0;
      }

      .custom-cursor.is-image {
        width: 22px;
        height: 22px;
        background: transparent;
        border: 1.5px solid rgba(201, 169, 110, 0.7);
        margin-left: -11px;
        margin-top: -11px;
      }

      .custom-cursor.is-clickable {
        width: 14px;
        height: 14px;
        background: var(--color-accent, #c9a96e);
        margin-left: -7px;
        margin-top: -7px;
      }
    }

    /* ── YOUTUBE SHORTS SLIDER ── */
    .yt-shorts-section {
      padding: 80px 0;
      overflow-x: hidden;
    }

    .short-card {
      flex: 0 0 20%;
      min-width: 20%;
      padding: 0 0.55rem;
      box-sizing: border-box;
    }

    .short-card-inner {
      display: block;
      border-radius: 14px;
      overflow: hidden;
      text-decoration: none;
      background: #1c1c2e;
      border: 1px solid rgba(255,255,255,0.07);
      transition: transform 0.25s, box-shadow 0.25s;
    }

    .short-card-inner:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,169,110,0.25);
    }

    .short-thumb {
      position: relative;
      width: 100%;
      aspect-ratio: 9 / 16;
      overflow: hidden;
      background: #1c1c2e;
      display: block;
    }

    .short-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform 0.35s;
    }

    .short-card-inner:hover .short-thumb img {
      transform: scale(1.05);
    }

    .short-play {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 44px; height: 44px;
      background: rgba(0,0,0,0.55);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      backdrop-filter: blur(4px);
      transition: background 0.2s;
    }

    .short-play svg {
      width: 18px; height: 18px;
      margin-left: 3px;
    }

    .short-card-inner:hover .short-play {
      background: rgba(201, 169, 110, 0.85);
    }

    .short-badge {
      position: absolute;
      bottom: 10px; left: 10px;
      background: rgba(200, 0, 0, 0.88);
      color: #fff;
      font-size: 11px;
      font-weight: 600;
      padding: 3px 7px;
      border-radius: 4px;
      display: flex; align-items: center; gap: 4px;
      letter-spacing: 0.02em;
    }

    @media (max-width: 991.98px) {
      .short-card { flex: 0 0 30%; min-width: 30%; }
    }

    @media (max-width: 767px) {
      .short-card { flex: 0 0 60%; min-width: 60%; }
    }

    /* ── FIXED WHATSAPP BOTTOM-LEFT BUTTON ── */
    .whatsapp-side-btn {
      position: fixed;
      left: 10px;
      bottom: 10px;
      z-index: 9999;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 11px 18px 11px 14px;
      background: linear-gradient(135deg, #25d366 0%, #1ab154 100%);
      color: #062d16;
      font-size: 0.84rem;
      font-weight: 700;
      text-decoration: none;
      border-radius: 999px;
      box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
      transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
      white-space: nowrap;
    }

    .whatsapp-side-btn svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
      flex-shrink: 0;
    }

    .whatsapp-side-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
      background: linear-gradient(135deg, #2ee872 0%, #1fcf60 100%);
      color: #041d0e;
    }

    @media (max-width: 575px) {
      .whatsapp-side-btn span { display: none; }
      .whatsapp-side-btn { padding: 12px; gap: 0; }
      .whatsapp-side-btn svg { width: 20px; height: 20px; }
    }

    .footer-col-title {
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(248, 249, 251, 0.45);
      margin-bottom: 20px;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      font-size: 0.9rem;
      font-weight: 400;
      color: rgba(248, 249, 251, 0.65);
      text-decoration: none;
      transition: color 0.2s, padding-left 0.2s;
      display: inline-block;
    }

    .footer-links a:hover {
      color: var(--color-primary);
      padding-left: 4px;
    }

    .footer-divider {
      border: none;
      border-top: 1px solid rgba(248, 249, 251, 0.07);
      margin: 0;
    }

    .footer-bottom {
      padding: 22px 0;
    }

    .footer-bottom-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-copyright {
      font-size: 0.8rem;
      color: rgba(248, 249, 251, 0.35);
      font-weight: 400;
    }

    .footer-service-links {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }

    .footer-service-links a {
      font-size: 0.8rem;
      color: rgba(248, 249, 251, 0.35);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-service-links a:hover {
      color: rgba(248, 249, 251, 0.75);
    }

    .footer-contact-block {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.875rem;
      color: rgba(248, 249, 251, 0.65);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-contact-item:hover {
      color: var(--color-primary);
    }

    .contact-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: rgba(248, 249, 251, 0.06);
      border: 1px solid rgba(248, 249, 251, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-icon svg {
      width: 14px;
      height: 14px;
      fill: none;
      stroke: rgba(248, 249, 251, 0.6);
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    @media (max-width: 767.98px) {
      .footer-top {
        padding: 48px 0 36px;
      }

      .footer-brand-col {
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
      }

      .footer-desc {
        max-width: 100%;
      }

      .social-links {
        justify-content: center;
      }

      .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .footer-service-links {
        justify-content: center;
      }
    }
  


    .section-eyebrow {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--color-accent);
      margin-bottom: 0.6rem;
    }
    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      line-height: 1.15;
      color: var(--color-secondary);
    }
    .section-desc {
      font-size: 0.95rem;
      color: var(--color-secondary);
      max-width: 420px;
      line-height: 1.7;
      margin-top: 0.75rem;
    }
    .see-all-link {
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--color-accent);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      transition: gap 0.2s;
      white-space: nowrap;
    }
    .see-all-link:hover { gap: 0.6rem; color: var(--color-accent-light); }
    .see-all-link svg { width: 16px; height: 16px; }

    /* ── DIVIDER ── */
    .section-divider {
      height: 1px;
      background: linear-gradient(90deg, var(--color-accent) 0%, transparent 100%);
      margin: 10px auto 30px auto;
      width: 60px;
    }

    /* ── PLAYLIST LABEL ── */
    .playlist-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      color: var(--color-secondary);
      background: rgba(201,169,110,0.12);
      border: 1px solid var(--color-card-border);
      border-radius: 20px;
      padding: 0.28rem 0.85rem;
    }
    .playlist-label .pl-num {
      background: var(--color-accent);
      color: var(--color-secondary);
      border-radius: 50%;
      width: 20px; height: 20px;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 0.7rem; font-weight: 700;
    }
    .playlist-label .pl-count {
      color: #000;
      font-weight: 400;
    }

    .playlist-title-link {
      color: inherit;
      text-decoration: none;
    }

    .playlist-title-link:hover {
      text-decoration: underline;
    }

    /* ── SLIDER WRAPPER ── */
    .video-slider-section {
      padding: 4rem 0 5rem;
      overflow-x: hidden;
    }

    .slider-outer {
      position: relative;
    }

    .slider-track-wrapper {
      overflow: hidden;
      border-radius: 0;
    }

    .slider-track {
      display: flex;
      transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }

    /* ── VIDEO CARD ── */
    .video-card {
      flex: 0 0 50%;
      min-width: 50%;
      padding: 0 0.55rem;
      box-sizing: border-box;
    }

    .video-card-inner {
      background: var(--color-card-bg);
      border: 1px solid var(--color-card-border);
      border-radius: 14px;
      overflow: hidden;
      transition: transform 0.25s, box-shadow 0.25s;
      cursor: pointer;
    }
    .video-card-inner:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(201,169,110,0.25);
    }

    .video-thumb {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
      overflow: hidden;
      background: #0a0a18;
    }
    .video-thumb img {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.35s;
    }
    .video-card-inner:hover .video-thumb img {
      transform: scale(1.05);
    }

    .play-btn {
      position: absolute;
      inset: 0;
      display: flex; align-items: center; justify-content: center;
      background: rgba(13,13,26,0.35);
      transition: background 0.25s;
    }
    .video-card-inner:hover .play-btn { background: rgba(13,13,26,0.55); }
    .play-btn-circle {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: rgba(201,169,110,0.92);
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.2s, background 0.2s;
    }
    .video-card-inner:hover .play-btn-circle {
      transform: scale(1.12);
      background: var(--color-accent-light);
    }
    .play-btn-circle svg { width: 16px; height: 16px; fill: var(--color-secondary); margin-left: 2px; }

    .video-stats {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      display: flex; gap: 0.75rem;
      padding: 0.5rem 0.75rem;
      background: linear-gradient(0deg, rgba(13,13,26,0.85) 0%, transparent 100%);
      font-size: 0.72rem;
      color: rgba(248,249,251,0.75);
    }
    .video-stats span { display: inline-flex; align-items: center; gap: 0.25rem; }
    .video-stats svg { width: 12px; height: 12px; opacity: 0.7; }

    .video-card-body {
      padding: 0.85rem 0.9rem 1rem;
    }
    .video-card-title {
      font-size: 0.82rem;
      font-weight: 600;
      line-height: 1.4;
      color: var(--color-primary);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .video-card-desc {
      margin-top: 0.45rem;
      font-size: 0.75rem;
      line-height: 1.45;
      color: var(--color-text-muted);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* ── ARROW BUTTONS ── */
    .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 40px; height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(201,169,110,0.35);
      background: rgba(13,13,26,0.85);
      color: var(--color-accent);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
      backdrop-filter: blur(6px);
    }
    .slider-arrow:hover {
      background: rgba(201,169,110,0.18);
      border-color: var(--color-accent);
      transform: translateY(-50%) scale(1.08);
    }
    .slider-arrow:disabled {
      opacity: 0.3;
      cursor: not-allowed;
      transform: translateY(-50%);
    }
    .slider-arrow svg { width: 18px; height: 18px; }
    .slider-arrow-prev { left: -20px; }
    .slider-arrow-next { right: -20px; }

    /* ── DOTS ── */
    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 0.4rem;
      margin-top: 1.5rem;
    }
    .slider-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: rgba(201,169,110,0.3);
      border: none;
      cursor: pointer;
      transition: background 0.25s, width 0.25s;
      padding: 0;
    }
    .slider-dot.active {
      background: var(--color-accent);
      width: 20px;
      border-radius: 3px;
    }

    /* ── YT BADGE ── */
    .yt-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.72rem;
      font-weight: 600;
      color: #ff4444;
      background: rgba(255,68,68,0.1);
      border: 1px solid rgba(255,68,68,0.25);
      border-radius: 6px;
      padding: 0.2rem 0.55rem;
    }
    .yt-badge svg { width: 14px; height: 14px; fill: #ff4444; }

    /* ── RESPONSIVE ── */
    @media (max-width: 767px) {
      .video-card { flex: 0 0 100%; min-width: 100%; padding: 0; }
      .slider-outer { padding: 0; }
      .slider-track-wrapper { border-radius: 12px; }
      .slider-arrow { width: 34px; height: 34px; opacity: 0.88; }
      .slider-arrow-prev { left: 6px; }
      .slider-arrow-next { right: 6px; }
      .playlist-grid .slider-outer { padding: 0; }
      .video-card-inner { border-radius: 12px; }
      .video-card-body { padding: 0.75rem 0.75rem 0.9rem; }
    }

    /* ── SECTION SPACING ── */
    .playlist-row {
      margin-bottom: 1.25rem;
    }

    .playlist-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.25rem 1rem;
    }

    .playlist-grid .playlist-row {
      margin-bottom: 0;
    }

    /* Keep slider arrows inside each card lane in 2-column layout
       so neighboring sliders do not overlap. */
    .playlist-grid .slider-outer {
      padding: 0 44px;
    }

    .playlist-grid .slider-arrow {
      width: 36px;
      height: 36px;
      z-index: 5;
    }

    .playlist-grid .slider-arrow-prev {
      left: 4px;
    }

    .playlist-grid .slider-arrow-next {
      right: 4px;
    }

    @media (max-width: 1199px) {
      .playlist-grid {
        display: flex;
        flex-direction: column;
      }

      .playlist-grid .slider-outer {
        padding: 0 44px;
      }

      .playlist-grid .slider-arrow {
        width: 38px;
        height: 38px;
      }

      .playlist-grid .slider-arrow-prev {
        left: 4px;
      }

      .playlist-grid .slider-arrow-next {
        right: 4px;
      }
    }

    @media (max-width: 991.98px) {
      .video-slider-section .container,
      .services-section .container,
      .contact-section .container,
      .about-section .container,
      .hero-section,
      footer .container {
        text-align: center;
      }

      .section-eyebrow,
      .section-title,
      .section-desc,
      .section-heading,
      .section-description,
      .card-title,
      .card-description,
      .video-card-title,
      .video-card-desc,
      .hero-description,
      .hero-title,
      .hero-eyebrow {
        text-align: center;
      }

      .video-slider-section img,
      .services-section img,
      .contact-section img,
      .about-section img,
      .hero-section img {
        margin-left: auto;
        margin-right: auto;
      }

      .playlist-row > .d-flex,
      .playlist-row .d-flex.align-items-center.gap-3,
      .video-card-body {
        justify-content: center !important;
        text-align: center;
      }

      .playlist-label {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
        gap: 0.3rem 0.5rem;
        max-width: 100%;
      }

      .playlist-grid .slider-outer {
        padding: 0;
      }

      .playlist-grid .slider-arrow {
        width: 36px;
        height: 36px;
        opacity: 0.88;
      }

      .playlist-grid .slider-arrow-prev {
        left: 6px;
      }

      .playlist-grid .slider-arrow-next {
        right: 6px;
      }
      .footer-contact-item {
      display: flex;
      flex-direction: column;
    }
      .about-divider {
      margin: 24px auto 24px auto;
    }
    .about-eyebrow {
      justify-content: center;
    }
    .slide-badge {
      display: none!important;
    }
    }
