/* ============================================
       PAYKAR WOW EDITION - GREEN & WHITE THEME
       GSAP Parallax + Interactive Map
       ============================================ */

    :root {
      /* Green & White Palette */
      --primary: #00A651;
      --primary-light: #00D26A;
      --primary-dark: #007D3D;
      --accent: #FFD700;
      --white: #FFFFFF;
      --off-white: #F8FFF8;
      --dark: #0D1F12;
      --darker: #061209;
      --glass: rgba(255, 255, 255, 0.08);
      --glass-border: rgba(255, 255, 255, 0.15);

      /* Typography */
      --font-display: 'Unbounded', sans-serif;
      --font-body: 'Manrope', sans-serif;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      background: var(--darker);
      color: var(--white);
      overflow-x: hidden;
      cursor: default;
    }

    body.menu-open {
      overflow: hidden;
    }

    /* Custom Cursor */
    .cursor {
      width: 20px;
      height: 20px;
      border: 2px solid var(--primary);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 99999;
      transition: transform 0.15s ease, background 0.15s ease;
      mix-blend-mode: difference;
    }

    .cursor.hover {
      transform: scale(2);
      background: var(--primary);
    }

    .cursor-dot {
      width: 6px;
      height: 6px;
      background: var(--primary);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 99999;
    }

    /* Preloader */
    .preloader {
      position: fixed;
      inset: 0;
      background: var(--darker);
      z-index: 100000;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 30px;
    }

    .preloader-logo {
      font-family: var(--font-display);
      font-size: clamp(3rem, 10vw, 6rem);
      font-weight: 900;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -2px;
    }

    .preloader-bar {
      width: 300px;
      height: 4px;
      background: rgba(255,255,255,0.1);
      border-radius: 4px;
      overflow: hidden;
    }

    .preloader-progress {
      height: 100%;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      width: 0%;
      border-radius: 4px;
    }

    /* Navigation */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 25px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav.scrolled {
      background: rgba(6, 18, 9, 0.9);
      backdrop-filter: blur(20px);
      padding: 15px 5%;
    }

    .nav-logo {
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--white);
      text-decoration: none;
      letter-spacing: -1px;
    }

    .nav-logo span {
      color: var(--primary);
    }

    .nav-links {
      display: flex;
      gap: 50px;
      list-style: none;
    }

    .nav-links a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      letter-spacing: 0.5px;
      position: relative;
      transition: color 0.3s ease;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width 0.3s ease;
    }

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

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-toggle {
      display: none;
      width: 52px;
      height: 52px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 6px;
      padding: 0;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(20px);
      cursor: pointer;
      transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    }

    .nav-toggle span {
      width: 22px;
      height: 2px;
      border-radius: 999px;
      background: var(--white);
      transition: transform 0.3s ease, opacity 0.3s ease;
      transform-origin: center;
    }

    .nav.nav-open .nav-toggle {
      background: rgba(0, 166, 81, 0.12);
      border-color: rgba(0, 166, 81, 0.35);
    }

    .nav.nav-open .nav-toggle span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .nav.nav-open .nav-toggle span:nth-child(2) {
      opacity: 0;
    }

    .nav.nav-open .nav-toggle span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
