    /* CSS Variables for consistent theming */
    :root {
      /* Colors */
      --bg-primary: #0a0a0a;
      --bg-secondary: #121212;
      --bg-tertiary: #1a1a1a;
      --bg-card: #161616;
      --bg-hover: #1f1f1f;
      
      --text-primary: #ffffff;
      --text-secondary: #e5e5e5;
      --text-muted: #a0a0a0;
      --text-dim: #707070;
      
      --accent-gold: #d4af37;
      --accent-gold-light: #f4cf57;
      --accent-red: #dc2626;
      --accent-red-dark: #991b1b;
      --accent-pink: #e91e63;
      --accent-green: #25D366;
      --accent-green-dark: #1EBE5D;
      
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-medium: rgba(255, 255, 255, 0.15);
      --border-strong: rgba(255, 255, 255, 0.25);
      
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
      --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
      --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
      --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.6);
      
      /* Spacing */
      --space-xs: 4px;
      --space-sm: 8px;
      --space-md: 16px;
      --space-lg: 24px;
      --space-xl: 32px;
      --space-2xl: 48px;
      --space-3xl: 64px;
      
      /* Border Radius */
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --radius-xl: 20px;
      --radius-full: 999px;
      
      /* Transitions */
      --transition-fast: 0.2s ease;
      --transition-base: 0.3s ease;
      --transition-slow: 0.4s ease;
    }
    
    * {
      box-sizing: border-box;
    }
    
    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background: var(--bg-primary);
      color: var(--text-primary);
      overflow-x: hidden;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    
    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--transition-fast);
    }
    
    /* HEADER */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-subtle);
      box-shadow: var(--shadow-sm);
    }
    
    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: var(--space-md) var(--space-md);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-md);
    }
    
    .logo {
      font-weight: 800;
      font-size: 24px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent-gold);
      display: flex;
      align-items: center;
      gap: var(--space-sm);
      transition: opacity var(--transition-fast);
    }
    
    .logo:hover {
      opacity: 0.9;
    }
    
    .logo i {
      font-size: 22px;
    }
    
    nav ul {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: var(--space-lg);
    }
    
    nav a {
      font-size: 14px;
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 0.1em;
      color: var(--text-secondary);
      position: relative;
      padding: var(--space-sm) 0;
    }
    
    nav a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent-gold);
      transition: width var(--transition-base);
    }
    
    nav a:hover {
      color: var(--accent-gold);
    }
    
    nav a:hover::after {
      width: 100%;
    }
    
    .header-cta {
      display: flex;
      align-items: center;
      gap: var(--space-md);
    }
    
    .btn-small {
      padding: 10px 18px;
      border-radius: var(--radius-full);
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      border: 1px solid var(--border-medium);
      transition: all var(--transition-base);
      cursor: pointer;
    }
    
    .btn-small:hover {
      border-color: var(--accent-gold);
      background: rgba(212, 175, 55, 0.1);
    }
    
    .btn-small.primary {
      background: linear-gradient(135deg, var(--accent-red), #ff6b6b);
      border: none;
      color: var(--text-primary);
      box-shadow: var(--shadow-sm);
    }
    
    .btn-small.primary:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }
    
    .btn-small.primary i {
      margin-left: var(--space-sm);
    }
    
    .hamburger {
      display: none;
      font-size: 24px;
      cursor: pointer;
      color: var(--text-primary);
      padding: var(--space-sm);
    }
    
    /* MOBILE SIDEBAR */
    .overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.8);
      z-index: 900;
      backdrop-filter: blur(4px);
    }
    
    .sidebar {
      position: fixed;
      top: 0;
      right: -280px;
      width: 280px;
      height: 100%;
      background: var(--bg-secondary);
      box-shadow: var(--shadow-xl);
      padding-top: 80px;
      transition: right var(--transition-base);
      z-index: 1001;
      overflow-y: auto;
    }
    
    .sidebar.active {
      right: 0;
    }
    
    .sidebar a {
      display: block;
      padding: var(--space-md) var(--space-lg);
      border-bottom: 1px solid var(--border-subtle);
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 14px;
      color: var(--text-secondary);
      transition: all var(--transition-fast);
    }
    
    .sidebar a:hover {
      background: var(--bg-hover);
      color: var(--accent-gold);
      padding-left: var(--space-xl);
    }
    
    .sidebar .closebtn {
      position: absolute;
      top: 20px;
      right: 20px;
      border: none;
      font-size: 32px;
      background: none;
      color: var(--text-primary);
      cursor: pointer;
      padding: var(--space-sm);
      line-height: 1;
    }
    
    /* HERO / SEARCH */
    .hero {
      background: linear-gradient(135deg, #1a0a0f 0%, #0a0a0a 50%, #0f0a1a 100%);
      padding: var(--space-3xl) var(--space-md) var(--space-2xl);
      position: relative;
      overflow: hidden;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
      pointer-events: none;
    }
    
    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: var(--space-2xl);
      align-items: center;
      position: relative;
      z-index: 1;
    }
    
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: var(--space-sm);
      padding: 6px 14px;
      border-radius: var(--radius-full);
      background: rgba(212, 175, 55, 0.15);
      border: 1px solid rgba(212, 175, 55, 0.3);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: var(--space-md);
      color: var(--accent-gold);
      font-weight: 600;
    }
    
    .hero-tag span.badge {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent-green);
      animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }
    
    .hero h1 {
      font-size: 42px;
      line-height: 1.2;
      margin: 0 0 var(--space-md);
      font-weight: 700;
      letter-spacing: -0.02em;
    }
    
    .hero h1 span {
      color: var(--accent-gold);
      display: inline-block;
    }
    
    .hero-sub {
      font-size: 16px;
      color: var(--text-secondary);
      max-width: 520px;
      margin-bottom: var(--space-lg);
      line-height: 1.7;
    }
    
    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-xl);
      margin-bottom: var(--space-xl);
      font-size: 14px;
    }
    
    .hero-stats div {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    
    .hero-stats strong {
      font-size: 28px;
      font-weight: 700;
      color: var(--accent-gold);
      line-height: 1;
    }
    
    .hero-stats span {
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: 12px;
    }
    
    .search-box {
      background: var(--bg-card);
      border-radius: var(--radius-lg);
      padding: var(--space-md);
      display: flex;
      gap: var(--space-md);
      align-items: center;
      border: 1px solid var(--border-subtle);
      box-shadow: var(--shadow-lg);
      max-width: 560px;
    }
    
    .search-box select {
      flex: 1;
      border: none;
      padding: 14px 16px;
      border-radius: var(--radius-md);
      font-size: 15px;
      outline: none;
      background: var(--bg-tertiary);
      color: var(--text-primary);
      cursor: pointer;
      transition: all var(--transition-fast);
    }
    
    .search-box select:hover {
      background: var(--bg-hover);
    }
    
    .search-box button {
      border: none;
      padding: 14px 24px;
      border-radius: var(--radius-md);
      background: linear-gradient(135deg, var(--accent-red), #ff4444);
      color: var(--text-primary);
      font-size: 15px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: var(--space-sm);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      transition: all var(--transition-base);
      box-shadow: var(--shadow-sm);
    }
    
    .search-box button:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }
    
    .search-note {
      margin-top: var(--space-md);
      font-size: 13px;
      color: var(--text-muted);
    }
    
    .hero-right-card {
      border-radius: var(--radius-xl);
      background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(220, 38, 38, 0.05));
      padding: var(--space-lg);
      box-shadow: var(--shadow-xl);
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
      border: 1px solid rgba(212, 175, 55, 0.2);
      backdrop-filter: blur(10px);
    }
    
    .hero-right-card h3 {
      margin: 0;
      font-size: 20px;
      font-weight: 700;
      color: var(--accent-gold);
    }
    
    .hero-right-card p {
      margin: 0;
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.6;
    }
    
    .hero-right-meta {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      color: var(--text-muted);
      padding: var(--space-sm) 0;
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
    }
    
    .hero-right-video {
      margin-top: var(--space-md);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 2px solid var(--border-subtle);
    }
    
    .hero-right-video video {
      display: block;
      width: 100%;
      height: auto;
    }
    
    /* BREADCRUMB */
    .breadcrumb {
      background: var(--bg-secondary);
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
      padding: var(--space-sm) var(--space-md);
    }
    
    .breadcrumb-inner {
      max-width: 1200px;
      margin: 0 auto;
      font-size: 13px;
      color: var(--accent-gold);
      display: flex;
      align-items: center;
      gap: var(--space-sm);
    }
    
    .breadcrumb a {
      color: var(--accent-gold);
      transition: opacity var(--transition-fast);
    }
    
    .breadcrumb a:hover {
      opacity: 0.8;
    }
    
    .breadcrumb span {
      color: var(--text-muted);
    }
    
    /* MAIN CONTAINER */
    .section {
      max-width: 1200px;
      margin: var(--space-2xl) auto;
      padding: 0 var(--space-md);
    }
    
    .pill-note {
      font-size: 14px;
      background: rgba(212, 175, 55, 0.1);
      border: 1px solid rgba(212, 175, 55, 0.3);
      border-radius: var(--radius-full);
      padding: 8px 16px;
      display: inline-flex;
      align-items: center;
      gap: var(--space-sm);
      margin-bottom: var(--space-md);
      color: var(--accent-gold);
      font-weight: 600;
    }
    
    .pill-note i {
      font-size: 14px;
    }
    
    .highlight-box {
      position: relative;
      background: linear-gradient(135deg, #1a0a0f, #0f0a1a);
      border-radius: var(--radius-xl);
      border: 1px solid var(--border-subtle);
      box-shadow: var(--shadow-lg);
      margin-bottom: var(--space-xl);
      overflow: hidden;
      padding: var(--space-xl);
    }
    
    .highlight-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-gold), var(--accent-red));
    }
    
    .highlight-box h2 {
      margin: 0 0 var(--space-md);
      font-size: 36px;
      font-weight: 700;
      color: var(--text-primary);
      letter-spacing: -0.02em;
    }
    
    .highlight-box h3 {
      margin: 0 0 var(--space-md);
      font-size: 24px;
      font-weight: 600;
      color: var(--accent-gold);
    }
    
    .highlight-box p {
      margin: 0;
      font-size: 16px;
      line-height: 1.8;
      color: var(--text-secondary);
    }
    
    .highlight-actions {
      margin-top: var(--space-lg);
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-md);
    }
    
    .btn-ghost {
      border-radius: var(--radius-full);
      border: 1px dashed var(--border-strong);
      padding: 10px 18px;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 600;
      color: var(--text-secondary);
      transition: all var(--transition-base);
      cursor: pointer;
      background: transparent;
    }
    
    .btn-ghost:hover {
      border-color: var(--accent-gold);
      color: var(--accent-gold);
      background: rgba(212, 175, 55, 0.1);
    }
    
    .btn-ghost i {
      margin-right: var(--space-sm);
    }
    
    /* SERVICE GRID */
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: var(--space-md);
      margin-bottom: var(--space-lg);
    }
    
    .section-header h2 {
      margin: 0;
      font-size: 28px;
      font-weight: 700;
      color: var(--text-primary);
      letter-spacing: -0.02em;
    }
    
    .section-header span {
      font-size: 14px;
      color: var(--text-muted);
    }
    
    .service-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-lg);
    }
    
    .card {
      background: var(--bg-card);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      position: relative;
      transition: all var(--transition-base);
      border: 1px solid var(--border-subtle);
    }
    
    .card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-xl);
      border-color: rgba(212, 175, 55, 0.3);
    }
    
    .card img {
      display: block;
      width: 100%;
      aspect-ratio: 3 / 4;
      object-fit: cover;
      object-position: top;
      background: var(--bg-primary);
      transition: transform var(--transition-slow);
    }
    
    .card:hover img {
      transform: scale(1.05);
    }
    
    .tag-verified {
      position: absolute;
      top: var(--space-md);
      right: var(--space-md);
      padding: 6px 12px;
      font-size: 11px;
      font-weight: 700;
      border-radius: var(--radius-full);
      background: var(--accent-green);
      color: #000;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      box-shadow: var(--shadow-sm);
    }
    
    .card-body {
      padding: var(--space-md);
    }
    
    .card-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 4px;
      color: var(--text-primary);
    }
    
    .card-meta {
      font-size: 13px;
      color: var(--text-muted);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 4px;
      margin-bottom: var(--space-sm);
    }
    
    .rating {
      font-size: 13px;
      color: var(--accent-gold);
      font-weight: 600;
    }
    
    .card-footer {
      display: flex;
      margin-top: var(--space-md);
      gap: var(--space-sm);
    }
    
    .btn-card {
      flex: 1;
      padding: 10px;
      border-radius: var(--radius-md);
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      text-decoration: none;
      transition: all var(--transition-base);
    }
    
    .btn-call {
      background: var(--accent-red);
      color: var(--text-primary);
    }
    
    .btn-call:hover {
      background: var(--accent-red-dark);
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }
    
    .btn-wa {
      background-color: var(--accent-green);
      color: #000;
      font-weight: 700;
      border: 2px solid var(--accent-green);
    }
    
    .btn-wa:hover,
    .btn-wa:focus {
      background-color: var(--accent-green-dark);
      color: #000;
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }
    
    /* VIDEO SECTION */
    .video-section {
      margin-top: var(--space-2xl);
    }
    
    .video-shell {
      border-radius: var(--radius-xl);
      border: 1px solid var(--border-subtle);
      padding: var(--space-lg);
      background: linear-gradient(135deg, #1a0a0f, var(--bg-primary));
      box-shadow: var(--shadow-xl);
    }
    
    .video-shell-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: var(--space-md);
      font-size: 14px;
      color: var(--text-secondary);
    }
    
    .video-shell-header span strong {
      font-size: 16px;
      color: var(--accent-gold);
    }
    
    .video-shell-inner {
      border-radius: var(--radius-md);
      overflow: hidden;
    }
    
    .video-shell video {
      width: 100%;
      display: block;
    }
    
    /* CTA Wrapper */
    .mobile-cta {
      display: none;
    }
    
    /* TABLES */
    .table-block {
      margin-top: var(--space-2xl);
    }
    
    .table-title {
      background: var(--accent-gold);
      color: var(--bg-primary);
      padding: var(--space-md) var(--space-lg);
      font-weight: 700;
      border-radius: var(--radius-md) var(--radius-md) 0 0;
      font-size: 18px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    
    table {
      width: 100%;
      border-collapse: collapse;
      background: var(--bg-card);
      border-radius: 0 0 var(--radius-md) var(--radius-md);
      overflow: hidden;
      font-size: 15px;
      box-shadow: var(--shadow-md);
    }
    
    th,
    td {
      padding: var(--space-md) var(--space-lg);
      border-bottom: 1px solid var(--border-subtle);
      text-align: left;
    }
    
    th {
      background: rgba(212, 175, 55, 0.15);
      font-weight: 700;
      color: var(--accent-gold);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-size: 14px;
    }
    
    td {
      color: var(--text-secondary);
    }
    
    tr:last-child td {
      border-bottom: none;
    }
    
    tr:hover td {
      background: var(--bg-hover);
    }
    
    /* TAGS */
    .tags-section {
      margin-top: var(--space-2xl);
      border-top: 1px solid var(--border-subtle);
      padding-top: var(--space-lg);
    }
    
    .tags-title {
      font-size: 20px;
      color: var(--text-primary);
      margin-bottom: var(--space-md);
      display: flex;
      align-items: center;
      gap: var(--space-sm);
      font-weight: 700;
    }
    
    .tags-container {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-sm);
    }
    
    .tag-btn {
      font-size: 13px;
      font-weight: 600;
      padding: 8px 14px;
      border-radius: var(--radius-full);
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all var(--transition-fast);
    }
    
    .tag-btn:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }
    
    .tag-pink { background: #fecaca; color: #111827; }
    .tag-blue { background: #bfdbfe; color: #111827; }
    .tag-green { background: #bbf7d0; color: #111827; }
    .tag-purple { background: #e9d5ff; color: #111827; }
    .tag-orange { background: #fed7aa; color: #111827; }
    .tag-grey { background: #e5e7eb; color: #111827; }
    .tag-cyan { background: #bae6fd; color: #111827; }
    
    /* FAQ */
    .faq-section {
      margin-top: var(--space-2xl);
      background: linear-gradient(135deg, #1a0a0f, #0f0a1a);
      border-radius: var(--radius-xl);
      padding: var(--space-xl) var(--space-lg);
      border: 1px solid var(--border-subtle);
      box-shadow: var(--shadow-lg);
    }
    
    .faq-title {
      font-size: 28px;
      margin: 0 0 var(--space-lg);
      font-weight: 700;
      color: var(--text-primary);
    }
    
    .faq-item {
      margin-bottom: var(--space-lg);
    }
    
    .faq-question {
      background: var(--bg-card);
      color: var(--text-primary);
      border-radius: var(--radius-md);
      padding: var(--space-md) var(--space-lg);
      font-weight: 600;
      font-size: 15px;
      cursor: default;
      border: 1px solid var(--border-subtle);
      transition: all var(--transition-fast);
    }
    
    .faq-question:hover {
      border-color: var(--accent-gold);
      background: var(--bg-hover);
    }
    
    .faq-answer {
      margin-top: var(--space-sm);
      font-size: 14px;
      line-height: 1.8;
      color: var(--text-secondary);
      padding-left: var(--space-md);
      border-left: 3px solid var(--accent-gold);
    }
    
    /* LOCATIONS */
    .locations-section {
      margin-top: var(--space-2xl);
      background: linear-gradient(135deg, #1a0a0f, #0f0a1a);
      border-radius: var(--radius-xl);
      padding: var(--space-xl) var(--space-lg);
      border: 1px solid var(--border-subtle);
      box-shadow: var(--shadow-lg);
    }
    
    .locations-section h2 {
      margin: 0 0 var(--space-lg);
      font-size: 24px;
      font-weight: 700;
      color: var(--text-primary);
    }
    
    .locations-grid {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-md);
    }
    
    .loc-btn {
      padding: 10px 18px;
      border-radius: var(--radius-full);
      font-size: 14px;
      font-weight: 600;
      text-transform: capitalize;
      box-shadow: var(--shadow-sm);
      transition: all var(--transition-base);
      border: none;
      cursor: pointer;
    }
    
    .loc-btn:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }
    
    .btn-red { background: #f97373; color: #111827; }
    .btn-green { background: #4ade80; color: #052e16; }
    .btn-blue { background: #60a5fa; color: #0b1120; }
    .btn-pink { background: #fb7185; color: #111827; }
    .btn-orange { background: #fdba74; color: #111827; }
    .btn-purple { background-color: #6A1B9A; color: #FFFFFF; font-weight: 700; border: 2px solid #6A1B9A; }
    .btn-cyan { background: #22d3ee; color: #083344; }
    
    /* FOOTER */
    .main-footer {
      background: var(--bg-secondary);
      border-top: 3px solid var(--accent-gold);
      padding: var(--space-3xl) var(--space-md) 120px;
      color: var(--text-secondary);
      font-size: 14px;
      margin-top: var(--space-3xl);
    }
    
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: var(--space-xl);
    }
    
    .footer-col h3 {
      color: var(--text-primary);
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-top: 0;
      margin-bottom: var(--space-lg);
      border-left: 3px solid var(--accent-red);
      padding-left: var(--space-md);
      font-weight: 700;
    }
    
    .footer-logo {
      font-size: 22px;
      font-weight: 800;
      color: var(--accent-gold);
      margin-bottom: var(--space-md);
      display: flex;
      align-items: center;
      gap: var(--space-sm);
    }
    
    .footer-desc {
      line-height: 1.8;
      color: var(--text-muted);
      margin-bottom: var(--space-lg);
    }
    
    .footer-socials {
      display: flex;
      gap: var(--space-md);
    }
    
    .footer-socials a {
      width: 40px;
      height: 40px;
      background: var(--bg-tertiary);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all var(--transition-base);
      color: var(--text-primary);
      border: 1px solid var(--border-subtle);
    }
    
    .footer-socials a:hover {
      background: var(--accent-gold);
      color: var(--bg-primary);
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }
    
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .footer-links li {
      margin-bottom: var(--space-md);
    }
    
    .footer-links a {
      color: var(--text-muted);
      transition: all var(--transition-fast);
      display: block;
    }
    
    .footer-links a:hover {
      color: var(--accent-gold);
      padding-left: var(--space-sm);
    }
    
    .two-col-links {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 var(--space-md);
    }
    
    .footer-contact {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .footer-contact li {
      display: flex;
      gap: var(--space-md);
      margin-bottom: var(--space-md);
      align-items: flex-start;
    }
    
    .footer-contact i {
      color: var(--accent-gold);
      margin-top: 3px;
    }
    
    .footer-divider {
      height: 1px;
      background: var(--border-subtle);
      margin: var(--space-2xl) 0 var(--space-lg);
    }
    
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: var(--space-lg);
    }
    
    .legal-text p {
      margin: 0 0 var(--space-xs);
      font-size: 13px;
      color: var(--text-dim);
    }
    
    .legal-links {
      display: flex;
      gap: var(--space-lg);
    }
    
    .legal-links a {
      font-size: 13px;
      color: var(--text-muted);
      text-decoration: underline;
      transition: color var(--transition-fast);
    }
    
    .legal-links a:hover {
      color: var(--accent-gold);
    }
    
    /* AGE MODAL */
    .age-modal {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      backdrop-filter: blur(8px);
    }
    
    .age-box {
      max-width: 440px;
      background: linear-gradient(135deg, #1a0a0f, #0f0a1a);
      padding: var(--space-xl);
      border-radius: var(--radius-xl);
      text-align: center;
      color: var(--text-primary);
      box-shadow: var(--shadow-xl);
      border: 1px solid rgba(212, 175, 55, 0.3);
    }
    
    .age-box h2 {
      margin-bottom: var(--space-md);
      font-size: 24px;
      color: var(--accent-gold);
    }
    
    .age-box p {
      font-size: 15px;
      line-height: 1.7;
      color: var(--text-secondary);
    }
    
    .age-actions {
      display: flex;
      gap: var(--space-md);
      margin-top: var(--space-lg);
    }
    
    .age-actions button {
      flex: 1;
      padding: 14px;
      border-radius: var(--radius-md);
      border: none;
      cursor: pointer;
      font-weight: 700;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      transition: all var(--transition-base);
    }
    
    .btn-yes {
      background: var(--accent-gold);
      color: var(--bg-primary);
    }
    
    .btn-yes:hover {
      background: var(--accent-gold-light);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }
    
    .btn-no {
      background: var(--bg-tertiary);
      color: var(--text-primary);
      border: 1px solid var(--border-medium);
    }
    
    .btn-no:hover {
      background: var(--bg-hover);
      border-color: var(--accent-red);
    }
    
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    
    /* STICKY FOOTER */
    .sticky-footer {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      z-index: 9999;
      box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    }
    
    .sticky-btn {
      flex: 1;
      text-align: center;
      padding: 16px;
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      transition: all var(--transition-fast);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-sm);
    }
    
    .sticky-btn.sticky-call {
      background-color: var(--accent-red);
      color: var(--text-primary);
      border: 2px solid var(--accent-red);
    }
    
    .sticky-btn.sticky-call:hover,
    .sticky-btn.sticky-call:focus,
    .sticky-btn.sticky-call:visited {
      background-color: var(--accent-red-dark);
      color: var(--text-primary);
    }
    
    .sticky-btn.sticky-wa {
      background-color: var(--accent-green);
      color: #000;
      border: 2px solid var(--accent-green);
    }
    
    .sticky-btn.sticky-wa:hover,
    .sticky-btn.sticky-wa:focus,
    .sticky-btn.sticky-wa:visited {
      background-color: var(--accent-green-dark);
      color: #000;
    }
    
    .sticky-wa:focus-visible {
      outline: 3px solid var(--accent-gold);
      outline-offset: 3px;
    }
    
    /* RATES TABLE */
    .rates-section {
      padding: var(--space-3xl) var(--space-md);
      width: 100%;
    }
    
    .rates-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .rates-heading {
      text-align: center;
      margin-bottom: var(--space-xl);
    }
    
    .rates-heading h2 {
      margin: 0;
      font-size: 36px;
      font-weight: 700;
      color: var(--accent-pink);
      letter-spacing: -0.02em;
    }
    
    .rates-table-wrapper {
      width: 100%;
      overflow-x: auto;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
    }
    
    .rates-table {
      width: 100%;
      min-width: 750px;
      border-collapse: separate;
      border-spacing: 4px;
    }
    
    .rates-table thead th {
      background: var(--accent-pink);
      color: var(--text-primary);
      font-size: 18px;
      font-weight: 700;
      padding: var(--space-lg) var(--space-md);
      text-align: center;
      border: none;
    }
    
    .rates-table thead th:first-child {
      border-radius: var(--radius-lg) 0 0 0;
    }
    
    .rates-table thead th:last-child {
      border-radius: 0 var(--radius-lg) 0 0;
    }
    
    .rates-table tbody td {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      padding: var(--space-lg) var(--space-md);
      text-align: center;
      font-size: 16px;
      font-weight: 600;
      color: var(--text-secondary);
      transition: all var(--transition-base);
    }
    
    .rates-table tbody tr:hover td {
      background: rgba(233, 30, 99, 0.1);
      border-color: var(--accent-pink);
    }
    
    .rates-table tbody td:first-child {
      font-weight: 700;
      color: var(--text-primary);
    }
    
    .rates-actions {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: var(--space-lg);
      margin-top: var(--space-xl);
      flex-wrap: wrap;
    }
    
    .rates-actions a {
      min-width: 220px;
      text-align: center;
      text-decoration: none;
      padding: var(--space-md) var(--space-lg);
      border-radius: var(--radius-md);
      font-weight: 700;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      transition: all var(--transition-base);
    }
    
    .rates-call {
      background: var(--accent-pink);
      color: var(--text-primary);
    }
    
    .rates-call:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }
    
    .rates-whatsapp {
      background: transparent;
      color: var(--accent-pink);
      border: 2px solid var(--accent-pink);
    }
    
    .rates-whatsapp:hover {
      background: var(--accent-pink);
      color: var(--text-primary);
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }
    
    .rates-actions .btn-card {
      min-width: 220px;
      justify-content: center;
    }
    
    .hero-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    border-radius: 20px;
    background: #111;
}

    /* RESPONSIVE DESIGN */
    @media (max-width: 1024px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
      }
      
      .hero-right-card {
        max-width: 500px;
        margin: 0 auto;
      }
      
      .service-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    
    @media (max-width: 900px) {
      .service-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
      }
    }
    
    @media (max-width: 768px) {
      nav ul {
        display: none;
      }
      
      .header-cta {
        display: none;
      }
      
      .hamburger {
        display: block;
      }
      
      .hero {
        padding: var(--space-2xl) var(--space-md) var(--space-xl);
      }
      
      .hero h1 {
        font-size: 32px;
      }
      
      .hero-stats {
        gap: var(--space-lg);
      }
      
      .hero-stats strong {
        font-size: 24px;
      }
      
      .service-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .card img {
        height: 400px;
      }
      
      .locations-section,
      .faq-section {
        padding: var(--space-lg) var(--space-md);
      }
      
      .tags-container {
        gap: 6px;
      }
      
      .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
      }
      
      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
      
      .two-col-links {
        grid-template-columns: 1fr 1fr;
      }
      
      .rates-section {
        padding: var(--space-2xl) var(--space-md);
      }
      
      .rates-heading h2 {
        font-size: 28px;
      }
      
      .rates-table-wrapper {
        border-radius: var(--radius-md);
      }
      
      .rates-table {
        min-width: 650px;
      }
      
      .rates-table thead th {
        font-size: 15px;
        padding: var(--space-md) var(--space-sm);
      }
      
      .rates-table tbody td {
        font-size: 14px;
        padding: var(--space-md) var(--space-sm);
      }
      
      .rates-actions {
        gap: var(--space-md);
      }
      
      .rates-actions a {
        width: 100%;
        max-width: 350px;
      }
    }
    
    @media (max-width: 600px) {
      .service-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
      }
      
      .card img {
        height: 360px;
      }
      
      .card-title {
        font-size: 16px;
      }
      
      .hero-stats {
        gap: var(--space-md);
      }
      
      .search-box {
        flex-direction: column;
        align-items: stretch;
      }
      
      .sticky-btn {
        font-size: 14px;
        padding: 14px var(--space-sm);
      }
      
      .highlight-box {
        padding: var(--space-lg);
      }
      
      .highlight-box h2 {
        font-size: 28px;
      }
      
      .highlight-box h3 {
        font-size: 20px;
      }
      
      .section-header h2 {
        font-size: 24px;
      }
    }
    
    @media (max-width: 480px) {
      .hero h1 {
        font-size: 28px;
      }
      
      .hero-sub {
        font-size: 15px;
      }
      
      .card-footer {
        flex-direction: column;
      }
      
      .btn-card {
        width: 100%;
      }
      
      .age-actions {
        flex-direction: column;
      }
      
      .age-actions button {
        width: 100%;
      }
    }
    
    /* =========================================
   HERO IMAGE SLIDESHOW - FULL UPDATED CSS
========================================= */

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 650px;
    min-height: 650px;
    overflow: hidden;
    background: #000;
}

/* All slideshow images */
.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: block;

    /* Show full image */
    object-fit: contain;
    object-position: center center;

    /* Hide inactive images */
    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.8s ease-in-out,
        visibility 0s linear 0.8s;

    z-index: 1;

    pointer-events: none;
}

/* Only active image visible */
.hero-slideshow .slide.active {
    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.8s ease-in-out,
        visibility 0s linear 0s;

    z-index: 2;
}

/* Desktop */
@media (min-width: 1200px) {
    .hero-slideshow {
        height: 650px;
        min-height: 650px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-slideshow {
        height: 600px;
        min-height: 600px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-slideshow {
        height: 500px;
        min-height: 500px;
        width: 100%;
    }

    .hero-slideshow .slide {
        object-position: center center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-slideshow {
        height: 450px;
        min-height: 450px;
    }
}