        /* === NAVIGATION (Mobile-first) === */
        .top-nav {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        /* Mobile menu button */
        .mobile-menu-toggle {
            background: #f0f2f5;
            border: none;
            font-size: 28px;
            cursor: pointer;
            width: 48px;
            height: 48px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.2s;
        }

        .mobile-menu-toggle:active {
            background: #e0e4e9;
        }

        /* Navigation menu - hidden on mobile by default */
        .nav-menu {
            display: none;
            flex-direction: column;
            width: 100%;
            background: white;
            padding: 16px;
            gap: 12px;
            position: absolute;
            top: 75px;
            left: 0;
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
            border-radius: 0 0 24px 24px;
        }

        .nav-menu.active {
            display: flex;
        }

        /* Nav buttons styling */
        .nav-button {
            background: #f8fafc;
            border: none;
            padding: 12px;
            font-size: 1rem;
            font-weight: 500;
            border-radius: 50px;
            cursor: pointer;
            text-align: center;
            transition: 0.2s;
            width: 100%;
            font-family: inherit;
        }

        .nav-button a {
            text-decoration: none;
            color: #030202;
            display: block;
        }

        .nav-button:active {
            background: #e2e8f0;
            transform: scale(0.97);
        }
        /* ===== DROPDOWN MENU STYLES ===== */
        .dropdown {
            position: relative;
            width: 100%;
        }

        .dropdown-btn {
            background: #f8fafc;
            border: none;
            padding: 12px;
            font-size: 1rem;
            font-weight: 500;
            border-radius: 50px;
            cursor: pointer;
            text-align: center;
            width: 100%;
            font-family: inherit;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
        }

        .dropdown-btn span:first-child {
            flex: 1;
        }

        .arrow {
            font-size: 1.1rem;
            transition: transform 0.2s;
        }

        .dropdown.active .arrow {
            transform: rotate(180deg);
        }

        /* Dropdown menu items container */
        .dropdown-menu {
            display: none;
            flex-direction: column;
            gap: 8px;
            margin-top: 8px;
            padding-left: 16px;
        }

        .dropdown.active .dropdown-menu {
            display: flex;
        }

        .dropdown-item {
            background: #f1f5f9;
            border: none;
            padding: 10px 16px;
            font-size: 0.9rem;
            border-radius: 40px;
            cursor: pointer;
            text-align: left;
            font-family: inherit;
            transition: 0.2s;
        }

        .dropdown-item:active {
            background: #e2e8f0;
            transform: scale(0.98);
        }


        /* Desktop view: menu always visible horizontally */
        @media (min-width: 768px) {
            .mobile-menu-toggle {
                display: none;
            }

            .nav-menu {
                display: flex !important;
                flex-direction: row;
                position: static;
                width: auto;
                background: transparent;
                box-shadow: none;
                padding: 0;
                gap: 8px;
            }

            .nav-button {
                width: auto;
                background: transparent;
                padding: 8px 18px;
            }

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

    .nav-button {
      padding: 10px 18px;
      font-size: 14px;
      font-weight: 600;
      color: #374151;
      background: transparent;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .nav-button::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
      transform: translateX(-50%);
      transition: width 0.3s ease;
    }

    .nav-button:hover {
      color: #f59f0b00;
      background: rgba(245, 159, 11, 0);
    }

    .nav-button:hover::before {
      width: 70%;
    }

    .nav-button.active {
      color: #ffffff;
      background: linear-gradient(135deg, #f59f0b00 0%, #d9770600 100%);
      box-shadow: 0 2px 8px rgba(245, 159, 11, 0);
    }

    .nav-button.active::before {
      display: none;
    }
    /* Desktop dropdown */
            .dropdown {
                position: relative;
                width: auto;
            }

            .dropdown-btn {
                width: auto;
                background: transparent;
                padding: 8px 18px;
                gap: 6px;
            }

            .dropdown-menu {
                position: absolute;
                top: 45px;
                left: 0;
                background:  rgb(255, 244, 221);
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
                border-radius: 16px;
                padding: 8px;
                min-width: 180px;
                margin-top: 0;
                z-index: 200;
            }

            .dropdown-item {
                background: transparent;
                padding: 10px 16px;
            }

            .dropdown-item:hover {
                background: #f8e0c1;
            }
        }
