/* =========================
   MENU GLOBAL
   ========================= */
   
       :root {
      --bg-header: rgba(34,197,94,0.10);
      --bg-dropdown: rgba(34,197,94,0.10);
      --bg-hover: rgba(255,255,255,0.06);
      --line: rgba(255,255,255,0.08);
      --text-main: #f8fafc;
      --text-soft: #cbd5e1;
      --accent: #38bdf8;
      --shadow: 0 16px 34px rgba(0,0,0,0.35);
      --radius: 16px;
      --container: 1180px;
    }

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

    html, body {
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
      font-family: Arial, Helvetica, sans-serif;
      background: rgba(34,197,94,0.10);
      color: var(--text-main);
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 999;
      width: 100%;
      background: rgba(56,189,248,0.16);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
    }

    .nav-wrap {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 20px;
    }

    .nav-bar {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .nav-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 18px;
      font-weight: 700;
      color: #ffffff;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .nav-logo-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 18px rgba(56,189,248,0.65);
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 8px;
      list-style: none;
      margin-left: auto;
    }

    .nav-item {
      position: relative;
    }

    .nav-link,
    .nav-button {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 44px;
      padding: 10px 14px;
      border-radius: 12px;
      color: var(--text-soft);
      font-size: 14px;
      font-weight: 600;
      transition: 0.2s ease;
      background: transparent;
      border: none;
      cursor: pointer;
      white-space: nowrap;
    }

    .nav-link:hover,
    .nav-button:hover,
    .nav-item:hover > .nav-link,
    .nav-item:hover > .nav-button {
      color: #ffffff;
      background: var(--bg-hover);
    }

    .nav-link.active {
      color: #ffffff;
      background: rgba(56,189,248,0.10);
      border: 1px solid rgba(56,189,248,0.22);
    }

    .caret {
      font-size: 11px;
      transform: translateY(1px);
    }

    .dropdown {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      min-width: 250px;
      background: rgba(15, 23, 42, 0.98);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 10px;
      display: none;
    }

    .dropdown.right {
      right: 0;
      left: auto;
    }

    .nav-item:hover > .dropdown {
      display: block;
    }

    .dropdown a {
      display: block;
      padding: 11px 12px;
      border-radius: 12px;
      color: var(--text-soft);
      font-size: 14px;
      transition: 0.2s ease;
    }

    .dropdown a:hover {
      background: rgba(255,255,255,0.06);
      color: #ffffff;
    }

    .dropdown-title {
      padding: 8px 12px 10px;
      color: #ffffff;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      opacity: 0.9;
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 10px 16px;
      border-radius: 999px;
      background: linear-gradient(135deg, #38bdf8, #0ea5e9);
      color: #03131b;
      font-size: 14px;
      font-weight: 700;
      transition: 0.2s ease;
      margin-left: 8px;
      white-space: nowrap;
    }

    .nav-cta:hover {
      transform: translateY(-1px);
    }

    .menu-toggle {
      display: none;
      background: transparent;
      border: 1px solid rgba(255,255,255,0.10);
      color: #ffffff;
      border-radius: 12px;
      padding: 10px 12px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
    }

    .mobile-menu {
      display: none;
      border-top: 1px solid var(--line);
      padding: 14px 0 18px;
    }

    .mobile-menu details {
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .mobile-menu summary,
    .mobile-menu a {
      display: block;
      padding: 14px 4px;
      color: var(--text-soft);
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      list-style: none;
    }

    .mobile-menu summary::-webkit-details-marker {
      display: none;
    }

    .mobile-menu details[open] summary {
      color: #ffffff;
    }

    .mobile-submenu {
      padding: 0 0 10px 12px;
    }

    .mobile-submenu a {
      padding: 10px 4px;
      color: #cbd5e1;
      font-size: 14px;
      font-weight: 500;
    }

    .mobile-cta {
      margin-top: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 10px 16px;
      border-radius: 999px;
      background: linear-gradient(135deg, #38bdf8, #0ea5e9);
      color: #03131b;
      font-size: 14px;
      font-weight: 700;
    }

    #menu-toggle-checkbox {
      display: none;
    }

    @media (max-width: 980px) {
      .nav-menu,
      .nav-cta {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
      }

      #menu-toggle-checkbox:checked ~ .mobile-menu {
        display: block;
      }

      .nav-bar {
        min-height: 72px;
      }
    }
    .color-contact{
      color:#000000;
      font-weight: 700;
    }