/* --------------------------------------------------
       1. DESIGN SYSTEM & RESET
       -------------------------------------------------- */
    :root {
      /* Colors */
      --primary: #0284c7;          /* Sky 700 - Accent */
      --primary-light: #e0f2fe;    /* Sky 100 - Pastel Accent BG */
      --primary-hover: #0369a1;    /* Sky 800 */
      --accent: #38bdf8;           /* Sky 400 */
      --accent-light: #f0f9ff;     /* Sky 50 */
      
      --neutral-50: #f8fafc;       /* Lightest Gray */
      --neutral-100: #f1f5f9;      /* Light Gray Border/BG */
      --neutral-200: #e2e8f0;      /* Border */
      --neutral-300: #cbd5e1;      /* Muted Border */
      --neutral-600: #475569;      /* Body Text */
      --neutral-800: #1e293b;      /* Headings */
      --neutral-900: #0f172a;      /* Dark Headings */
      
      --white: #ffffff;
      --success: #10b981;          /* Green for success states */
      
      /* Typography */
      --font-body: 'Inter', sans-serif;
      --font-heading: 'Poppins', sans-serif;
      --font-brand: 'Montserrat', sans-serif;
      
      /* Layout & Shadows */
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --radius-full: 9999px;
      
      --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
      --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.04), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
      --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.06);
      --shadow-premium: 0 25px 50px -12px rgba(15, 23, 42, 0.08);
      
      /* Transitions */
      --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
      --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      
      /* Scroll padding for navbar */
      scroll-behavior: smooth;
      scroll-padding-top: 66px;
    }

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

    body {
      font-family: var(--font-body);
      color: var(--neutral-600);
      background-color: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
      color: var(--neutral-900);
      font-weight: 600;
      line-height: 1.25;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition-fast);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    button, input, textarea, select {
      font-family: inherit;
      font-size: inherit;
      border: none;
      outline: none;
      background: none;
    }

    ul {
      list-style: none;
    }

    /* --------------------------------------------------
       2. REUSABLE UTILITIES
       -------------------------------------------------- */
    .container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .section-padding {
      padding: 100px 0;
    }

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

    .section-header {
      text-align: center;
      max-width: 650px;
      margin: 0 auto 60px auto;
    }

    .section-header h2 {
      font-size: 2.25rem;
      margin-bottom: 16px;
      position: relative;
      display: inline-block;
    }

    .section-header h2::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: var(--accent);
      border-radius: var(--radius-full);
      z-index: 2;
      pointer-events: none;
    }

    .section-header p {
      font-size: 1.125rem;
      color: var(--neutral-600);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 28px;
      border-radius: var(--radius-full);
      z-index: 2;
      pointer-events: none;
      font-weight: 500;
      font-family: var(--font-heading);
      cursor: pointer;
      transition: var(--transition-normal);
      white-space: nowrap;
    }

    .btn-primary {
      background-color: var(--primary);
      color: var(--white);
      box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
    }

    .btn-primary:hover {
      background-color: var(--primary-hover);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
    }

    .btn-secondary {
      background-color: var(--primary-light);
      color: var(--primary);
      border: 1px solid rgba(2, 132, 199, 0.1);
    }

    .btn-secondary:hover {
      background-color: rgba(2, 132, 199, 0.15);
      transform: translateY(-2px);
    }

    .btn-outline {
      border: 2px solid var(--primary);
      color: var(--primary);
    }

    .btn-outline:hover {
      background-color: var(--primary-light);
      transform: translateY(-2px);
    }

    .badge {
      display: inline-block;
      padding: 6px 14px;
      background-color: var(--primary-light);
      color: var(--primary);
      border-radius: var(--radius-full);
      z-index: 2;
      pointer-events: none;
      font-size: 0.875rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* --------------------------------------------------
       3. ANIMATION CLASSES (Intersection Observer)
       -------------------------------------------------- */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity var(--transition-slow), transform var(--transition-slow);
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.15s; }
    .reveal-delay-2 { transition-delay: 0.3s; }
    .reveal-delay-3 { transition-delay: 0.45s; }
    .reveal-delay-4 { transition-delay: 0.6s; }

    @media (prefers-reduced-motion: reduce) {
      .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }
    }

    /* --------------------------------------------------
       4. HEADER & NAVBAR
       -------------------------------------------------- */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      transition: var(--transition-normal);
      padding: 14px 0;
    }

    header.scrolled {
      background-color: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: none;
      padding: 8px 0;
      border-bottom: 1px solid rgba(2, 132, 199, 0.08);
    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      transition: var(--transition-normal);
    }

    .logo-image {
      width: 140px;
      height: 38px;
      background-color: var(--white);
      -webkit-mask-image: url('https://i.ibb.co/F45MMsDG/rijwielhuisdrunenlogo.png');
      mask-image: url('https://i.ibb.co/F45MMsDG/rijwielhuisdrunenlogo.png');
      -webkit-mask-size: contain;
      mask-size: contain;
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-position: left center;
      mask-position: left center;
      transition: background-color var(--transition-normal);
    }

    header.scrolled .logo-image {
      background-color: var(--primary);
    }

    .mobile-drawer .logo-image {
      background-color: var(--primary);
    }

    .footer-logo .logo-image {
      background-color: var(--white);
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 36px;
    }

    .nav-link {
      font-family: var(--font-heading);
      font-weight: 500;
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.85);
      position: relative;
      padding: 8px 0;
      transition: var(--transition-normal);
    }

    .nav-link:hover, .nav-link.active {
      color: var(--white);
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--accent);
      transition: var(--transition-normal);
      border-radius: var(--radius-full);
      z-index: 2;
      pointer-events: none;
    }

    .nav-link:hover::after, .nav-link.active::after {
      width: 100%;
    }

    header.scrolled .nav-link {
      color: var(--neutral-600);
    }

    header.scrolled .nav-link:hover, header.scrolled .nav-link.active {
      color: var(--primary);
    }

    header.scrolled .nav-link::after {
      background-color: var(--primary);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    /* Mobile Menu Toggle */
    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 24px;
      height: 18px;
      cursor: pointer;
      z-index: 1001;
    }

    .menu-toggle span {
      width: 100%;
      height: 2px;
      background-color: var(--white);
      border-radius: var(--radius-full);
      z-index: 2;
      pointer-events: none;
      transition: var(--transition-normal);
    }

    header.scrolled .menu-toggle span {
      background-color: var(--primary);
    }

    /* --------------------------------------------------
       5. MOBILE MENU DRAWER
       -------------------------------------------------- */
    .mobile-drawer {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      max-width: 320px;
      height: 100vh;
      background-color: var(--white);
      z-index: 1005;
      box-shadow: var(--shadow-xl);
      padding: 40px 30px;
      display: flex;
      flex-direction: column;
      gap: 40px;
      transition: right var(--transition-normal);
    }

    /* Mobile drawer logo rules handled globally by .mobile-drawer .logo-image */

    .mobile-drawer.open {
      right: 0;
    }

    .mobile-drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .close-drawer {
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--neutral-600);
      transition: var(--transition-fast);
    }

    .close-drawer:hover {
      color: var(--primary);
    }

    .mobile-nav {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .mobile-nav-link {
      font-family: var(--font-heading);
      font-size: 1.15rem;
      font-weight: 500;
      color: var(--neutral-800);
      padding-bottom: 8px;
      border-bottom: 1px solid var(--neutral-100);
    }

    .mobile-nav-link:hover, .mobile-nav-link.active {
      color: var(--primary);
      border-bottom-color: var(--primary);
    }

    .mobile-drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(15, 23, 42, 0.4);
      backdrop-filter: blur(4px);
      z-index: 1004;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition-normal);
    }

    .mobile-drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    @media (max-width: 992px) {
      .nav-menu, .header-actions .btn {
        display: none;
      }
      .menu-toggle {
        display: flex;
      }
    }

    /* --------------------------------------------------
       6. HERO SECTION
       -------------------------------------------------- */
    .hero {
      position: relative;
      min-height: 85vh;
      display: flex;
      align-items: center;
      padding-top: 100px;
      background-image: url('/wp-content/uploads/2026/06/johannes-kopf-BjEGGqiIRxY-unsplash.webp');
      background-size: cover;
      background-position: 25% center;
      background-repeat: no-repeat;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, rgba(15, 23, 42, 0.92) 20%, rgba(15, 23, 42, 0.75) 60%, rgba(15, 23, 42, 0.50) 100%);
      z-index: 1;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: rgba(56, 189, 248, 0.12);
      color: var(--accent);
      padding: 8px 16px;
      border-radius: var(--radius-full);
      z-index: 2;
      pointer-events: none;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 20px;
      border: 1px solid rgba(56, 189, 248, 0.25);
      box-shadow: 0 4px 15px rgba(56, 189, 248, 0.05);
    }

    .hero .container {
      position: relative;
      z-index: 2;
    }

    .hero-content {
      max-width: 620px;
    }

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 24px;
      color: var(--white);
    }

    .hero h1 span {
      background: linear-gradient(120deg, var(--accent) 0%, #a5f3fc 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-family: var(--font-brand);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-weight: 800;
    }

    .hero p {
      font-size: 1.25rem;
      color: var(--neutral-100);
      margin-bottom: 40px;
      line-height: 1.5;
    }

    .hero-buttons {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 48px;
    }

    .hero .btn-secondary {
      background-color: rgba(255, 255, 255, 0.1);
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .hero .btn-secondary:hover {
      background-color: rgba(255, 255, 255, 0.2);
      border-color: rgba(255, 255, 255, 0.4);
      color: var(--white);
    }

    .hero-usp {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    .usp-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--white);
    }

    .usp-item svg, .usp-item i {
      color: var(--accent);
    }

    /* Scroll Indicator Removed */

    @media (max-width: 768px) {
      .hero {
        background-position: 30% center;
        text-align: center;
      }
      .hero-overlay {
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.75) 100%);
      }
      .hero h1 {
        font-size: 2.5rem;
      }
      .hero p {
        font-size: 1.1rem;
      }
      .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
      }
      .hero-buttons .btn {
        width: 100%;
      }
      .hero-usp {
        justify-content: center;
        gap: 16px;
      }
      .about-badge {
        bottom: 12px;
        left: 12px;
        padding: 8px 14px;
        gap: 8px;
        border: none;
        box-shadow: var(--shadow-md);
      }
      .about-badge .years {
        font-size: 1.4rem;
      }
      .about-badge .label {
        font-size: 0.65rem;
      }
      .about-feature-text p {
        font-size: 11px;
      }
    }

    /* --------------------------------------------------
       7. OVER ONS SECTION
       -------------------------------------------------- */
    .about-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 60px;
      align-items: center;
    }

    .about-image-wrapper {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-xl);
    }

    .about-image-wrapper::before {
      content: '';
      position: absolute;
      inset: 0;
      border: none;
      border-radius: var(--radius-lg);
      pointer-events: none;
      z-index: 2;
    }

    .about-badge {
      position: absolute;
      bottom: 30px;
      left: 30px;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 18px 24px;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-lg);
      z-index: 3;
      display: flex;
      align-items: center;
      gap: 16px;
      border: 1px solid rgba(255, 255, 255, 0.4);
    }

    .about-badge .years {
      font-size: 2.25rem;
      font-weight: 800;
      color: var(--primary);
      font-family: var(--font-heading);
      line-height: 1;
    }

    .about-badge .label {
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      color: var(--neutral-800);
      line-height: 1.2;
    }

    .about-content h2 {
      font-size: 2.25rem;
      margin-bottom: 24px;
      color: var(--neutral-900);
    }

    .about-content .lead {
      font-size: 1.125rem;
      color: var(--neutral-900);
      font-weight: 500;
      margin-bottom: 20px;
    }

    .about-content p {
      margin-bottom: 28px;
    }

    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .about-feature-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .about-feature-icon {
      background-color: var(--primary-light);
      color: var(--primary);
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .about-feature-icon svg, .about-feature-icon i {
      width: 16px;
      height: 16px;
    }

    .about-feature-text h4 {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .about-feature-text p {
      font-size: 0.85rem;
      color: var(--neutral-600);
      margin-bottom: 0;
    }

    @media (max-width: 992px) {
      .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .about-image-wrapper {
        order: 2;
        max-width: 600px;
        margin: 0 auto;
      }
    }

    /* --------------------------------------------------
       8. BICYCLE CATALOGUE
       -------------------------------------------------- */
    .catalog {
      background-color: var(--neutral-50);
    }

    .catalog-filters {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-bottom: 50px;
      flex-wrap: wrap;
    }

    .filter-btn {
      padding: 10px 24px;
      background-color: var(--white);
      border: 1px solid var(--neutral-200);
      border-radius: var(--radius-full);
      z-index: 2;
      pointer-events: none;
      font-weight: 500;
      font-family: var(--font-heading);
      cursor: pointer;
      transition: var(--transition-normal);
      font-size: 0.9rem;
      color: var(--neutral-600);
    }

    .filter-btn:hover {
      background-color: var(--neutral-100);
      border-color: var(--neutral-300);
    }

    .filter-btn.active {
      background-color: var(--primary);
      border-color: var(--primary);
      color: var(--white);
      box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 30px;
    }

    @media (max-width: 480px) {
      .product-grid {
        grid-template-columns: 1fr;
      }
    }

    .bike-card {
      background-color: var(--white);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--neutral-100);
      transition: transform var(--transition-normal), box-shadow var(--transition-normal);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .bike-card.is-extra-bike {
      display: none;
    }

    .bike-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-premium);
    }

    .bike-img-container {
      position: relative;
      height: 240px;
      background-color: #f1f5f9;
      overflow: hidden;
    }

    .bike-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform var(--transition-slow);
    }

    .bike-card:hover img {
      transform: scale(1.05);
    }

    .bike-tag {
      position: absolute;
      top: 16px;
      left: 16px;
      background-color: rgba(255, 255, 255, 0.95);
      color: var(--primary);
      font-weight: 600;
      font-size: 0.75rem;
      padding: 6px 14px;
      border-radius: var(--radius-full);
      z-index: 2;
      pointer-events: none;
      box-shadow: var(--shadow-sm);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .bike-content {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .bike-name {
      font-size: 1.25rem;
      margin-bottom: 8px;
      font-weight: 700;
    }

    .bike-description {
      font-size: 0.9rem;
      color: var(--neutral-600);
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .bike-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 16px;
      border-top: 1px solid var(--neutral-100);
    }

    .bike-price {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--neutral-900);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .bike-price span {
      font-size: 0.85rem;
      color: var(--neutral-600);
      font-weight: 400;
    }

    .bike-footer .btn {
      flex-shrink: 0;
      font-size: 0.8rem;
      padding: 6px 12px;
    }

    /* --------------------------------------------------
       9. DETAIL MODAL
       -------------------------------------------------- */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background-color: rgba(15, 23, 42, 0.6);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition-normal);
    }

    .modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .modal-card {
      background-color: var(--white);
      width: 100%;
      max-width: 800px;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-premium);
      overflow: hidden;
      position: relative;
      transform: scale(0.9);
      opacity: 0;
      transition: transform var(--transition-normal), opacity var(--transition-normal);
      display: flex;
      flex-direction: column;
      max-height: 90vh;
    }

    .modal-overlay.active .modal-card {
      transform: scale(1);
      opacity: 1;
    }

    .close-modal {
      position: absolute;
      top: 20px;
      right: 20px;
      background-color: rgba(255, 255, 255, 0.9);
      color: var(--neutral-900);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: var(--shadow-md);
      z-index: 10;
      transition: var(--transition-normal);
    }

    .close-modal:hover {
      background-color: var(--primary);
      color: var(--white);
    }

    .modal-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      height: 100%;
      overflow-y: auto;
    }

    .modal-img-container {
      height: 100%;
      min-height: 300px;
      background-color: #f1f5f9;
    }

    .modal-img-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .modal-details {
      padding: 40px;
      display: flex;
      flex-direction: column;
      overflow-y: auto;
    }

    .modal-tag {
      align-self: flex-start;
      margin-bottom: 12px;
    }

    .modal-title {
      font-size: 1.75rem;
      margin-bottom: 8px;
    }

    .modal-price {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 20px;
    }

    .modal-desc {
      font-size: 0.95rem;
      margin-bottom: 24px;
      line-height: 1.6;
    }

    .modal-specs-title {
      font-size: 1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 12px;
      border-bottom: 2px solid var(--neutral-100);
      padding-bottom: 6px;
    }

    .modal-specs {
      display: grid;
      gap: 8px;
      margin-bottom: 30px;
    }

    .spec-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.85rem;
      padding: 6px 0;
      border-bottom: 1px dashed var(--neutral-100);
    }

    .spec-label {
      font-weight: 600;
      color: var(--neutral-800);
    }

    .spec-value {
      color: var(--neutral-600);
    }

    .modal-cta {
      display: flex;
      gap: 12px;
    }

    .modal-cta button {
      flex: 1;
    }

    @media (max-width: 768px) {
      .modal-grid {
        grid-template-columns: 1fr;
      }
      .modal-img-container {
        height: 250px;
        min-height: auto;
      }
      .modal-details {
        padding: 24px;
      }
    }

    /* --------------------------------------------------
       10. WHY CHOOSE US
       -------------------------------------------------- */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .benefit-card {
      background-color: var(--white);
      border-radius: var(--radius-md);
      padding: 32px;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--neutral-100);
      transition: transform var(--transition-normal), box-shadow var(--transition-normal);
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .benefit-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-premium);
      border-color: rgba(2, 132, 199, 0.15);
    }

    .benefit-icon {
      background-color: var(--primary-light);
      color: var(--primary);
      width: 56px;
      height: 56px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition-normal);
    }

    .benefit-card:hover .benefit-icon {
      background-color: var(--primary);
      color: var(--white);
    }

    .benefit-title {
      font-size: 1.2rem;
      font-weight: 700;
    }

    .benefit-desc {
      font-size: 0.9rem;
      color: var(--neutral-600);
      line-height: 1.5;
    }

    /* why choose us dark mode */
    .why-choose-us {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      position: relative;
    }

    .why-choose-us .section-header h2 {
      color: var(--white);
    }

    .why-choose-us .section-header p {
      color: var(--neutral-300);
    }

    .why-choose-us .benefit-card {
      background-color: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      transition: transform var(--transition-normal), border-color var(--transition-normal), background-color var(--transition-normal), box-shadow var(--transition-normal);
    }

    .why-choose-us .benefit-card:hover {
      transform: translateY(-6px);
      background-color: rgba(255, 255, 255, 0.06);
      border-color: rgba(56, 189, 248, 0.35);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    }

    .why-choose-us .benefit-icon {
      background-color: rgba(56, 189, 248, 0.1);
      color: var(--accent);
    }

    .why-choose-us .benefit-card:hover .benefit-icon {
      background-color: var(--primary);
      color: var(--white);
    }

    .why-choose-us .benefit-title {
      color: var(--white);
    }

    .why-choose-us .benefit-desc {
      color: var(--neutral-300);
    }

    /* --------------------------------------------------
       11. WORKSHOP SECTION
       -------------------------------------------------- */
    .workshop {
      background-color: var(--neutral-50);
      position: relative;
      overflow: hidden;
    }

    .workshop-decor {
      position: absolute;
      top: -100px;
      right: -100px;
      width: 300px;
      height: 300px;
      border: 40px solid rgba(2, 132, 199, 0.03);
      border-radius: 50%;
      pointer-events: none;
    }

    .workshop-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .workshop-content h2 {
      font-size: 2.25rem;
      margin-bottom: 20px;
    }

    .workshop-content h3 {
      font-size: 1.75rem;
      margin-bottom: 16px;
    }

    .workshop-services {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 36px;
      margin-bottom: 40px;
    }

    @media (max-width: 480px) {
      .workshop-services {
        grid-template-columns: 1fr;
      }
    }

    .w-service-card {
      background-color: var(--white);
      border: 1px solid var(--neutral-100);
      border-radius: var(--radius-md);
      padding: 24px;
      box-shadow: var(--shadow-md);
      transition: var(--transition-normal);
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .w-service-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
      border-color: rgba(2, 132, 199, 0.1);
    }

    .w-service-header {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 600;
      color: var(--neutral-900);
    }

    .w-service-header i {
      color: var(--primary);
    }

    .w-service-price {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--primary);
      margin-top: auto;
    }

    .workshop-image-wrapper {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-xl);
    }

    @media (max-width: 992px) {
      .workshop-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .workshop-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
      }
    }

    /* --------------------------------------------------
       12. REVIEWS SECTION (Carousel)
       -------------------------------------------------- */
    .reviews-carousel-wrapper {
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      overflow: hidden;
      padding: 10px;
    }

    .reviews-carousel {
      display: flex;
      width: 100%;
      transition: transform var(--transition-slow);
      will-change: transform;
      cursor: grab;
    }

    .reviews-carousel:active {
      cursor: grabbing;
    }

    .review-slide {
      flex: 0 0 100%;
      width: 100%;
      padding: 20px;
    }

    .review-card {
      background-color: var(--white);
      border-radius: var(--radius-md);
      padding: 40px;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--neutral-100);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 24px;
      position: relative;
      width: 100%;
      max-width: 750px;
      margin: 0 auto;
    }

    .quote-icon {
      position: absolute;
      top: 30px;
      left: 30px;
      font-size: 4rem;
      color: var(--primary-light);
      opacity: 0.4;
      line-height: 1;
      font-family: serif;
      pointer-events: none;
    }

    .review-stars {
      color: #fbbf24; /* Amber 400 */
      display: flex;
      gap: 4px;
    }

    .review-text {
      font-size: 1.1rem;
      font-style: italic;
      color: var(--neutral-800);
      line-height: 1.6;
    }

    .review-user {
      display: flex;
      align-items: center;
      gap: 16px;
      text-align: left;
    }

    .review-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: var(--shadow-sm);
      border: 3px solid var(--primary-light);
    }

    .review-info h4 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 2px;
    }

    .review-info p {
      font-size: 0.85rem;
      color: var(--neutral-600);
    }

    /* Carousel Navigation */
    .carousel-nav {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 16px;
      margin-top: 30px;
    }

    .carousel-btn {
      background-color: var(--white);
      color: var(--neutral-800);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-md);
      cursor: pointer;
      border: 1px solid var(--neutral-100);
      transition: var(--transition-normal);
    }

    .carousel-btn:hover {
      background-color: var(--primary);
      color: var(--white);
      border-color: var(--primary);
    }

    .carousel-dots {
      display: flex;
      gap: 8px;
    }

    .carousel-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: var(--neutral-300);
      cursor: pointer;
      transition: var(--transition-normal);
    }

    .carousel-dot.active {
      background-color: var(--primary);
      width: 24px;
      border-radius: var(--radius-full);
      z-index: 2;
      pointer-events: none;
    }

    @media (max-width: 768px) {
      .reviews-carousel-wrapper {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        overflow: hidden;
        padding: 10px 0;
      }
      .review-slide {
        padding: 10px 20px;
      }
      .review-card {
        padding: 32px 20px;
        gap: 16px;
      }
      .quote-icon {
        top: 15px;
        left: 15px;
        font-size: 3rem;
      }
    }

    @media (max-width: 576px) {
      .review-card {
        padding: 30px 16px;
      }
      .review-text {
        font-size: 0.95rem;
      }
      .review-user {
        flex-direction: column;
        text-align: center;
      }
    }

    /* --------------------------------------------------
       13. BRANDS SECTION (Infinite Marquee)
       -------------------------------------------------- */
    .brands {
      padding: 60px 0;
      border-top: 1px solid var(--neutral-100);
      border-bottom: 1px solid var(--neutral-100);
      overflow: hidden;
      background-color: var(--white);
    }

    .brands-slider-container {
      display: flex;
      overflow: hidden;
      user-select: none;
      mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }

    .brands-track {
      display: flex;
      align-items: center;
      gap: 80px;
      animation: marquee 25s linear infinite;
      white-space: nowrap;
    }

    .brands-track:hover {
      animation-play-state: paused;
    }

    .brand-logo {
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0.4;
      transition: opacity var(--transition-fast), filter var(--transition-fast);
      filter: grayscale(1);
    }

    .brand-logo:hover {
      opacity: 0.95;
      filter: grayscale(0);
    }

    .brand-logo svg {
      height: 100%;
      width: auto;
    }

    @keyframes marquee {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(calc(-100% - 80px));
      }
    }

    /* --------------------------------------------------
       14. CONTACT SECTION
       -------------------------------------------------- */
    .contact {
      background-color: var(--neutral-50);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 60px;
    }

    .contact-info-wrapper {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .contact-card {
      background-color: var(--white);
      border-radius: var(--radius-md);
      padding: 32px;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--neutral-100);
    }

    .contact-card h3 {
      font-size: 1.5rem;
      margin-bottom: 24px;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .contact-detail-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .contact-detail-icon {
      background-color: var(--primary-light);
      color: var(--primary);
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-detail-text h4 {
      font-size: 0.9rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--neutral-800);
      margin-bottom: 4px;
    }

    .contact-detail-text p {
      font-size: 0.95rem;
      color: var(--neutral-600);
    }

    /* Map Placeholder */
    .map-placeholder {
      background-color: var(--white);
      border-radius: var(--radius-md);
      height: 240px;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--neutral-100);
      overflow: hidden;
      position: relative;
    }

    .map-canvas {
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, #eff6ff 20%, #e0f2fe 100%);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Decorative Streets for map aesthetic */
    .map-canvas .street {
      position: absolute;
      background-color: var(--white);
      box-shadow: 0 1px 2px rgba(0,0,0,0.02);
    }
    .map-canvas .street-h1 { width: 100%; height: 8px; top: 30%; }
    .map-canvas .street-h2 { width: 100%; height: 12px; top: 70%; }
    .map-canvas .street-v1 { height: 100%; width: 10px; left: 40%; }
    .map-canvas .street-v2 { height: 100%; width: 8px; left: 80%; }
    .map-canvas .park {
      position: absolute;
      background-color: #f0fdf4;
      border: 1px solid #dcfce7;
      border-radius: 12px;
    }
    .map-canvas .park-1 { width: 120px; height: 60px; top: 10px; left: 10px; }
    .map-canvas .park-2 { width: 90px; height: 50px; bottom: 10px; right: 10px; }

    .map-marker {
      position: relative;
      z-index: 10;
      color: var(--primary);
      display: flex;
      flex-direction: column;
      align-items: center;
      animation: pulse-marker 2s infinite;
    }

    .map-marker-icon {
      background-color: var(--primary);
      color: var(--white);
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(2, 132, 199, 0.4);
      border: 3px solid var(--white);
    }

    .map-marker-shadow {
      width: 12px;
      height: 4px;
      background-color: rgba(15, 23, 42, 0.2);
      border-radius: 50%;
      margin-top: 4px;
    }

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

    .map-overlay {
      position: absolute;
      inset: 0;
      background-color: rgba(15, 23, 42, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity var(--transition-normal);
      z-index: 20;
    }

    .map-placeholder:hover .map-overlay {
      opacity: 1;
    }

    /* Contact Form Styling */
    .contact-form-wrapper {
      background-color: var(--white);
      border-radius: var(--radius-md);
      padding: 40px;
      box-shadow: var(--shadow-xl);
      border: 1px solid var(--neutral-100);
      position: relative;
    }

    .contact-form h3 {
      font-size: 1.5rem;
      margin-bottom: 24px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 20px;
    }

    @media (max-width: 576px) {
      .form-grid {
        grid-template-columns: 1fr;
      }
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-group-full {
      grid-column: span 2;
    }

    @media (max-width: 576px) {
      .form-group-full {
        grid-column: span 1;
      }
    }

    .form-group label {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--neutral-800);
    }

    .form-group input, .form-group textarea {
      width: 100%;
      background-color: var(--neutral-50);
      border: 1px solid var(--neutral-200);
      border-radius: var(--radius-sm);
      padding: 14px 18px;
      font-size: 0.95rem;
      color: var(--neutral-900);
      transition: var(--transition-fast);
    }

    .form-group input:focus, .form-group textarea:focus {
      background-color: var(--white);
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1);
    }

    .contact-form-wrapper .btn {
      width: 100%;
      justify-content: center;
      margin-top: 10px;
    }

    /* Form Success Alert */
    .form-success-card {
      position: absolute;
      inset: 0;
      background-color: var(--white);
      border-radius: var(--radius-md);
      z-index: 50;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 40px;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition-normal);
    }

    .form-success-card.active {
      opacity: 1;
      visibility: visible;
    }

    .success-icon {
      background-color: #d1fae5;
      color: var(--success);
      width: 72px;
      height: 72px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      font-size: 2rem;
      animation: pop-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    @keyframes pop-in {
      0% { transform: scale(0.5); opacity: 0; }
      100% { transform: scale(1); opacity: 1; }
    }

    .form-success-card h3 {
      font-size: 1.75rem;
      margin-bottom: 12px;
      color: var(--neutral-900);
    }

    .form-success-card p {
      color: var(--neutral-600);
      max-width: 320px;
      margin-bottom: 24px;
    }

    @media (max-width: 992px) {
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    /* --------------------------------------------------
       15. FOOTER
       -------------------------------------------------- */
    footer {
      background-color: var(--neutral-900);
      color: #94a3b8; /* Slate 400 */
      padding: 80px 0 30px 0;
      border-top: 1px solid #334155;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 60px;
    }

    @media (max-width: 992px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 576px) {
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .footer-brand .logo {
      color: var(--white);
    }

    .footer-logo-icon {
      background-color: #334155;
      color: var(--accent);
    }

    .footer-brand p {
      font-size: 0.9rem;
      line-height: 1.6;
    }

    .footer-socials {
      display: flex;
      gap: 12px;
    }

    .social-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: #1e293b;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      transition: var(--transition-normal);
      border: 1px solid #334155;
    }

    .social-icon:hover {
      background-color: var(--primary);
      color: var(--white);
      transform: translateY(-3px);
      border-color: var(--primary);
    }

    .footer-col h3 {
      color: var(--white);
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 24px;
      position: relative;
    }

    .footer-col h3::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 30px;
      height: 2px;
      background-color: var(--accent);
      border-radius: var(--radius-full);
      z-index: 2;
      pointer-events: none;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-link {
      font-size: 0.9rem;
      transition: var(--transition-fast);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .footer-link:hover {
      color: var(--white);
      transform: translateX(4px);
    }

    .footer-info {
      display: flex;
      flex-direction: column;
      gap: 16px;
      font-size: 0.9rem;
    }

    .footer-info-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .footer-info-item i {
      color: var(--accent);
      flex-shrink: 0;
      margin-top: 3px;
    }

    .footer-bottom {
      border-top: 1px solid #334155;
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85rem;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-bottom-links {
      display: flex;
      gap: 20px;
    }

    .footer-bottom-links a:hover {
      color: var(--white);
    }

    @media (max-width: 576px) {
      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
      .footer-bottom-links {
        justify-content: center;
      }
    }

    .bike-card[href] {
      display: flex;
      flex-direction: column;
      height: 100%;
      color: inherit;
      text-decoration: none;
    }
